diff --git a/README (2).md b/README (2).md
new file mode 100644
index 0000000..170c47c
--- /dev/null
+++ b/README (2).md
@@ -0,0 +1,64 @@
+# Análise de dados de dengue 2001 á 2019 📊🔬🦟
+
+## O que vamos analisar 👩🏿⚕️?
+Este projeto se concentra na análise dos dados de casos de dengue no Brasil do ano 2001 ao ano de 2019.
+
+## objetivos específicos ✍🏽
+- Analisar por anos a situação da doença nas regiões brasileiras.
+
+- Analisar situação das regiões em relação ao acesso a água,
+com maior abundancia ou escassez, e se tem haver com os casos da dengue
+
+- Analisar diferentes biomas e sua interferência no número de casos de dengue.
+
+- Analisar se a população urbana tem ligação direta com os aumento dos casos.
+
+## o que estamos procurando 📌 ?
+Uma organização quer fazer uma análise exploratória, para descobrir como foi o crescimento da doença da Dengue no Brasil e para divulgação em mídias de comunicação nacional
+
+## Descrição das colunas ultizadas:
+
+municipio = Nome da cidade;
+
+estado = Estado;
+
+regiao = Região;
+
+bioma = Bioma;
+
+clima_principal = Principal regime climático prevalente no município;
+
+mes = Mês civil, 1 = janeiro a 12 = dezembro;
+
+ano = Ano 2001 - 2019;
+
+indice_mes = começando em 1 para janeiro de 2001 indo até 240 em dezembro 2019;
+
+casos_dengue = Casos de dengue notificados registrados no sistema de agravos de notificação compulsória do Brasil (SINAN)
+no município, no mês dos primeiros sintomas;
+
+populacao = População estimada, com base em projeções calculadas usando os Censos de 2001 e 2010,
+e contagens realizadas em 2007 e 2017;
+
+densidade_polulacao = Densidade populacional/área_km²;
+
+populacao_urbana = População urbana porcentagem de habitantes vivendo em áreas urbanas de acordo com o censo de 2010;
+
+acesso_agua = Acesso à rede de água, porcentagem de habitantes com acesso à rede de água encanada de acordo com o censo de 2010;
+
+escassez_agua = Escassez de água, frequência de escassez de água relatada por município entre 2000 e 2016;
+
+## ferramentas utilizadas ✂️
+
+vs code - jupiter
+
+python - pandas
+
+Kaggle - csv base (https://www.kaggle.com/datasets/raomuhammadsaeedali/brazil-dengue-dataset-2000-2019)
+
+python - mathplotlib
+
+Tableau - (https://public.tableau.com/app/profile/karina.silva2401/viz/trabalhofinalKarinaeSoraia/Painel4#1)
+
+pdf (apresentação da análise) - [Baixar o PDF](https://github.com/Karina1510/projeto-final-reprograma-Analise-de-dados-/blob/main/trabalho%20analise%20de%20dados%20(1).pdf)
+
diff --git a/material/analise-exploratoria/analise.ipynb b/material/analise-exploratoria/analise.ipynb
deleted file mode 100644
index 1cce302..0000000
--- a/material/analise-exploratoria/analise.ipynb
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "#Utilizar as bibliotecas de Python aprendidas em aula (pandas, matplotlib, seaborn, etc);\n",
- "#Trazer um notebook estruturado e organizado com o uso de Markdown. O uso de textos no notebook é altamente incentivado);\n",
- "#Mínimo de 3 visualizações que ajudem a sumarizar os resultados da sua análise."
- ]
- }
- ],
- "metadata": {
- "language_info": {
- "name": "python"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}
diff --git a/material/base com a analise exploratoria e csv tratado/ProjetoFinalKArinaSoraia.ipynb b/material/base com a analise exploratoria e csv tratado/ProjetoFinalKArinaSoraia.ipynb
new file mode 100644
index 0000000..b3f88f1
--- /dev/null
+++ b/material/base com a analise exploratoria e csv tratado/ProjetoFinalKArinaSoraia.ipynb
@@ -0,0 +1,3417 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Esse trabalho tem como objetivo a análise de casos de dengue no período de 2000 à 2019.\n",
+ "Iremos analisar situação da doença nas regiões brasileiras ao longo do período citado, se em diferentes biomas há um aumento do número de casos e se existe alguma relação do aumento de casos com acesso a agua ou escassez.\n",
+ "\n",
+ "Ultilizamos uma base do kaggle ((https://www.kaggle.com/datasets/raomuhammadsaeedali/brazil-dengue-dataset-2000-2019))\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Importar as ferramentas que iremos ultilizar para a análise."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pandas as pd\n",
+ "import matplotlib.pyplot as plt"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Ler o arquivo csv que será usado como nossa base de dados"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " micro_code \n",
+ " micro_name \n",
+ " micro_name_ibge \n",
+ " meso_code \n",
+ " meso_name \n",
+ " state_code \n",
+ " state_name \n",
+ " region_code \n",
+ " region_name \n",
+ " biome_code \n",
+ " ... \n",
+ " time \n",
+ " dengue_cases \n",
+ " population \n",
+ " pop_density \n",
+ " tmax \n",
+ " tmin \n",
+ " pdsi \n",
+ " urban \n",
+ " water_network \n",
+ " water_shortage \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 11001 \n",
+ " Porto Velho \n",
+ " PORTO VELHO \n",
+ " 1101 \n",
+ " Madeira-Guaporé \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.544556 \n",
+ " 21.751202 \n",
+ " -1.790602 \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 11002 \n",
+ " Guajar<e1>-Mirim \n",
+ " GUAJARÁ-MIRIM \n",
+ " 1101 \n",
+ " Madeira-Guaporé \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 31.005884 \n",
+ " 21.641306 \n",
+ " 0.629408 \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 11003 \n",
+ " Ariquemes \n",
+ " ARIQUEMES \n",
+ " 1102 \n",
+ " Leste Rondoniense \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.444357 \n",
+ " 21.492065 \n",
+ " -3.455422 \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 11004 \n",
+ " Ji-Paran<e1> \n",
+ " JI-PARANÁ \n",
+ " 1102 \n",
+ " Leste Rondoniense \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.458706 \n",
+ " 21.111828 \n",
+ " -1.586286 \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 11005 \n",
+ " Alvorada D'Oeste \n",
+ " ALVORADA D'OESTE \n",
+ " 1102 \n",
+ " Leste Rondoniense \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.616793 \n",
+ " 21.053421 \n",
+ " -0.043228 \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 133915 \n",
+ " 52015 \n",
+ " Meia Ponte \n",
+ " MEIA PONTE \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 31.148733 \n",
+ " 21.699646 \n",
+ " -2.526940 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 133916 \n",
+ " 52016 \n",
+ " Pires do Rio \n",
+ " PIRES DO RIO \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 29.929796 \n",
+ " 20.871635 \n",
+ " -1.855514 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 133917 \n",
+ " 52017 \n",
+ " Catal<e3>o \n",
+ " CATALÃO \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 30.154041 \n",
+ " 20.992001 \n",
+ " -2.663716 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 133918 \n",
+ " 52018 \n",
+ " Quirin<f3>polis \n",
+ " QUIRINÓPOLIS \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 32.152596 \n",
+ " 22.195051 \n",
+ " -3.365225 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 133919 \n",
+ " 53001 \n",
+ " Bras<ed>lia \n",
+ " BRASÍLIA \n",
+ " 5301 \n",
+ " Distrito Federal \n",
+ " 53 \n",
+ " Distrito Federal \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 28.822147 \n",
+ " 19.971571 \n",
+ " -1.842697 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
133920 rows × 26 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " micro_code micro_name micro_name_ibge meso_code \\\n",
+ "0 11001 Porto Velho PORTO VELHO 1101 \n",
+ "1 11002 Guajar-Mirim GUAJARÁ-MIRIM 1101 \n",
+ "2 11003 Ariquemes ARIQUEMES 1102 \n",
+ "3 11004 Ji-Paran JI-PARANÁ 1102 \n",
+ "4 11005 Alvorada D'Oeste ALVORADA D'OESTE 1102 \n",
+ "... ... ... ... ... \n",
+ "133915 52015 Meia Ponte MEIA PONTE 5205 \n",
+ "133916 52016 Pires do Rio PIRES DO RIO 5205 \n",
+ "133917 52017 Catalo CATALÃO 5205 \n",
+ "133918 52018 Quirinpolis QUIRINÓPOLIS 5205 \n",
+ "133919 53001 Braslia BRASÍLIA 5301 \n",
+ "\n",
+ " meso_name state_code state_name region_code \\\n",
+ "0 Madeira-Guaporé 11 Rondônia 1 \n",
+ "1 Madeira-Guaporé 11 Rondônia 1 \n",
+ "2 Leste Rondoniense 11 Rondônia 1 \n",
+ "3 Leste Rondoniense 11 Rondônia 1 \n",
+ "4 Leste Rondoniense 11 Rondônia 1 \n",
+ "... ... ... ... ... \n",
+ "133915 Sul Goiano 52 Goiás 5 \n",
+ "133916 Sul Goiano 52 Goiás 5 \n",
+ "133917 Sul Goiano 52 Goiás 5 \n",
+ "133918 Sul Goiano 52 Goiás 5 \n",
+ "133919 Distrito Federal 53 Distrito Federal 5 \n",
+ "\n",
+ " region_name biome_code ... time dengue_cases population \\\n",
+ "0 North 5 ... 1 NaN NaN \n",
+ "1 North 5 ... 1 NaN NaN \n",
+ "2 North 5 ... 1 NaN NaN \n",
+ "3 North 5 ... 1 NaN NaN \n",
+ "4 North 5 ... 1 NaN NaN \n",
+ "... ... ... ... ... ... ... \n",
+ "133915 Centre-West 2 ... 240 111.0 409691.0 \n",
+ "133916 Centre-West 2 ... 240 42.0 100780.0 \n",
+ "133917 Centre-West 2 ... 240 57.0 176527.0 \n",
+ "133918 Centre-West 2 ... 240 41.0 128463.0 \n",
+ "133919 Centre-West 2 ... 240 576.0 3015268.0 \n",
+ "\n",
+ " pop_density tmax tmin pdsi urban water_network \\\n",
+ "0 NaN 30.544556 21.751202 -1.790602 85.20 33.57 \n",
+ "1 NaN 31.005884 21.641306 0.629408 72.31 27.43 \n",
+ "2 NaN 30.444357 21.492065 -3.455422 66.91 27.76 \n",
+ "3 NaN 30.458706 21.111828 -1.586286 68.68 32.23 \n",
+ "4 NaN 30.616793 21.053421 -0.043228 42.82 21.40 \n",
+ "... ... ... ... ... ... ... \n",
+ "133915 19.397264 31.148733 21.699646 -2.526940 89.69 79.10 \n",
+ "133916 10.579541 29.929796 20.871635 -1.855514 72.80 71.34 \n",
+ "133917 11.591627 30.154041 20.992001 -2.663716 89.47 88.74 \n",
+ "133918 7.991280 32.152596 22.195051 -3.365225 85.36 77.39 \n",
+ "133919 521.289159 28.822147 19.971571 -1.842697 96.77 94.82 \n",
+ "\n",
+ " water_shortage \n",
+ "0 0.2245 \n",
+ "1 0.0873 \n",
+ "2 0.1871 \n",
+ "3 0.2381 \n",
+ "4 0.2837 \n",
+ "... ... \n",
+ "133915 0.4656 \n",
+ "133916 0.2444 \n",
+ "133917 0.6508 \n",
+ "133918 0.4802 \n",
+ "133919 0.8730 \n",
+ "\n",
+ "[133920 rows x 26 columns]"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_inicial = pd.read_csv(\"data_2000_2019.csv\")\n",
+ "df_inicial"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Visão geral"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Ver como estão os nomes de todas as colunas."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Index(['micro_code', 'micro_name', 'micro_name_ibge', 'meso_code', 'meso_name',\n",
+ " 'state_code', 'state_name', 'region_code', 'region_name', 'biome_code',\n",
+ " 'biome_name', 'ecozone_code', 'ecozone_name', 'main_climate', 'month',\n",
+ " 'year', 'time', 'dengue_cases', 'population', 'pop_density', 'tmax',\n",
+ " 'tmin', 'pdsi', 'urban', 'water_network', 'water_shortage'],\n",
+ " dtype='object')"
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_inicial.columns"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Ver o tipo de cada dado das colunas e alterar de necessário."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "RangeIndex: 133920 entries, 0 to 133919\n",
+ "Data columns (total 26 columns):\n",
+ " # Column Non-Null Count Dtype \n",
+ "--- ------ -------------- ----- \n",
+ " 0 micro_code 133920 non-null int64 \n",
+ " 1 micro_name 133920 non-null object \n",
+ " 2 micro_name_ibge 133920 non-null object \n",
+ " 3 meso_code 133920 non-null int64 \n",
+ " 4 meso_name 133920 non-null object \n",
+ " 5 state_code 133920 non-null int64 \n",
+ " 6 state_name 133920 non-null object \n",
+ " 7 region_code 133920 non-null int64 \n",
+ " 8 region_name 133920 non-null object \n",
+ " 9 biome_code 133920 non-null int64 \n",
+ " 10 biome_name 133920 non-null object \n",
+ " 11 ecozone_code 133920 non-null int64 \n",
+ " 12 ecozone_name 133920 non-null object \n",
+ " 13 main_climate 133920 non-null object \n",
+ " 14 month 133920 non-null int64 \n",
+ " 15 year 133920 non-null int64 \n",
+ " 16 time 133920 non-null int64 \n",
+ " 17 dengue_cases 127224 non-null float64\n",
+ " 18 population 127224 non-null float64\n",
+ " 19 pop_density 127224 non-null float64\n",
+ " 20 tmax 133920 non-null float64\n",
+ " 21 tmin 133920 non-null float64\n",
+ " 22 pdsi 133680 non-null float64\n",
+ " 23 urban 133920 non-null float64\n",
+ " 24 water_network 133920 non-null float64\n",
+ " 25 water_shortage 133920 non-null float64\n",
+ "dtypes: float64(9), int64(9), object(8)\n",
+ "memory usage: 26.6+ MB\n"
+ ]
+ }
+ ],
+ "source": [
+ "df_inicial.info()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Fazer um describe dos dados."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " micro_code \n",
+ " meso_code \n",
+ " state_code \n",
+ " region_code \n",
+ " biome_code \n",
+ " ecozone_code \n",
+ " month \n",
+ " year \n",
+ " time \n",
+ " dengue_cases \n",
+ " population \n",
+ " pop_density \n",
+ " tmax \n",
+ " tmin \n",
+ " pdsi \n",
+ " urban \n",
+ " water_network \n",
+ " water_shortage \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.00000 \n",
+ " 127224.000000 \n",
+ " 1.272240e+05 \n",
+ " 127224.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133680.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " 133920.000000 \n",
+ " \n",
+ " \n",
+ " mean \n",
+ " 31319.586022 \n",
+ " 3134.462366 \n",
+ " 31.302867 \n",
+ " 2.788530 \n",
+ " 3.935484 \n",
+ " 4.433692 \n",
+ " 6.500000 \n",
+ " 2009.500000 \n",
+ " 120.50000 \n",
+ " 101.358965 \n",
+ " 3.451623e+05 \n",
+ " 102.588820 \n",
+ " 29.417284 \n",
+ " 18.980845 \n",
+ " -0.459147 \n",
+ " 72.098190 \n",
+ " 72.286989 \n",
+ " 0.357296 \n",
+ " \n",
+ " \n",
+ " std \n",
+ " 10387.378413 \n",
+ " 1038.974785 \n",
+ " 10.385255 \n",
+ " 1.136753 \n",
+ " 2.134247 \n",
+ " 2.673739 \n",
+ " 3.452065 \n",
+ " 5.766303 \n",
+ " 69.28169 \n",
+ " 971.192888 \n",
+ " 8.878110e+05 \n",
+ " 365.514023 \n",
+ " 3.461089 \n",
+ " 3.644395 \n",
+ " 1.907180 \n",
+ " 16.630274 \n",
+ " 17.021309 \n",
+ " 0.240645 \n",
+ " \n",
+ " \n",
+ " min \n",
+ " 11001.000000 \n",
+ " 1101.000000 \n",
+ " 11.000000 \n",
+ " 1.000000 \n",
+ " 1.000000 \n",
+ " 1.000000 \n",
+ " 1.000000 \n",
+ " 2000.000000 \n",
+ " 1.00000 \n",
+ " 0.000000 \n",
+ " 2.096000e+03 \n",
+ " 0.227461 \n",
+ " 14.425291 \n",
+ " 4.615391 \n",
+ " -7.634145 \n",
+ " 22.300000 \n",
+ " 16.680000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 25% \n",
+ " 24007.000000 \n",
+ " 2401.000000 \n",
+ " 24.000000 \n",
+ " 2.000000 \n",
+ " 2.000000 \n",
+ " 2.000000 \n",
+ " 3.750000 \n",
+ " 2004.750000 \n",
+ " 60.75000 \n",
+ " 0.000000 \n",
+ " 1.013560e+05 \n",
+ " 12.397913 \n",
+ " 27.555401 \n",
+ " 16.923784 \n",
+ " -1.750176 \n",
+ " 58.390000 \n",
+ " 62.680000 \n",
+ " 0.160100 \n",
+ " \n",
+ " \n",
+ " 50% \n",
+ " 31027.500000 \n",
+ " 3107.000000 \n",
+ " 31.000000 \n",
+ " 3.000000 \n",
+ " 5.000000 \n",
+ " 5.000000 \n",
+ " 6.500000 \n",
+ " 2009.500000 \n",
+ " 120.50000 \n",
+ " 4.000000 \n",
+ " 1.737065e+05 \n",
+ " 31.785652 \n",
+ " 30.162950 \n",
+ " 19.892204 \n",
+ " -0.566704 \n",
+ " 72.750000 \n",
+ " 74.875000 \n",
+ " 0.325850 \n",
+ " \n",
+ " \n",
+ " 75% \n",
+ " 41007.000000 \n",
+ " 4103.000000 \n",
+ " 41.000000 \n",
+ " 4.000000 \n",
+ " 6.000000 \n",
+ " 7.000000 \n",
+ " 9.250000 \n",
+ " 2014.250000 \n",
+ " 180.25000 \n",
+ " 29.000000 \n",
+ " 3.046640e+05 \n",
+ " 63.268632 \n",
+ " 31.774971 \n",
+ " 21.770352 \n",
+ " 0.717594 \n",
+ " 86.680000 \n",
+ " 85.700000 \n",
+ " 0.531700 \n",
+ " \n",
+ " \n",
+ " max \n",
+ " 53001.000000 \n",
+ " 5301.000000 \n",
+ " 53.000000 \n",
+ " 5.000000 \n",
+ " 6.000000 \n",
+ " 8.000000 \n",
+ " 12.000000 \n",
+ " 2019.000000 \n",
+ " 240.00000 \n",
+ " 88821.000000 \n",
+ " 1.504189e+07 \n",
+ " 6374.149599 \n",
+ " 37.885544 \n",
+ " 25.765200 \n",
+ " 7.479940 \n",
+ " 100.000000 \n",
+ " 98.810000 \n",
+ " 1.000000 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " micro_code meso_code state_code region_code \\\n",
+ "count 133920.000000 133920.000000 133920.000000 133920.000000 \n",
+ "mean 31319.586022 3134.462366 31.302867 2.788530 \n",
+ "std 10387.378413 1038.974785 10.385255 1.136753 \n",
+ "min 11001.000000 1101.000000 11.000000 1.000000 \n",
+ "25% 24007.000000 2401.000000 24.000000 2.000000 \n",
+ "50% 31027.500000 3107.000000 31.000000 3.000000 \n",
+ "75% 41007.000000 4103.000000 41.000000 4.000000 \n",
+ "max 53001.000000 5301.000000 53.000000 5.000000 \n",
+ "\n",
+ " biome_code ecozone_code month year \\\n",
+ "count 133920.000000 133920.000000 133920.000000 133920.000000 \n",
+ "mean 3.935484 4.433692 6.500000 2009.500000 \n",
+ "std 2.134247 2.673739 3.452065 5.766303 \n",
+ "min 1.000000 1.000000 1.000000 2000.000000 \n",
+ "25% 2.000000 2.000000 3.750000 2004.750000 \n",
+ "50% 5.000000 5.000000 6.500000 2009.500000 \n",
+ "75% 6.000000 7.000000 9.250000 2014.250000 \n",
+ "max 6.000000 8.000000 12.000000 2019.000000 \n",
+ "\n",
+ " time dengue_cases population pop_density \\\n",
+ "count 133920.00000 127224.000000 1.272240e+05 127224.000000 \n",
+ "mean 120.50000 101.358965 3.451623e+05 102.588820 \n",
+ "std 69.28169 971.192888 8.878110e+05 365.514023 \n",
+ "min 1.00000 0.000000 2.096000e+03 0.227461 \n",
+ "25% 60.75000 0.000000 1.013560e+05 12.397913 \n",
+ "50% 120.50000 4.000000 1.737065e+05 31.785652 \n",
+ "75% 180.25000 29.000000 3.046640e+05 63.268632 \n",
+ "max 240.00000 88821.000000 1.504189e+07 6374.149599 \n",
+ "\n",
+ " tmax tmin pdsi urban \\\n",
+ "count 133920.000000 133920.000000 133680.000000 133920.000000 \n",
+ "mean 29.417284 18.980845 -0.459147 72.098190 \n",
+ "std 3.461089 3.644395 1.907180 16.630274 \n",
+ "min 14.425291 4.615391 -7.634145 22.300000 \n",
+ "25% 27.555401 16.923784 -1.750176 58.390000 \n",
+ "50% 30.162950 19.892204 -0.566704 72.750000 \n",
+ "75% 31.774971 21.770352 0.717594 86.680000 \n",
+ "max 37.885544 25.765200 7.479940 100.000000 \n",
+ "\n",
+ " water_network water_shortage \n",
+ "count 133920.000000 133920.000000 \n",
+ "mean 72.286989 0.357296 \n",
+ "std 17.021309 0.240645 \n",
+ "min 16.680000 0.000000 \n",
+ "25% 62.680000 0.160100 \n",
+ "50% 74.875000 0.325850 \n",
+ "75% 85.700000 0.531700 \n",
+ "max 98.810000 1.000000 "
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_inicial.describe()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Cópia"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Fazer um cópia para que não seja alterado o banco base."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " micro_code \n",
+ " micro_name \n",
+ " micro_name_ibge \n",
+ " meso_code \n",
+ " meso_name \n",
+ " state_code \n",
+ " state_name \n",
+ " region_code \n",
+ " region_name \n",
+ " biome_code \n",
+ " ... \n",
+ " time \n",
+ " dengue_cases \n",
+ " population \n",
+ " pop_density \n",
+ " tmax \n",
+ " tmin \n",
+ " pdsi \n",
+ " urban \n",
+ " water_network \n",
+ " water_shortage \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 11001 \n",
+ " Porto Velho \n",
+ " PORTO VELHO \n",
+ " 1101 \n",
+ " Madeira-Guaporé \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.544556 \n",
+ " 21.751202 \n",
+ " -1.790602 \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 11002 \n",
+ " Guajar<e1>-Mirim \n",
+ " GUAJARÁ-MIRIM \n",
+ " 1101 \n",
+ " Madeira-Guaporé \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 31.005884 \n",
+ " 21.641306 \n",
+ " 0.629408 \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 11003 \n",
+ " Ariquemes \n",
+ " ARIQUEMES \n",
+ " 1102 \n",
+ " Leste Rondoniense \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.444357 \n",
+ " 21.492065 \n",
+ " -3.455422 \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " 11004 \n",
+ " Ji-Paran<e1> \n",
+ " JI-PARANÁ \n",
+ " 1102 \n",
+ " Leste Rondoniense \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.458706 \n",
+ " 21.111828 \n",
+ " -1.586286 \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " 11005 \n",
+ " Alvorada D'Oeste \n",
+ " ALVORADA D'OESTE \n",
+ " 1102 \n",
+ " Leste Rondoniense \n",
+ " 11 \n",
+ " Rondônia \n",
+ " 1 \n",
+ " North \n",
+ " 5 \n",
+ " ... \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 30.616793 \n",
+ " 21.053421 \n",
+ " -0.043228 \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 133915 \n",
+ " 52015 \n",
+ " Meia Ponte \n",
+ " MEIA PONTE \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 31.148733 \n",
+ " 21.699646 \n",
+ " -2.526940 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 133916 \n",
+ " 52016 \n",
+ " Pires do Rio \n",
+ " PIRES DO RIO \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 29.929796 \n",
+ " 20.871635 \n",
+ " -1.855514 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 133917 \n",
+ " 52017 \n",
+ " Catal<e3>o \n",
+ " CATALÃO \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 30.154041 \n",
+ " 20.992001 \n",
+ " -2.663716 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 133918 \n",
+ " 52018 \n",
+ " Quirin<f3>polis \n",
+ " QUIRINÓPOLIS \n",
+ " 5205 \n",
+ " Sul Goiano \n",
+ " 52 \n",
+ " Goiás \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 32.152596 \n",
+ " 22.195051 \n",
+ " -3.365225 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 133919 \n",
+ " 53001 \n",
+ " Bras<ed>lia \n",
+ " BRASÍLIA \n",
+ " 5301 \n",
+ " Distrito Federal \n",
+ " 53 \n",
+ " Distrito Federal \n",
+ " 5 \n",
+ " Centre-West \n",
+ " 2 \n",
+ " ... \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 28.822147 \n",
+ " 19.971571 \n",
+ " -1.842697 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
133920 rows × 26 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " micro_code micro_name micro_name_ibge meso_code \\\n",
+ "0 11001 Porto Velho PORTO VELHO 1101 \n",
+ "1 11002 Guajar-Mirim GUAJARÁ-MIRIM 1101 \n",
+ "2 11003 Ariquemes ARIQUEMES 1102 \n",
+ "3 11004 Ji-Paran JI-PARANÁ 1102 \n",
+ "4 11005 Alvorada D'Oeste ALVORADA D'OESTE 1102 \n",
+ "... ... ... ... ... \n",
+ "133915 52015 Meia Ponte MEIA PONTE 5205 \n",
+ "133916 52016 Pires do Rio PIRES DO RIO 5205 \n",
+ "133917 52017 Catalo CATALÃO 5205 \n",
+ "133918 52018 Quirinpolis QUIRINÓPOLIS 5205 \n",
+ "133919 53001 Braslia BRASÍLIA 5301 \n",
+ "\n",
+ " meso_name state_code state_name region_code \\\n",
+ "0 Madeira-Guaporé 11 Rondônia 1 \n",
+ "1 Madeira-Guaporé 11 Rondônia 1 \n",
+ "2 Leste Rondoniense 11 Rondônia 1 \n",
+ "3 Leste Rondoniense 11 Rondônia 1 \n",
+ "4 Leste Rondoniense 11 Rondônia 1 \n",
+ "... ... ... ... ... \n",
+ "133915 Sul Goiano 52 Goiás 5 \n",
+ "133916 Sul Goiano 52 Goiás 5 \n",
+ "133917 Sul Goiano 52 Goiás 5 \n",
+ "133918 Sul Goiano 52 Goiás 5 \n",
+ "133919 Distrito Federal 53 Distrito Federal 5 \n",
+ "\n",
+ " region_name biome_code ... time dengue_cases population \\\n",
+ "0 North 5 ... 1 NaN NaN \n",
+ "1 North 5 ... 1 NaN NaN \n",
+ "2 North 5 ... 1 NaN NaN \n",
+ "3 North 5 ... 1 NaN NaN \n",
+ "4 North 5 ... 1 NaN NaN \n",
+ "... ... ... ... ... ... ... \n",
+ "133915 Centre-West 2 ... 240 111.0 409691.0 \n",
+ "133916 Centre-West 2 ... 240 42.0 100780.0 \n",
+ "133917 Centre-West 2 ... 240 57.0 176527.0 \n",
+ "133918 Centre-West 2 ... 240 41.0 128463.0 \n",
+ "133919 Centre-West 2 ... 240 576.0 3015268.0 \n",
+ "\n",
+ " pop_density tmax tmin pdsi urban water_network \\\n",
+ "0 NaN 30.544556 21.751202 -1.790602 85.20 33.57 \n",
+ "1 NaN 31.005884 21.641306 0.629408 72.31 27.43 \n",
+ "2 NaN 30.444357 21.492065 -3.455422 66.91 27.76 \n",
+ "3 NaN 30.458706 21.111828 -1.586286 68.68 32.23 \n",
+ "4 NaN 30.616793 21.053421 -0.043228 42.82 21.40 \n",
+ "... ... ... ... ... ... ... \n",
+ "133915 19.397264 31.148733 21.699646 -2.526940 89.69 79.10 \n",
+ "133916 10.579541 29.929796 20.871635 -1.855514 72.80 71.34 \n",
+ "133917 11.591627 30.154041 20.992001 -2.663716 89.47 88.74 \n",
+ "133918 7.991280 32.152596 22.195051 -3.365225 85.36 77.39 \n",
+ "133919 521.289159 28.822147 19.971571 -1.842697 96.77 94.82 \n",
+ "\n",
+ " water_shortage \n",
+ "0 0.2245 \n",
+ "1 0.0873 \n",
+ "2 0.1871 \n",
+ "3 0.2381 \n",
+ "4 0.2837 \n",
+ "... ... \n",
+ "133915 0.4656 \n",
+ "133916 0.2444 \n",
+ "133917 0.6508 \n",
+ "133918 0.4802 \n",
+ "133919 0.8730 \n",
+ "\n",
+ "[133920 rows x 26 columns]"
+ ]
+ },
+ "execution_count": 9,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_copia = df_inicial.copy()\n",
+ "df_copia"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Excluir colunas"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Excluindo colunas com código dos nomes da microrregião, mesoregião, estado, região, bioma e ecozone porque não vamos precisar ligar esse banco com nenhum outro para a análise.\n",
+ "Foi excluído também a coluna micro_name por ser uma repetição do nome do município já presente em outra coluna, ecozone_name por serem detalhes que não iremos utilizar na análise, sendo a coluna biomas já suficiente para tal, tmax e tmin por não serem ultilizadas na análise, meso_name pelo mesmo motivo."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " micro_name_ibge \n",
+ " state_name \n",
+ " region_name \n",
+ " biome_name \n",
+ " main_climate \n",
+ " month \n",
+ " year \n",
+ " time \n",
+ " dengue_cases \n",
+ " population \n",
+ " pop_density \n",
+ " urban \n",
+ " water_network \n",
+ " water_shortage \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " PORTO VELHO \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " GUAJARÁ-MIRIM \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " ARIQUEMES \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " JI-PARANÁ \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " ALVORADA D'OESTE \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 133915 \n",
+ " MEIA PONTE \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 133916 \n",
+ " PIRES DO RIO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 133917 \n",
+ " CATALÃO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 133918 \n",
+ " QUIRINÓPOLIS \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 133919 \n",
+ " BRASÍLIA \n",
+ " Distrito Federal \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
133920 rows × 14 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " micro_name_ibge state_name region_name biome_name \\\n",
+ "0 PORTO VELHO Rondônia North Amazon \n",
+ "1 GUAJARÁ-MIRIM Rondônia North Amazon \n",
+ "2 ARIQUEMES Rondônia North Amazon \n",
+ "3 JI-PARANÁ Rondônia North Amazon \n",
+ "4 ALVORADA D'OESTE Rondônia North Amazon \n",
+ "... ... ... ... ... \n",
+ "133915 MEIA PONTE Goiás Centre-West Cerrado \n",
+ "133916 PIRES DO RIO Goiás Centre-West Cerrado \n",
+ "133917 CATALÃO Goiás Centre-West Cerrado \n",
+ "133918 QUIRINÓPOLIS Goiás Centre-West Cerrado \n",
+ "133919 BRASÍLIA Distrito Federal Centre-West Cerrado \n",
+ "\n",
+ " main_climate month year time dengue_cases population pop_density \\\n",
+ "0 AM 1 2000 1 NaN NaN NaN \n",
+ "1 AM 1 2000 1 NaN NaN NaN \n",
+ "2 AM 1 2000 1 NaN NaN NaN \n",
+ "3 AM 1 2000 1 NaN NaN NaN \n",
+ "4 AM 1 2000 1 NaN NaN NaN \n",
+ "... ... ... ... ... ... ... ... \n",
+ "133915 AW 12 2019 240 111.0 409691.0 19.397264 \n",
+ "133916 AW 12 2019 240 42.0 100780.0 10.579541 \n",
+ "133917 AW 12 2019 240 57.0 176527.0 11.591627 \n",
+ "133918 AW 12 2019 240 41.0 128463.0 7.991280 \n",
+ "133919 AW 12 2019 240 576.0 3015268.0 521.289159 \n",
+ "\n",
+ " urban water_network water_shortage \n",
+ "0 85.20 33.57 0.2245 \n",
+ "1 72.31 27.43 0.0873 \n",
+ "2 66.91 27.76 0.1871 \n",
+ "3 68.68 32.23 0.2381 \n",
+ "4 42.82 21.40 0.2837 \n",
+ "... ... ... ... \n",
+ "133915 89.69 79.10 0.4656 \n",
+ "133916 72.80 71.34 0.2444 \n",
+ "133917 89.47 88.74 0.6508 \n",
+ "133918 85.36 77.39 0.4802 \n",
+ "133919 96.77 94.82 0.8730 \n",
+ "\n",
+ "[133920 rows x 14 columns]"
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_copia.drop(['micro_code', 'meso_code', 'state_code', 'region_code', 'biome_code', 'ecozone_code', 'micro_name', 'ecozone_name', 'tmax', 'tmin', 'pdsi', 'meso_name'], axis='columns', inplace=True)\n",
+ "df_copia"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Duplicados"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Avaliando e retirando dados duplicados, mas o dataframe não possui dados duplicados."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(133920, 14)"
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_copia.drop_duplicates(inplace=True)\n",
+ "df_copia.shape\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Renomear colunas"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Renomeando as colunas em português para melhor compreensão do público na apresentação dos dados."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " municipio \n",
+ " estado \n",
+ " regiao \n",
+ " bioma \n",
+ " clima_principal \n",
+ " mes \n",
+ " ano \n",
+ " indice_mes \n",
+ " casos_dengue \n",
+ " populacao \n",
+ " densidade_populacao \n",
+ " populacao_urbana \n",
+ " acesso_agua \n",
+ " escassez_agua \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " PORTO VELHO \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " GUAJARÁ-MIRIM \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " ARIQUEMES \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " JI-PARANÁ \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " ALVORADA D'OESTE \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2000 \n",
+ " 1 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 133915 \n",
+ " MEIA PONTE \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 133916 \n",
+ " PIRES DO RIO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 133917 \n",
+ " CATALÃO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 133918 \n",
+ " QUIRINÓPOLIS \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 133919 \n",
+ " BRASÍLIA \n",
+ " Distrito Federal \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
133920 rows × 14 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " municipio estado regiao bioma \\\n",
+ "0 PORTO VELHO Rondônia North Amazon \n",
+ "1 GUAJARÁ-MIRIM Rondônia North Amazon \n",
+ "2 ARIQUEMES Rondônia North Amazon \n",
+ "3 JI-PARANÁ Rondônia North Amazon \n",
+ "4 ALVORADA D'OESTE Rondônia North Amazon \n",
+ "... ... ... ... ... \n",
+ "133915 MEIA PONTE Goiás Centre-West Cerrado \n",
+ "133916 PIRES DO RIO Goiás Centre-West Cerrado \n",
+ "133917 CATALÃO Goiás Centre-West Cerrado \n",
+ "133918 QUIRINÓPOLIS Goiás Centre-West Cerrado \n",
+ "133919 BRASÍLIA Distrito Federal Centre-West Cerrado \n",
+ "\n",
+ " clima_principal mes ano indice_mes casos_dengue populacao \\\n",
+ "0 AM 1 2000 1 NaN NaN \n",
+ "1 AM 1 2000 1 NaN NaN \n",
+ "2 AM 1 2000 1 NaN NaN \n",
+ "3 AM 1 2000 1 NaN NaN \n",
+ "4 AM 1 2000 1 NaN NaN \n",
+ "... ... ... ... ... ... ... \n",
+ "133915 AW 12 2019 240 111.0 409691.0 \n",
+ "133916 AW 12 2019 240 42.0 100780.0 \n",
+ "133917 AW 12 2019 240 57.0 176527.0 \n",
+ "133918 AW 12 2019 240 41.0 128463.0 \n",
+ "133919 AW 12 2019 240 576.0 3015268.0 \n",
+ "\n",
+ " densidade_populacao populacao_urbana acesso_agua escassez_agua \n",
+ "0 NaN 85.20 33.57 0.2245 \n",
+ "1 NaN 72.31 27.43 0.0873 \n",
+ "2 NaN 66.91 27.76 0.1871 \n",
+ "3 NaN 68.68 32.23 0.2381 \n",
+ "4 NaN 42.82 21.40 0.2837 \n",
+ "... ... ... ... ... \n",
+ "133915 19.397264 89.69 79.10 0.4656 \n",
+ "133916 10.579541 72.80 71.34 0.2444 \n",
+ "133917 11.591627 89.47 88.74 0.6508 \n",
+ "133918 7.991280 85.36 77.39 0.4802 \n",
+ "133919 521.289159 96.77 94.82 0.8730 \n",
+ "\n",
+ "[133920 rows x 14 columns]"
+ ]
+ },
+ "execution_count": 12,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df = df_copia.rename(columns={\n",
+ " 'micro_name_ibge': 'municipio',\n",
+ " 'state_name': 'estado',\n",
+ " 'region_name': 'regiao',\n",
+ " 'biome_name': 'bioma',\n",
+ " 'main_climate': 'clima_principal',\n",
+ " 'month': 'mes',\n",
+ " 'year': 'ano',\n",
+ " 'time': 'indice_mes',\n",
+ " 'dengue_cases': 'casos_dengue',\n",
+ " 'population': 'populacao',\n",
+ " 'pop_density': 'densidade_populacao',\n",
+ " 'urban': 'populacao_urbana',\n",
+ " 'water_network': 'acesso_agua',\n",
+ " 'water_shortage': 'escassez_agua'\n",
+ "})\n",
+ "df"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Descrição das colunas:\n",
+ "\n",
+ "Editamos as colunas para melhor compreensão e ficaram assim:\n",
+ "\n",
+ "municipio = Nome da cidade;\n",
+ "\n",
+ "estado = Estado;\n",
+ "\n",
+ "regiao = Região;\n",
+ "\n",
+ "bioma = Bioma;\n",
+ "\n",
+ "clima_principal = Principal regime climático prevalente no município;\n",
+ "\n",
+ "mes = Mês civil, 1 = janeiro a 12 = dezembro;\n",
+ "\n",
+ "ano = Ano 2000 - 2019;\n",
+ "\n",
+ "indice_mes = começando em 1 para janeiro de 2000 indo até 240 em dezembro 2019;\n",
+ "\n",
+ "casos_dengue = Casos de dengue notificados registrados no sistema de agravos de notificação compulsória do Brasil (SINAN)\n",
+ "no município, no mês dos primeiros sintomas;\n",
+ "\n",
+ "populacao = População estimada, com base em projeções calculadas usando os Censos de 2000 e 2010,\n",
+ "e contagens realizadas em 2007 e 2017;\n",
+ "\n",
+ "densidade_polulacao = Densidade populacional/área_km²;\n",
+ "\n",
+ "populacao_urbana = População urbana porcentagem de habitantes vivendo em áreas urbanas de acordo com o censo de 2010;\n",
+ "\n",
+ "acesso_agua = Acesso à rede de água, porcentagem de habitantes com acesso à rede de água encanada de acordo com o censo de 2010;\n",
+ "\n",
+ "escassez_agua = Escassez de água, frequência de escassez de água relatada por município entre 2000 e 2016;"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Retirar os dados nulos\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "municipio 0\n",
+ "estado 0\n",
+ "regiao 0\n",
+ "bioma 0\n",
+ "clima_principal 0\n",
+ "mes 0\n",
+ "ano 0\n",
+ "indice_mes 0\n",
+ "casos_dengue 6696\n",
+ "populacao 6696\n",
+ "densidade_populacao 6696\n",
+ "populacao_urbana 0\n",
+ "acesso_agua 0\n",
+ "escassez_agua 0\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.isnull().sum()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "usando código para excluir todos os dados nulos."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " municipio \n",
+ " estado \n",
+ " regiao \n",
+ " bioma \n",
+ " clima_principal \n",
+ " mes \n",
+ " ano \n",
+ " indice_mes \n",
+ " casos_dengue \n",
+ " populacao \n",
+ " densidade_populacao \n",
+ " populacao_urbana \n",
+ " acesso_agua \n",
+ " escassez_agua \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 6696 \n",
+ " PORTO VELHO \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 267.0 \n",
+ " 426640.0 \n",
+ " 6.503234 \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 6697 \n",
+ " GUAJARÁ-MIRIM \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 12.0 \n",
+ " 61321.0 \n",
+ " 1.504577 \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 6698 \n",
+ " ARIQUEMES \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 2.0 \n",
+ " 143809.0 \n",
+ " 5.903734 \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 6699 \n",
+ " JI-PARANÁ \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 93.0 \n",
+ " 306896.0 \n",
+ " 12.241386 \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 6700 \n",
+ " ALVORADA D'OESTE \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 1.0 \n",
+ " 74460.0 \n",
+ " 4.658250 \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 133915 \n",
+ " MEIA PONTE \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 133916 \n",
+ " PIRES DO RIO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 133917 \n",
+ " CATALÃO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 133918 \n",
+ " QUIRINÓPOLIS \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 133919 \n",
+ " BRASÍLIA \n",
+ " Distrito Federal \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
127224 rows × 14 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " municipio estado regiao bioma \\\n",
+ "6696 PORTO VELHO Rondônia North Amazon \n",
+ "6697 GUAJARÁ-MIRIM Rondônia North Amazon \n",
+ "6698 ARIQUEMES Rondônia North Amazon \n",
+ "6699 JI-PARANÁ Rondônia North Amazon \n",
+ "6700 ALVORADA D'OESTE Rondônia North Amazon \n",
+ "... ... ... ... ... \n",
+ "133915 MEIA PONTE Goiás Centre-West Cerrado \n",
+ "133916 PIRES DO RIO Goiás Centre-West Cerrado \n",
+ "133917 CATALÃO Goiás Centre-West Cerrado \n",
+ "133918 QUIRINÓPOLIS Goiás Centre-West Cerrado \n",
+ "133919 BRASÍLIA Distrito Federal Centre-West Cerrado \n",
+ "\n",
+ " clima_principal mes ano indice_mes casos_dengue populacao \\\n",
+ "6696 AM 1 2001 13 267.0 426640.0 \n",
+ "6697 AM 1 2001 13 12.0 61321.0 \n",
+ "6698 AM 1 2001 13 2.0 143809.0 \n",
+ "6699 AM 1 2001 13 93.0 306896.0 \n",
+ "6700 AM 1 2001 13 1.0 74460.0 \n",
+ "... ... ... ... ... ... ... \n",
+ "133915 AW 12 2019 240 111.0 409691.0 \n",
+ "133916 AW 12 2019 240 42.0 100780.0 \n",
+ "133917 AW 12 2019 240 57.0 176527.0 \n",
+ "133918 AW 12 2019 240 41.0 128463.0 \n",
+ "133919 AW 12 2019 240 576.0 3015268.0 \n",
+ "\n",
+ " densidade_populacao populacao_urbana acesso_agua escassez_agua \n",
+ "6696 6.503234 85.20 33.57 0.2245 \n",
+ "6697 1.504577 72.31 27.43 0.0873 \n",
+ "6698 5.903734 66.91 27.76 0.1871 \n",
+ "6699 12.241386 68.68 32.23 0.2381 \n",
+ "6700 4.658250 42.82 21.40 0.2837 \n",
+ "... ... ... ... ... \n",
+ "133915 19.397264 89.69 79.10 0.4656 \n",
+ "133916 10.579541 72.80 71.34 0.2444 \n",
+ "133917 11.591627 89.47 88.74 0.6508 \n",
+ "133918 7.991280 85.36 77.39 0.4802 \n",
+ "133919 521.289159 96.77 94.82 0.8730 \n",
+ "\n",
+ "[127224 rows x 14 columns]"
+ ]
+ },
+ "execution_count": 14,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_ = df.dropna()\n",
+ "df_"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Resetando os índices."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Reordenando os índices para análise, já que alguns dados nulos foram apagados."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " municipio \n",
+ " estado \n",
+ " regiao \n",
+ " bioma \n",
+ " clima_principal \n",
+ " mes \n",
+ " ano \n",
+ " indice_mes \n",
+ " casos_dengue \n",
+ " populacao \n",
+ " densidade_populacao \n",
+ " populacao_urbana \n",
+ " acesso_agua \n",
+ " escassez_agua \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " PORTO VELHO \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 267.0 \n",
+ " 426640.0 \n",
+ " 6.503234 \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " GUAJARÁ-MIRIM \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 12.0 \n",
+ " 61321.0 \n",
+ " 1.504577 \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " ARIQUEMES \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 2.0 \n",
+ " 143809.0 \n",
+ " 5.903734 \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " JI-PARANÁ \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 93.0 \n",
+ " 306896.0 \n",
+ " 12.241386 \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " ALVORADA D'OESTE \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 1.0 \n",
+ " 74460.0 \n",
+ " 4.658250 \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 127219 \n",
+ " MEIA PONTE \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 127220 \n",
+ " PIRES DO RIO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 127221 \n",
+ " CATALÃO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 127222 \n",
+ " QUIRINÓPOLIS \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 127223 \n",
+ " BRASÍLIA \n",
+ " Distrito Federal \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
127224 rows × 14 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " municipio estado regiao bioma \\\n",
+ "0 PORTO VELHO Rondônia North Amazon \n",
+ "1 GUAJARÁ-MIRIM Rondônia North Amazon \n",
+ "2 ARIQUEMES Rondônia North Amazon \n",
+ "3 JI-PARANÁ Rondônia North Amazon \n",
+ "4 ALVORADA D'OESTE Rondônia North Amazon \n",
+ "... ... ... ... ... \n",
+ "127219 MEIA PONTE Goiás Centre-West Cerrado \n",
+ "127220 PIRES DO RIO Goiás Centre-West Cerrado \n",
+ "127221 CATALÃO Goiás Centre-West Cerrado \n",
+ "127222 QUIRINÓPOLIS Goiás Centre-West Cerrado \n",
+ "127223 BRASÍLIA Distrito Federal Centre-West Cerrado \n",
+ "\n",
+ " clima_principal mes ano indice_mes casos_dengue populacao \\\n",
+ "0 AM 1 2001 13 267.0 426640.0 \n",
+ "1 AM 1 2001 13 12.0 61321.0 \n",
+ "2 AM 1 2001 13 2.0 143809.0 \n",
+ "3 AM 1 2001 13 93.0 306896.0 \n",
+ "4 AM 1 2001 13 1.0 74460.0 \n",
+ "... ... ... ... ... ... ... \n",
+ "127219 AW 12 2019 240 111.0 409691.0 \n",
+ "127220 AW 12 2019 240 42.0 100780.0 \n",
+ "127221 AW 12 2019 240 57.0 176527.0 \n",
+ "127222 AW 12 2019 240 41.0 128463.0 \n",
+ "127223 AW 12 2019 240 576.0 3015268.0 \n",
+ "\n",
+ " densidade_populacao populacao_urbana acesso_agua escassez_agua \n",
+ "0 6.503234 85.20 33.57 0.2245 \n",
+ "1 1.504577 72.31 27.43 0.0873 \n",
+ "2 5.903734 66.91 27.76 0.1871 \n",
+ "3 12.241386 68.68 32.23 0.2381 \n",
+ "4 4.658250 42.82 21.40 0.2837 \n",
+ "... ... ... ... ... \n",
+ "127219 19.397264 89.69 79.10 0.4656 \n",
+ "127220 10.579541 72.80 71.34 0.2444 \n",
+ "127221 11.591627 89.47 88.74 0.6508 \n",
+ "127222 7.991280 85.36 77.39 0.4802 \n",
+ "127223 521.289159 96.77 94.82 0.8730 \n",
+ "\n",
+ "[127224 rows x 14 columns]"
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_dengue = df_.reset_index(drop=True)\n",
+ "df_dengue"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Mostrando que não tem mais valores nulos no dataframe."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "municipio 0\n",
+ "estado 0\n",
+ "regiao 0\n",
+ "bioma 0\n",
+ "clima_principal 0\n",
+ "mes 0\n",
+ "ano 0\n",
+ "indice_mes 0\n",
+ "casos_dengue 0\n",
+ "populacao 0\n",
+ "densidade_populacao 0\n",
+ "populacao_urbana 0\n",
+ "acesso_agua 0\n",
+ "escassez_agua 0\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 16,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_dengue.isnull().sum()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Describe com as colunas renomeadas e com somente as que serão ultilizadas na análise."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " mes \n",
+ " ano \n",
+ " indice_mes \n",
+ " casos_dengue \n",
+ " populacao \n",
+ " densidade_populacao \n",
+ " populacao_urbana \n",
+ " acesso_agua \n",
+ " escassez_agua \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " 127224.000000 \n",
+ " 127224.000000 \n",
+ " 127224.000000 \n",
+ " 127224.000000 \n",
+ " 1.272240e+05 \n",
+ " 127224.000000 \n",
+ " 127224.000000 \n",
+ " 127224.000000 \n",
+ " 127224.000000 \n",
+ " \n",
+ " \n",
+ " mean \n",
+ " 6.500000 \n",
+ " 2010.000000 \n",
+ " 126.500000 \n",
+ " 101.358965 \n",
+ " 3.451623e+05 \n",
+ " 102.588820 \n",
+ " 72.098190 \n",
+ " 72.286989 \n",
+ " 0.357296 \n",
+ " \n",
+ " \n",
+ " std \n",
+ " 3.452066 \n",
+ " 5.477247 \n",
+ " 65.817556 \n",
+ " 971.192888 \n",
+ " 8.878110e+05 \n",
+ " 365.514023 \n",
+ " 16.630277 \n",
+ " 17.021313 \n",
+ " 0.240645 \n",
+ " \n",
+ " \n",
+ " min \n",
+ " 1.000000 \n",
+ " 2001.000000 \n",
+ " 13.000000 \n",
+ " 0.000000 \n",
+ " 2.096000e+03 \n",
+ " 0.227461 \n",
+ " 22.300000 \n",
+ " 16.680000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 25% \n",
+ " 3.750000 \n",
+ " 2005.000000 \n",
+ " 69.750000 \n",
+ " 0.000000 \n",
+ " 1.013560e+05 \n",
+ " 12.397913 \n",
+ " 58.390000 \n",
+ " 62.680000 \n",
+ " 0.160100 \n",
+ " \n",
+ " \n",
+ " 50% \n",
+ " 6.500000 \n",
+ " 2010.000000 \n",
+ " 126.500000 \n",
+ " 4.000000 \n",
+ " 1.737065e+05 \n",
+ " 31.785652 \n",
+ " 72.750000 \n",
+ " 74.875000 \n",
+ " 0.325850 \n",
+ " \n",
+ " \n",
+ " 75% \n",
+ " 9.250000 \n",
+ " 2015.000000 \n",
+ " 183.250000 \n",
+ " 29.000000 \n",
+ " 3.046640e+05 \n",
+ " 63.268632 \n",
+ " 86.680000 \n",
+ " 85.700000 \n",
+ " 0.531700 \n",
+ " \n",
+ " \n",
+ " max \n",
+ " 12.000000 \n",
+ " 2019.000000 \n",
+ " 240.000000 \n",
+ " 88821.000000 \n",
+ " 1.504189e+07 \n",
+ " 6374.149599 \n",
+ " 100.000000 \n",
+ " 98.810000 \n",
+ " 1.000000 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " mes ano indice_mes casos_dengue \\\n",
+ "count 127224.000000 127224.000000 127224.000000 127224.000000 \n",
+ "mean 6.500000 2010.000000 126.500000 101.358965 \n",
+ "std 3.452066 5.477247 65.817556 971.192888 \n",
+ "min 1.000000 2001.000000 13.000000 0.000000 \n",
+ "25% 3.750000 2005.000000 69.750000 0.000000 \n",
+ "50% 6.500000 2010.000000 126.500000 4.000000 \n",
+ "75% 9.250000 2015.000000 183.250000 29.000000 \n",
+ "max 12.000000 2019.000000 240.000000 88821.000000 \n",
+ "\n",
+ " populacao densidade_populacao populacao_urbana acesso_agua \\\n",
+ "count 1.272240e+05 127224.000000 127224.000000 127224.000000 \n",
+ "mean 3.451623e+05 102.588820 72.098190 72.286989 \n",
+ "std 8.878110e+05 365.514023 16.630277 17.021313 \n",
+ "min 2.096000e+03 0.227461 22.300000 16.680000 \n",
+ "25% 1.013560e+05 12.397913 58.390000 62.680000 \n",
+ "50% 1.737065e+05 31.785652 72.750000 74.875000 \n",
+ "75% 3.046640e+05 63.268632 86.680000 85.700000 \n",
+ "max 1.504189e+07 6374.149599 100.000000 98.810000 \n",
+ "\n",
+ " escassez_agua \n",
+ "count 127224.000000 \n",
+ "mean 0.357296 \n",
+ "std 0.240645 \n",
+ "min 0.000000 \n",
+ "25% 0.160100 \n",
+ "50% 0.325850 \n",
+ "75% 0.531700 \n",
+ "max 1.000000 "
+ ]
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_dengue.describe()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Salvando o cvs tratado que iremos usar para a análise."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_dengue.to_csv('dengue_brasil.csv', index=False)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Lendo o csv e criando um dataframe."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " municipio \n",
+ " estado \n",
+ " regiao \n",
+ " bioma \n",
+ " clima_principal \n",
+ " mes \n",
+ " ano \n",
+ " indice_mes \n",
+ " casos_dengue \n",
+ " populacao \n",
+ " densidade_populacao \n",
+ " populacao_urbana \n",
+ " acesso_agua \n",
+ " escassez_agua \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " PORTO VELHO \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 267.0 \n",
+ " 426640.0 \n",
+ " 6.503234 \n",
+ " 85.20 \n",
+ " 33.57 \n",
+ " 0.2245 \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " GUAJARÁ-MIRIM \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 12.0 \n",
+ " 61321.0 \n",
+ " 1.504577 \n",
+ " 72.31 \n",
+ " 27.43 \n",
+ " 0.0873 \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " ARIQUEMES \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 2.0 \n",
+ " 143809.0 \n",
+ " 5.903734 \n",
+ " 66.91 \n",
+ " 27.76 \n",
+ " 0.1871 \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " JI-PARANÁ \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 93.0 \n",
+ " 306896.0 \n",
+ " 12.241386 \n",
+ " 68.68 \n",
+ " 32.23 \n",
+ " 0.2381 \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " ALVORADA D'OESTE \n",
+ " Rondônia \n",
+ " North \n",
+ " Amazon \n",
+ " AM \n",
+ " 1 \n",
+ " 2001 \n",
+ " 13 \n",
+ " 1.0 \n",
+ " 74460.0 \n",
+ " 4.658250 \n",
+ " 42.82 \n",
+ " 21.40 \n",
+ " 0.2837 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 127219 \n",
+ " MEIA PONTE \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 111.0 \n",
+ " 409691.0 \n",
+ " 19.397264 \n",
+ " 89.69 \n",
+ " 79.10 \n",
+ " 0.4656 \n",
+ " \n",
+ " \n",
+ " 127220 \n",
+ " PIRES DO RIO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 42.0 \n",
+ " 100780.0 \n",
+ " 10.579541 \n",
+ " 72.80 \n",
+ " 71.34 \n",
+ " 0.2444 \n",
+ " \n",
+ " \n",
+ " 127221 \n",
+ " CATALÃO \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 57.0 \n",
+ " 176527.0 \n",
+ " 11.591627 \n",
+ " 89.47 \n",
+ " 88.74 \n",
+ " 0.6508 \n",
+ " \n",
+ " \n",
+ " 127222 \n",
+ " QUIRINÓPOLIS \n",
+ " Goiás \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 41.0 \n",
+ " 128463.0 \n",
+ " 7.991280 \n",
+ " 85.36 \n",
+ " 77.39 \n",
+ " 0.4802 \n",
+ " \n",
+ " \n",
+ " 127223 \n",
+ " BRASÍLIA \n",
+ " Distrito Federal \n",
+ " Centre-West \n",
+ " Cerrado \n",
+ " AW \n",
+ " 12 \n",
+ " 2019 \n",
+ " 240 \n",
+ " 576.0 \n",
+ " 3015268.0 \n",
+ " 521.289159 \n",
+ " 96.77 \n",
+ " 94.82 \n",
+ " 0.8730 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
127224 rows × 14 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " municipio estado regiao bioma \\\n",
+ "0 PORTO VELHO Rondônia North Amazon \n",
+ "1 GUAJARÁ-MIRIM Rondônia North Amazon \n",
+ "2 ARIQUEMES Rondônia North Amazon \n",
+ "3 JI-PARANÁ Rondônia North Amazon \n",
+ "4 ALVORADA D'OESTE Rondônia North Amazon \n",
+ "... ... ... ... ... \n",
+ "127219 MEIA PONTE Goiás Centre-West Cerrado \n",
+ "127220 PIRES DO RIO Goiás Centre-West Cerrado \n",
+ "127221 CATALÃO Goiás Centre-West Cerrado \n",
+ "127222 QUIRINÓPOLIS Goiás Centre-West Cerrado \n",
+ "127223 BRASÍLIA Distrito Federal Centre-West Cerrado \n",
+ "\n",
+ " clima_principal mes ano indice_mes casos_dengue populacao \\\n",
+ "0 AM 1 2001 13 267.0 426640.0 \n",
+ "1 AM 1 2001 13 12.0 61321.0 \n",
+ "2 AM 1 2001 13 2.0 143809.0 \n",
+ "3 AM 1 2001 13 93.0 306896.0 \n",
+ "4 AM 1 2001 13 1.0 74460.0 \n",
+ "... ... ... ... ... ... ... \n",
+ "127219 AW 12 2019 240 111.0 409691.0 \n",
+ "127220 AW 12 2019 240 42.0 100780.0 \n",
+ "127221 AW 12 2019 240 57.0 176527.0 \n",
+ "127222 AW 12 2019 240 41.0 128463.0 \n",
+ "127223 AW 12 2019 240 576.0 3015268.0 \n",
+ "\n",
+ " densidade_populacao populacao_urbana acesso_agua escassez_agua \n",
+ "0 6.503234 85.20 33.57 0.2245 \n",
+ "1 1.504577 72.31 27.43 0.0873 \n",
+ "2 5.903734 66.91 27.76 0.1871 \n",
+ "3 12.241386 68.68 32.23 0.2381 \n",
+ "4 4.658250 42.82 21.40 0.2837 \n",
+ "... ... ... ... ... \n",
+ "127219 19.397264 89.69 79.10 0.4656 \n",
+ "127220 10.579541 72.80 71.34 0.2444 \n",
+ "127221 11.591627 89.47 88.74 0.6508 \n",
+ "127222 7.991280 85.36 77.39 0.4802 \n",
+ "127223 521.289159 96.77 94.82 0.8730 \n",
+ "\n",
+ "[127224 rows x 14 columns]"
+ ]
+ },
+ "execution_count": 19,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df_dengue = pd.read_csv(\"dengue_brasil.csv\")\n",
+ "df_dengue"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Visulizações da análise"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Casos')"
+ ]
+ },
+ "execution_count": 20,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA9wAAAMECAYAAABNPS1fAAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAABgDElEQVR4nO3dd5RV5cE+7HsAGZAqCgiKFLFh12hUbFijaOyJJRExGl9jxx4rGkWT2KIGSwygiTH2RI2o2EjUWMDeCwKxoSJNBHXmfH/4Yz7HAWmzOZTrWmvW8jx7nzn3mdmDc8+z97MrSqVSKQAAAEC9alDuAAAAALA4UrgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEoXEVFRc4+++xyx2AJcfbZZ6eioqLO+AknnJAWLVqkT58+GT9+fHr06JHnnntuwQeciYMOOihdunQpd4xCzez70qVLlxx00EHlCQSwACjcAGXy9ttv57DDDku3bt3SpEmTtGzZMj179sxll12WL774otzxFmpdunRJRUVFKioq0qBBg7Ru3Tprr712fvnLX+bJJ58sd7wl3rvvvlvz/ZnxPWrTpk122mmnPPHEE2XJNGXKlAwcODDnnHNOXn755Sy33HJp3rx51llnnbLkKdpBBx1U63vQqFGjdOrUKfvuu29eeeWVcscDWGI0KncAgCXRPffck3322SeVlZU58MADs9Zaa+XLL7/Mf/7zn5x44ol5+eWXc80115Q75kJtvfXWy/HHH58kmTx5cl599dXccsstufbaa3Pcccfl4osvLnNC9ttvv+y8886pqqrKG2+8kT/+8Y/p1atXnn766ay99tqFve7pp5+eU045pdZYkyZN8sorr6Rz58457rjj8v7772f55ZdPgwaL79xDZWVl/vSnPyVJvv7667z99tu56qqrMnTo0Lzyyivp2LHjAs0zs+8LwOJO4QZYwEaNGpV99903nTt3zkMPPZQOHTrUbDviiCPy1ltv5Z577iljwkXDCiuskJ/97Ge1xi688MLsv//+ueSSS7LKKqvk8MMPL1M6kmSDDTao9T3aYoststNOO2XgwIH54x//WNjrNmrUKI0aNaoz1rlz55rHC7pslkOjRo3q/Ixssskm2WWXXXLPPffk0EMPneVzP//88zRr1qze83z3+wKwuFt8/6wLsJD67W9/mylTpuS6666rVbZn6N69e4455piax4MGDco222yTdu3apbKyMj169MjAgQPrPO+ZZ57JjjvumOWWWy5NmzZN165dc/DBB9fa5/PPP8/xxx+fTp06pbKyMquttlp+//vfp1Qq1drvgQceyOabb57WrVunefPmWW211fLrX/96tu9t+vTpOe6449K2bdu0aNEiP/7xj/O///1vpvu+9957Ofjgg9O+fftUVlZmzTXXzJ///OfZvsb3adq0aW644Ya0adMm5513Xq33VV1dnUsvvTRrrrlmmjRpkvbt2+ewww7LZ599VutzdOnSJbvsskv+85//ZOONN06TJk3SrVu3XH/99XVe74UXXshWW22Vpk2bZsUVV8xvfvObDBo0KBUVFXn33Xdr9pvVNewzu351woQJOfbYY2u+R927d8+FF16Y6urq2b7/Oc0+fvz4nHDCCVl77bXTvHnztGzZMjvttFOef/75Op/z8ssvz5prrpmll146yyyzTH7wgx/kxhtvnG2Wmdliiy2SfHM5xby8508//TQ///nP07Jly7Ru3Tp9+vTJ888/n4qKigwePLhmv5ldK/z111/n3HPPzcorr5zKysp06dIlv/71rzN9+vQ6Oe+9995sscUWadasWVq0aJHevXvn5ZdfrrXPhx9+mL59+2bFFVdMZWVlOnTokN12263W931W7rzzzqy11lpp0qRJ1lprrdxxxx0z3W9Of17nxvLLL58ktYrv4MGDU1FRkUcffTS/+tWv0q5du6y44opJktGjR+dXv/pVVltttTRt2jTLLrts9tlnnzrv86uvvkr//v2zyiqrpEmTJll22WWz+eab54EHHqjZZ1bX1gMszvyZEWABu+uuu9KtW7dsttlmc7T/wIEDs+aaa+bHP/5xGjVqlLvuuiu/+tWvUl1dnSOOOCJJMm7cuOywww5p27ZtTjnllLRu3Trvvvtubr/99prPUyqV8uMf/zgPP/xwfvGLX2S99dbLfffdlxNPPDHvvfdeLrnkkiTJyy+/nF122SXrrLNOzjnnnFRWVuatt97KY489NtushxxySP7yl79k//33z2abbZaHHnoovXv3rrPfRx99lE022SQVFRU58sgj07Zt29x77735xS9+kUmTJuXYY4+do6/NzDRv3jx77LFHrrvuurzyyitZc801kySHHXZYBg8enL59++boo4/OqFGjcsUVV+TZZ5/NY489lqWWWqrmc7z11lvZe++984tf/CJ9+vTJn//85xx00EHZcMMNaz7fe++9l169eqWioiKnnnpqmjVrlj/96U+prKyc5+xTp07NVlttlffeey+HHXZYVlpppTz++OM59dRT88EHH+TSSy+d7eeYk+zvvPNO7rzzzuyzzz7p2rVrPvroo1x99dXZaqutap1qfO211+boo4/O3nvvnWOOOSbTpk3LCy+8kCeffDL777//XL+/GSVtmWWWmev3XF1dnV133TVPPfVUDj/88Ky++ur5xz/+kT59+szRax9yyCEZMmRI9t577xx//PF58sknM2DAgLz66qu1Cu8NN9yQPn36ZMcdd8yFF16YqVOnZuDAgdl8883z7LPP1ixsttdee+Xll1/OUUcdlS5dumTcuHF54IEHMmbMmO9d/Oz+++/PXnvtlR49emTAgAH59NNPa4r7t83pz+vsfPLJJ0mSqqqqvPPOOzn55JOz7LLLZpdddqmz769+9au0bds2Z555Zj7//PMkydNPP53HH388++67b1ZcccW8++67GThwYLbeeuu88sorWXrppZN8U6YHDBiQQw45JBtvvHEmTZqUZ555JiNHjsz2228/R1kBFkslABaYiRMnlpKUdttttzl+ztSpU+uM7bjjjqVu3brVPL7jjjtKSUpPP/30LD/PnXfeWUpS+s1vflNrfO+99y5VVFSU3nrrrVKpVCpdcsklpSSljz/+eI4zlkql0nPPPVdKUvrVr35Va3z//fcvJSmdddZZNWO/+MUvSh06dCh98skntfbdd999S61atZrpe/62zp07l3r37j3L7TPewz/+8Y9SqVQq/fvf/y4lKf31r3+ttd/QoUPrjHfu3LmUpDR8+PCasXHjxpUqKytLxx9/fM3YUUcdVaqoqCg9++yzNWOffvppqU2bNqUkpVGjRtWMf/f9f/u1+vTpU/P43HPPLTVr1qz0xhtv1NrvlFNOKTVs2LA0ZsyYWb7nuck+bdq0UlVVVa3njho1qlRZWVk655xzasZ222230pprrvm9rzkzo0aNKiUp9e/fv/Txxx+XPvzww9K///3v0kYbbVRKUrrlllvm+j3fdtttpSSlSy+9tGafqqqq0jbbbFNKUho0aFDN+FlnnVX69q84M47NQw45pNZrnHDCCaUkpYceeqhUKpVKkydPLrVu3bp06KGH1trvww8/LLVq1apm/LPPPislKf3ud7+b66/NeuutV+rQoUNpwoQJNWP3339/KUmpc+fONWNz+vM6K3369CklqfOxwgorlEaMGFFr30GDBpWSlDbffPPS119/XWvbzH4Wn3jiiVKS0vXXX18ztu66637vz2SpVPf7UirV/RkAWNw4pRxgAZo0aVKSpEWLFnP8nKZNm9b898SJE/PJJ59kq622yjvvvJOJEycmSVq3bp0kufvuu/PVV1/N9PP861//SsOGDXP00UfXGj/++ONTKpVy77331vpc//jHP+boNOZvf/4kdT7/d2erS6VSbrvttuy6664plUr55JNPaj523HHHTJw4MSNHjpzj152Z5s2bJ/lmMbUkueWWW9KqVatsv/32tV5vww03TPPmzfPwww/Xen6PHj1qTn9OkrZt22a11VbLO++8UzM2dOjQbLrppllvvfVqxtq0aZMDDjhgnnPfcsst2WKLLbLMMsvUyrnddtulqqoqw4cPn+3nmJPslZWVNYuFVVVV5dNPP625dODbX/vWrVvnf//7X55++ul5ej9nnXVW2rZtm+WXXz5bbLFFXn311Vx00UXZe++95/o9Dx06NEsttVSt644bNGhQc5bH95lxbPbr16/W+IxF92asmfDAAw9kwoQJ2W+//WpladiwYX74wx/WHCdNmzZN48aN88gjj9S5JOH7fPDBB3nuuefSp0+ftGrVqmZ8++23T48ePepknpOf1+/TpEmTPPDAA3nggQdy33335eqrr07z5s2z884754033qiz/6GHHpqGDRvWGvv2vz9fffVVPv3003Tv3j2tW7euc6y8/PLLefPNN2ebC2BJstgU7uHDh2fXXXdNx44dU1FRkTvvvHOuP0epVMrvf//7rLrqqqmsrMwKK6yQ8847r/7DAkusli1bJvn/i+CceOyxx7LddtulWbNmad26ddq2bVtzPfWMwr3VVltlr732Sv/+/bPccstlt912y6BBg2pdnzp69Oh07NixTtlfY401arYnyU9/+tP07NkzhxxySNq3b5999903N99882zL9+jRo9OgQYOsvPLKtcZXW221Wo8//vjjTJgwIddcc03atm1b66Nv375JvjlFfn5MmTIlyf//h40333wzEydOTLt27eq85pQpU+q83korrVTncy6zzDK1ytXo0aPTvXv3OvvNbGxOvfnmmxk6dGidjNttt12SOfu6zEn26urqmoXlKisrs9xyy6Vt27Z54YUXao6pJDn55JPTvHnzbLzxxllllVVyxBFHzNGlBTP88pe/zAMPPJC77rorxx13XL744otUVVXN03sePXp0OnToUHMK8wxz8vWecWx+d9/ll18+rVu3rjn2Z5TFbbbZpk6e+++/vyZLZWVlLrzwwtx7771p3759ttxyy/z2t7/Nhx9+ONscSbLKKqvU2fbdn5M5/Xn9Pg0bNsx2222X7bbbLjvssEN++ctfZtiwYZk4cWJOPfXUOvt37dq1ztgXX3yRM888s+Y68hnHyoQJE2odK+ecc04mTJiQVVddNWuvvXZOPPHEvPDCC7PNCLC4W2yu4f7888+z7rrr5uCDD86ee+45T5/jmGOOyf3335/f//73WXvttTN+/PiMHz++npMCS7KWLVumY8eOeemll+Zo/7fffjvbbrttVl999Vx88cXp1KlTGjdunH/961+55JJLakpwRUVFbr311vz3v//NXXfdlfvuuy8HH3xwLrroovz3v/+tmfGdE02bNs3w4cPz8MMP55577snQoUPz97//Pdtss03uv//+OjNgc2tG5p/97GezvP52fu+NPOPrO6NgVVdXp127dvnrX/860/3btm1b6/Gs3mNpPharmpnvls/q6upsv/32Oemkk2a6/6qrrjrbzzkn2c8///ycccYZOfjgg3PuueemTZs2adCgQY499thaf1hZY4018vrrr+fuu+/O0KFDc9ttt+WPf/xjzjzzzPTv33+2WVZZZZWa4rzLLrukYcOGOeWUU9KrV6/84Ac/qLf3PKdmt2DXjPd+ww031Cwu9m3fXmjs2GOPza677po777wz9913X84444wMGDAgDz30UNZff/16y1zfVlxxxay22mozPVvi27PZMxx11FEZNGhQjj322Gy66aZp1apVKioqsu+++9Y6Vrbccsu8/fbb+cc//pH7778/f/rTn3LJJZfkqquuyiGHHFLoewJYmC02hXunnXbKTjvtNMvt06dPz2mnnZa//e1vmTBhQtZaa61ceOGF2XrrrZMkr776agYOHJiXXnqp5q/MM/tLL8D82mWXXXLNNdfkiSeeyKabbvq9+951112ZPn16/vnPf9aaufzuKdAzbLLJJtlkk01y3nnn5cYbb8wBBxyQm266KYccckg6d+6cYcOGZfLkybVmzV577bUkqXXLpAYNGmTbbbfNtttum4svvjjnn39+TjvttDz88MM1Beq7OnfunOrq6rz99tu1Zutef/31WvvNWMG8qqpqlp9rfkyZMiV33HFHOnXqVDMbuPLKK2fYsGHp2bPnTEvFvOjcuXPeeuutOuMzG1tmmWUyYcKEWmNffvllPvjgg1pjK6+8cqZMmVLI1+Xbbr311vTq1SvXXXddrfEJEyZkueWWqzXWrFmz/PSnP81Pf/rTfPnll9lzzz1z3nnn5dRTT02TJk3m6nVPO+20XHvttTn99NMzdOjQJHP+njt37pyHH344U6dOrTXLPbOv98yeW11dnTfffLPmmEi+WbxvwoQJNcf+jLMz2rVrN0ffg5VXXjnHH398jj/++Lz55ptZb731ctFFF+Uvf/nLLHMkmelp19/9OZmbn9e59fXXX9ecBTI7t956a/r06ZOLLrqoZmzatGl1jufkm0sq+vbtm759+2bKlCnZcsstc/bZZyvcwBJtsTmlfHaOPPLIPPHEE7npppvywgsvZJ999smPfvSjmv/pzVg1+O67707Xrl3TpUuXHHLIIWa4gXp30kknpVmzZjnkkEPy0Ucf1dn+9ttv57LLLkvy/89Wfnt2cuLEiRk0aFCt53z22Wd1Zl9nXFs847TynXfeOVVVVbniiitq7XfJJZekoqKi5o+WM/t377ufa2ZmPP8Pf/hDrfHvrqzdsGHD7LXXXrnttttmOtP/8ccfz/I1ZueLL77Iz3/+84wfPz6nnXZazYzmT37yk1RVVeXcc8+t85yvv/56puVhdnbcccc88cQTee6552rGxo8fP9NZ9JVXXrnOjOI111xTZ4b7Jz/5SZ544oncd999dT7HhAkT8vXXX891zplp2LBhnePllltuyXvvvVdr7NNPP631uHHjxunRo0dKpdIs1wr4Pq1bt85hhx2W++67r+brNqfveccdd8xXX32Va6+9tmZ7dXV1rrzyytm+7s4775yk7rF48cUXJ0nNSvo77rhjWrZsmfPPP3+m72/GsTl16tRMmzat1raVV145LVq0+N6fkQ4dOmS99dbLkCFDap2O/cADD+SVV16pk3lOfl7n1htvvJHXX38966677hztP7Nj5fLLL69z7H73WGnevHm6d+/+vV8PgCXBYjPD/X3GjBmTQYMGZcyYMTW3OjnhhBMydOjQDBo0KOeff37eeeedjB49Orfcckuuv/76VFVV5bjjjsvee++dhx56qMzvAFicrLzyyrnxxhvz05/+NGussUYOPPDArLXWWvnyyy/z+OOP55Zbbqm5N/MOO+yQxo0bZ9ddd81hhx2WKVOm5Nprr027du1qzY4OGTIkf/zjH7PHHntk5ZVXzuTJk3PttdemZcuWNWVj1113Ta9evXLaaafl3Xffzbrrrpv7778///jHP3LsscfWzO6dc845GT58eHr37p3OnTtn3Lhx+eMf/5gVV1wxm2+++Szf13rrrZf99tsvf/zjHzNx4sRsttlmefDBB2c6A3nBBRfk4Ycfzg9/+MMceuih6dGjR8aPH5+RI0dm2LBhc/THzvfee69mJnHKlCl55ZVXcsstt+TDDz/M8ccfn8MOO6xm36222iqHHXZYBgwYkOeeey477LBDllpqqbz55pu55ZZbctlll9VayGtOnHTSSfnLX/6S7bffPkcddVTNbcFWWmmljB8/vtbpy4ccckj+7//+L3vttVe23377PP/887nvvvvqzCafeOKJ+ec//5lddtml5lZen3/+eV588cXceuuteffdd+s8Z17ssssuOeecc9K3b99sttlmefHFF/PXv/413bp1q7XfDjvskOWXXz49e/ZM+/bt8+qrr+aKK65I796952rhv2875phjcumll+aCCy7ITTfdNMfveffdd8/GG2+c448/Pm+99VZWX331/POf/6w5Vr7vdPF11103ffr0yTXXXJMJEyZkq622ylNPPZUhQ4Zk9913T69evZJ8c8nHwIED8/Of/zwbbLBB9t1337Rt2zZjxozJPffck549e+aKK67IG2+8kW233TY/+clP0qNHjzRq1Ch33HFHPvroo+y7777f+/4HDBiQ3r17Z/PNN8/BBx+c8ePH19zr/NuzznP68/p9vv7665qfkerq6rz77ru56qqrUl1dnbPOOmu2z0++OVZuuOGGtGrVKj169MgTTzyRYcOGZdlll621X48ePbL11ltnww03TJs2bfLMM8/k1ltvzZFHHjlHrwOw2CrP4ujFSlK64447ah7ffffdpSSlZs2a1fpo1KhR6Sc/+UmpVCqVDj300FKS0uuvv17zvBEjRpSSlF577bUF/RaAJcAbb7xROvTQQ0tdunQpNW7cuNSiRYtSz549S5dffnlp2rRpNfv985//LK2zzjqlJk2alLp06VK68MILS3/+859r3Xpq5MiRpf3226+00korlSorK0vt2rUr7bLLLqVnnnmm1mtOnjy5dNxxx5U6duxYWmqppUqrrLJK6Xe/+12purq6Zp8HH3ywtNtuu5U6duxYaty4caljx46l/fbbr85tm2bmiy++KB199NGlZZddttSsWbPSrrvuWho7duxMb4v10UcflY444ohSp06dSksttVRp+eWXL2277bala665ZravM+P2V0lKFRUVpZYtW5bWXHPN0qGHHlp68sknZ/m8a665prThhhuWmjZtWmrRokVp7bXXLp100kml999/v9bnntntjbbaaqvSVlttVWvs2WefLW2xxRalysrK0oorrlgaMGBA6Q9/+EMpSenDDz+s2a+qqqp08sknl5ZbbrnS0ksvXdpxxx1Lb7311kxviTR58uTSqaeeWurevXupcePGpeWWW6602WablX7/+9+Xvvzyy9l+XeYk+7Rp00rHH398qUOHDqWmTZuWevbsWXriiSfq7Hf11VeXttxyy9Kyyy5bqqysLK288sqlE088sTRx4sTvzTHjtmCzum3WQQcdVGrYsGHNra3m9D1//PHHpf3337/UokWLUqtWrUoHHXRQ6bHHHislKd100001+83s9lNfffVVqX///qWuXbuWllpqqVKnTp1Kp556aq2ftRkefvjh0o477lhq1apVqUmTJqWVV165dNBBB9X8PH3yySelI444orT66quXmjVrVmrVqlXphz/8Yenmm2/+3q/LDLfddltpjTXWKFVWVpZ69OhRuv3220t9+vSpdVuwGV+X2f28zsrMbgvWsmXL0rbbblsaNmxYrX1n3BZsZrcV/Oyzz0p9+/YtLbfccqXmzZuXdtxxx9Jrr71W59j9zW9+U9p4441LrVu3LjVt2rS0+uqrl84777xa3z+3BQOWRBWlUj2vALMQqKioyB133JHdd989SfL3v/89BxxwQF5++eU6i8k0b948yy+/fM4666w6p5B98cUXWXrppXP//fdn++23X5BvAYBF1LHHHpurr746U6ZMme8F5pi9O++8M3vssUf+85//pGfPnuWOAwC1LBGnlK+//vqpqqrKuHHjat2b9Nt69uyZr7/+Om+//XbNaVoz7lE5PwuTALD4+uKLL2otwvbpp5/mhhtuyOabb65sF+C7X++qqqpcfvnladmyZTbYYIMyJgOAmVtsCveUKVNqXSc4atSoPPfcc2nTpk1WXXXVHHDAATnwwANz0UUXZf3118/HH3+cBx98MOuss0569+6d7bbbLhtssEEOPvjgXHrppamurs4RRxyR7bffvl5vSQLA4mPTTTfN1ltvnTXWWCMfffRRrrvuukyaNClnnHFGuaMtlo466qh88cUX2XTTTTN9+vTcfvvtefzxx3P++efX2+rzAFCfFptTyh955JGaRU++rU+fPhk8eHC++uqr/OY3v8n111+f9957L8stt1w22WST9O/fP2uvvXaS5P33389RRx2V+++/P82aNctOO+2Uiy66KG3atFnQbweARcCvf/3r3Hrrrfnf//6XioqKbLDBBjnrrLMKv63XkurGG2/MRRddlLfeeivTpk1L9+7dc/jhh1uYC4CF1mJTuAEAAGBhssTchxsAAAAWJIUbAAAAClDWRdO6dOmS0aNH1xn/1a9+lSuvvHK2z6+urs7777+fFi1apKKiooiIAAAAUKNUKmXy5Mnp2LFjGjT4/jnsshbup59+OlVVVTWPX3rppWy//fbZZ5995uj577//fjp16lRUPAAAAJipsWPHZsUVV/zefcpauNu2bVvr8QUXXJCVV145W2211Rw9v0WLFkm+eaMtW7as93wAAADwbZMmTUqnTp1q+uj3WWjuw/3ll1/mL3/5S/r16zfL08OnT5+e6dOn1zyePHlykqRly5YKNwAAAAvMnFzWvNAsmnbnnXdmwoQJOeigg2a5z4ABA9KqVauaD6eTAwAAsLBaaO7DveOOO6Zx48a56667ZrnPd2e4Z0zlT5w40Qw3AAAAhZs0aVJatWo1Rz10oTilfPTo0Rk2bFhuv/32792vsrIylZWVCygVAAAAzLuF4pTyQYMGpV27dundu3e5owAAAEC9KHvhrq6uzqBBg9KnT580arRQTLgDAADAfCt74R42bFjGjBmTgw8+uNxRAAAAoN6UfUp5hx12yEKybhsAAADUm7LPcAMAAMDiSOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFCARuUOAAAAsDDocso95Y6wxHn3gt7ljlAoM9wAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAKUvXC/9957+dnPfpZll102TZs2zdprr51nnnmm3LEAAABgvjQq54t/9tln6dmzZ3r16pV77703bdu2zZtvvpllllmmnLEAAABgvpW1cF944YXp1KlTBg0aVDPWtWvXMiYCAACA+lHWU8r/+c9/5gc/+EH22WeftGvXLuuvv36uvfbaWe4/ffr0TJo0qdYHAAAALIzKWrjfeeedDBw4MKusskruu+++HH744Tn66KMzZMiQme4/YMCAtGrVquajU6dOCzgxAAAAzJmKUqlUKteLN27cOD/4wQ/y+OOP14wdffTRefrpp/PEE0/U2X/69OmZPn16zeNJkyalU6dOmThxYlq2bLlAMgMAAIunLqfcU+4IS5x3L+hd7ghzbdKkSWnVqtUc9dCyznB36NAhPXr0qDW2xhprZMyYMTPdv7KyMi1btqz1AQAAAAujshbunj175vXXX6819sYbb6Rz585lSgQAAAD1o6yF+7jjjst///vfnH/++Xnrrbdy44035pprrskRRxxRzlgAAAAw38pauDfaaKPccccd+dvf/pa11lor5557bi699NIccMAB5YwFAAAA862s9+FOkl122SW77LJLuWMAAABAvSrrDDcAAAAsrhRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUoKyF++yzz05FRUWtj9VXX72ckQAAAKBeNCp3gDXXXDPDhg2redyoUdkjAQAAwHwre7tt1KhRll9++XLHAAAAgHpV9mu433zzzXTs2DHdunXLAQcckDFjxsxy3+nTp2fSpEm1PgAAAGBhVNbC/cMf/jCDBw/O0KFDM3DgwIwaNSpbbLFFJk+ePNP9BwwYkFatWtV8dOrUaQEnBgAAgDlTUSqVSuUOMcOECRPSuXPnXHzxxfnFL35RZ/v06dMzffr0mseTJk1Kp06dMnHixLRs2XJBRgUAABYzXU65p9wRljjvXtC73BHm2qRJk9KqVas56qFlv4b721q3bp1VV101b7311ky3V1ZWprKycgGnAgAAgLlX9mu4v23KlCl5++2306FDh3JHAQAAgPlS1sJ9wgkn5NFHH827776bxx9/PHvssUcaNmyY/fbbr5yxAAAAYL6V9ZTy//3vf9lvv/3y6aefpm3bttl8883z3//+N23bti1nLAAAAJhvZS3cN910UzlfHgAAAAqzUF3DDQAAAIsLhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKMBCU7gvuOCCVFRU5Nhjjy13FAAAAJhvC0Xhfvrpp3P11VdnnXXWKXcUAAAAqBdlL9xTpkzJAQcckGuvvTbLLLNMueMAAABAvSh74T7iiCPSu3fvbLfddrPdd/r06Zk0aVKtDwAAAFgYNSrni990000ZOXJknn766Tnaf8CAAenfv3/BqQAAAGD+lW2Ge+zYsTnmmGPy17/+NU2aNJmj55x66qmZOHFizcfYsWMLTgkAAADzpmwz3CNGjMi4ceOywQYb1IxVVVVl+PDhueKKKzJ9+vQ0bNiw1nMqKytTWVm5oKMCAADAXCtb4d52223z4osv1hrr27dvVl999Zx88sl1yjYAAAAsSspWuFu0aJG11lqr1lizZs2y7LLL1hkHAACARU3ZVykHAACAxVFZVyn/rkceeaTcEQAAAKBemOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFCAeSrcX3zxRaZOnVrzePTo0bn00ktz//3311swAAAAWJTNU+Hebbfdcv311ydJJkyYkB/+8Ie56KKLsttuu2XgwIH1GhAAAAAWRfNUuEeOHJktttgiSXLrrbemffv2GT16dK6//vr84Q9/qNeAAAAAsCiap8I9derUtGjRIkly//33Z88990yDBg2yySabZPTo0fUaEAAAABZF81S4u3fvnjvvvDNjx47Nfffdlx122CFJMm7cuLRs2bJeAwIAAMCiaJ4K95lnnpkTTjghXbp0ycYbb5xNN900yTez3euvv369BgQAAIBFUaN5edLee++dzTffPB988EHWXXfdmvFtt902e+yxR72FAwAAgEXVPBXuJFl++eWz/PLL53//+1+SZMUVV8zGG29cb8EAAABgUTZPp5RXV1fnnHPOSatWrdK5c+d07tw5rVu3zrnnnpvq6ur6zggAAACLnHma4T7ttNNy3XXX5YILLkjPnj2TJP/5z39y9tlnZ9q0aTnvvPPqNSQAAAAsauapcA8ZMiR/+tOf8uMf/7hmbJ111skKK6yQX/3qVwo3AAAAS7x5OqV8/PjxWX311euMr7766hk/fvx8hwIAAIBF3TwV7nXXXTdXXHFFnfErrrii1qrlAAAAsKSap1PKf/vb36Z3794ZNmxYzT24n3jiiYwdOzb/+te/6jUgAAAALIrmaYZ7q622yhtvvJE99tgjEyZMyIQJE7Lnnnvm9ddfzxZbbFHfGQEAAGCRM8/34e7YsaPF0QAAAGAW5mmGe+jQofnPf/5T8/jKK6/Meuutl/333z+fffZZvYUDAACARdU8Fe4TTzwxkyZNSpK8+OKL6devX3beeeeMGjUq/fr1q9eAAAAAsCiap1PKR40alR49eiRJbrvttuy66645//zzM3LkyOy88871GhAAAAAWRfM0w924ceNMnTo1STJs2LDssMMOSZI2bdrUzHwDAADAkmyeZrg333zz9OvXLz179sxTTz2Vv//970mSN954IyuuuGK9BgQAAIBF0TzNcF9xxRVp1KhRbr311gwcODArrLBCkuTee+/Nj370o3oNCAAAAIuieZrhXmmllXL33XfXGb/kkkvmOxAAAAAsDub5PtwzTJs2LV9++WWtsZYtW87vpwUAAIBF2jydUv7555/nyCOPTLt27dKsWbMss8wytT4AAABgSTdPhfukk07KQw89lIEDB6aysjJ/+tOf0r9//3Ts2DHXX399fWcEAACARc48nVJ+11135frrr8/WW2+dvn37Zosttkj37t3TuXPn/PWvf80BBxxQ3zkBAABgkTJPM9zjx49Pt27dknxzvfb48eOTfHO7sOHDh9dfOgAAAFhEzVPh7tatW0aNGpUkWX311XPzzTcn+Wbmu3Xr1vUWDgAAABZV81S4+/btm+effz5Jcsopp+TKK69MkyZNcuyxx+bEE0+s14AAAACwKJqna7iPO+64mv/ebrvt8tprr2XEiBFZZZVVsvbaa9dbOAAAAFhUzdUM90MPPZQePXpk0qRJtcY7d+6cbbfdNvvuu2/+/e9/12tAAAAAWBTNVeG+9NJLc+ihh6Zly5Z1trVq1SqHHXZYLr744noLBwAAAIuquSrczz//fH70ox/NcvsOO+yQESNGzHcoAAAAWNTNVeH+6KOPstRSS81ye6NGjfLxxx/PdygAAABY1M1V4V5hhRXy0ksvzXL7Cy+8kA4dOsx3KAAAAFjUzVXh3nnnnXPGGWdk2rRpdbZ98cUXOeuss7LLLrvUWzgAAABYVM3VbcFOP/303H777Vl11VVz5JFHZrXVVkuSvPbaa7nyyitTVVWV0047rZCgAAAAsCiZq8Ldvn37PP744zn88MNz6qmnplQqJUkqKiqy44475sorr0z79u0LCQoAAACLkrkq3Mk399z+17/+lc8++yxvvfVWSqVSVllllSyzzDJF5AMAAIBF0lwX7hmWWWaZbLTRRvWZBQAAABYbc7VoGgAAADBnFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKEBZC/fAgQOzzjrrpGXLlmnZsmU23XTT3HvvveWMBAAAAPWirIV7xRVXzAUXXJARI0bkmWeeyTbbbJPddtstL7/8cjljAQAAwHxrVM4X33XXXWs9Pu+88zJw4MD897//zZprrlmmVAAAADD/ylq4v62qqiq33HJLPv/882y66aYz3Wf69OmZPn16zeNJkyYtqHgAAAAwV8peuF988cVsuummmTZtWpo3b5477rgjPXr0mOm+AwYMSP/+/RdwQgD4fl1OuafcEZY4717Qu9wRAGC2yr5K+WqrrZbnnnsuTz75ZA4//PD06dMnr7zyykz3PfXUUzNx4sSaj7Fjxy7gtAAAADBnyj7D3bhx43Tv3j1JsuGGG+bpp5/OZZddlquvvrrOvpWVlamsrFzQEQEAAGCulX2G+7uqq6trXacNAAAAi6KyznCfeuqp2WmnnbLSSitl8uTJufHGG/PII4/kvvvuK2csAAAAmG9lLdzjxo3LgQcemA8++CCtWrXKOuusk/vuuy/bb799OWMBAADAfCtr4b7uuuvK+fIAAABQmIXuGm4AAABYHCjcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAoQFkL94ABA7LRRhulRYsWadeuXXbfffe8/vrr5YwEAAAA9aKshfvRRx/NEUcckf/+97954IEH8tVXX2WHHXbI559/Xs5YAAAAMN8alfPFhw4dWuvx4MGD065du4wYMSJbbrllmVIBAADA/Ctr4f6uiRMnJknatGkz0+3Tp0/P9OnTax5PmjRpgeQCAACAubXQFO7q6uoce+yx6dmzZ9Zaa62Z7jNgwID0799/AScrTpdT7il3hCXOuxf0LncEAABgCbHQrFJ+xBFH5KWXXspNN900y31OPfXUTJw4seZj7NixCzAhAAAAzLmFYob7yCOPzN13353hw4dnxRVXnOV+lZWVqaysXIDJAAAAYN6UtXCXSqUcddRRueOOO/LII4+ka9eu5YwDAAAA9aashfuII47IjTfemH/84x9p0aJFPvzwwyRJq1at0rRp03JGAwAAgPlS1mu4Bw4cmIkTJ2brrbdOhw4daj7+/ve/lzMWAAAAzLeyn1IOAAAAi6OFZpVyAAAAWJwo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAAcpauIcPH55dd901HTt2TEVFRe68885yxgEAAIB6U9bC/fnnn2fdddfNlVdeWc4YAAAAUO8alfPFd9ppp+y0007ljAAAAACFKGvhnlvTp0/P9OnTax5PmjSpjGkAAABg1hapRdMGDBiQVq1a1Xx06tSp3JEAAABgphapwn3qqadm4sSJNR9jx44tdyQAAACYqUXqlPLKyspUVlaWOwYAAADM1iI1ww0AAACLirLOcE+ZMiVvvfVWzeNRo0blueeeS5s2bbLSSiuVMRkAAADMn7IW7meeeSa9evWqedyvX78kSZ8+fTJ48OAypQIAAID5V9bCvfXWW6dUKpUzAgAAABTCNdwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAK0KjcAYDFW5dT7il3hCXOuxf0LncEAABihhsAAAAKoXADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAoQKNyBwAAYOHX5ZR7yh1hifPuBb3LHQGYT2a4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEWisJ95ZVXpkuXLmnSpEl++MMf5qmnnip3JAAAAJgvZS/cf//739OvX7+cddZZGTlyZNZdd93suOOOGTduXLmjAQAAwDwre+G++OKLc+ihh6Zv377p0aNHrrrqqiy99NL585//XO5oAAAAMM8alfPFv/zyy4wYMSKnnnpqzViDBg2y3Xbb5Yknnqiz//Tp0zN9+vSaxxMnTkySTJo0qfiwBaiePrXcEZY4i+qxsihznC94jvMFz3G+4DnOFzzH+YLnOF/wHOcL3qJ4nM/IXCqVZrtvWQv3J598kqqqqrRv377WePv27fPaa6/V2X/AgAHp379/nfFOnToVlpHFS6tLy50Aiuc4Z0ngOGdJ4DhnSbAoH+eTJ09Oq1atvnefshbuuXXqqaemX79+NY+rq6szfvz4LLvssqmoqChjsiXHpEmT0qlTp4wdOzYtW7YsdxwohOOcJYHjnCWB45wlgeN8wSuVSpk8eXI6duw4233LWriXW265NGzYMB999FGt8Y8++ijLL798nf0rKytTWVlZa6x169ZFRmQWWrZs6QeaxZ7jnCWB45wlgeOcJYHjfMGa3cz2DGVdNK1x48bZcMMN8+CDD9aMVVdX58EHH8ymm25axmQAAAAwf8p+Snm/fv3Sp0+f/OAHP8jGG2+cSy+9NJ9//nn69u1b7mgAAAAwz8peuH/605/m448/zplnnpkPP/ww6623XoYOHVpnITUWDpWVlTnrrLPqnNoPixPHOUsCxzlLAsc5SwLH+cKtojQna5kDAAAAc6Ws13ADAADA4krhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuZuvggw/O5MmT64x//vnnOfjgg8uQCADg+3355Zf53//+lzFjxtT6gMWB388XHW4Lxmw1bNgwH3zwQdq1a1dr/JNPPsnyyy+fr7/+ukzJAJhbw4cPz2abbZZGjRrVGv/666/z+OOPZ8sttyxTMqgfb775Zg4++OA8/vjjtcZLpVIqKipSVVVVpmRQf/x+vuhoNPtdWFJNmjQppVIppVIpkydPTpMmTWq2VVVV5V//+ledH3JYlFVVVWXw4MF58MEHM27cuFRXV9fa/tBDD5UpGdSfXr16zfSXtIkTJ6ZXr17KCIu8gw46KI0aNcrdd9+dDh06pKKiotyRoN74/XzRo3AzS61bt05FRUUqKiqy6qqr1tleUVGR/v37lyEZFOOYY47J4MGD07t376y11lp+SWOxNGOW77s+/fTTNGvWrAyJoH4999xzGTFiRFZfffVyR4F65/fzRY/CzSw9/PDDKZVK2WabbXLbbbelTZs2NdsaN26czp07p2PHjmVMCPXrpptuys0335ydd9653FGg3u25555Jvvll7KCDDkplZWXNtqqqqrzwwgvZbLPNyhUP6k2PHj3yySeflDsGFMLv54sehZtZ2mqrrZIko0aNykorrWS2j8Ve48aN071793LHgEK0atUqyTcz3C1atEjTpk1rtjVu3DibbLJJDj300HLFg/kyadKkmv++8MILc9JJJ+X888/P2muvnaWWWqrWvi1btlzQ8aDe+P180WPRNGZr6NChad68eTbffPMkyZVXXplrr702PXr0yJVXXpllllmmzAmhflx00UV55513csUVV/gfGIut/v3754QTTnD6OIuVBg0a1Pp3e2aXTlg0jcWJ388XHQo3s7X22mvnwgsvzM4775wXX3wxP/jBD3L88cfn4Ycfzuqrr55BgwaVOyLMsxmn2c7w0EMPpU2bNllzzTXrzIrcfvvtCzIaFOKLL75IqVTK0ksvnSQZPXp07rjjjvTo0SM77LBDmdPBvHn00UfneN8ZM4SwKPP7+aLDKeXM1qhRo9KjR48kyW233ZZdd901559/fkaOHOlaVxZ5M06znWGPPfYoUxJYMHbbbbfsueee+b//+79MmDAhG2+8cRo3bpxPPvkkF198cQ4//PByR4S59u0SPWbMmHTq1GmmM9xjx45d0NGgEH4/X3Qo3MxW48aNM3Xq1CTJsGHDcuCBByZJ2rRpU+uaKVgU+QswS5qRI0fmkksuSZLceuutWX755fPss8/mtttuy5lnnqlws8jr2rXrTG99N378+HTt2tUp5SwW/H6+6GhQ7gAs/DbffPP069cv5557bp566qn07t07SfLGG29kxRVXLHM6qD/bbLNNJkyYUGd80qRJ2WabbRZ8ICjA1KlT06JFiyTJ/fffnz333DMNGjTIJptsktGjR5c5Hcy/Wd36bsqUKbXuWQyLMr+fLzrMcDNbV1xxRX71q1/l1ltvzcCBA7PCCiskSe6999786Ec/KnM6qD+PPPJIvvzyyzrj06ZNy7///e8yJIL6171799x5553ZY489ct999+W4445LkowbN87qzSzS+vXrl+SbW9+dccYZNesUJN/c+u7JJ5/MeuutV6Z0UL/8fr7osGgasMR74YUXkiTrrbdezaJpM1RVVWXo0KG5+uqr8+6775YpIdSfW2+9Nfvvv3+qqqqy7bbb5v7770+SDBgwIMOHD8+9995b5oQwb3r16pXkmwXUNt100zRu3LhmW+PGjdOlS5eccMIJWWWVVcoVEVgCKdzMkbfffjuDBg3K22+/ncsuuyzt2rXLvffem5VWWilrrrlmuePBfPn27WRm9k9i06ZNc/nll+fggw9e0NGgEB9++GE++OCDrLvuumnQ4Jury5566qm0bNkyq6++epnTwfzp27dvLrvsMmdssMSYNm1anTP0HP8LD4Wb2Xr00Uez0047pWfPnhk+fHheffXVdOvWLRdccEGeeeaZ3HrrreWOCPNl9OjRKZVK6datW5566qm0bdu2Zlvjxo3Trl27NGzYsIwJAQD+f59//nlOPvnk3Hzzzfn000/rbLc44MLDNdzM1imnnJLf/OY36devX81CO8k3C0xdccUVZUwG9aNz58756quv0qdPnyy77LLp3LlzuSNBoZ555pncfPPNGTNmTJ1ZEfebZ1E3u0UuH3rooQWUBIpz0kkn5eGHH87AgQPz85//PFdeeWXee++9XH311bngggvKHY9vsUo5s/Xiiy/O9N7E7dq1yyeffFKGRFD/llpqqdxxxx3ljgGFu+mmm7LZZpvl1VdfzR133JGvvvoqL7/8ch566KE696WHRdG6665b66NHjx758ssvM3LkyKy99trljgf14q677sof//jH7LXXXmnUqFG22GKLnH766Tn//PPz17/+tdzx+BYz3MxW69at88EHH6Rr1661xp999tmaFRFhcbDbbrvlzjvvrFm1GRZH559/fi655JIcccQRadGiRS677LJ07do1hx12WDp06FDueDDfZtxn/rvOPvvsTJkyZQGngWKMHz8+3bp1S/LN9drjx49P8s3twg4//PByRuM7FG5ma999983JJ5+cW265JRUVFamurs5jjz2WE044IQceeGC540G9WWWVVXLOOefksccey4YbbphmzZrV2n700UeXKRnUn7fffrvmfq2NGzfO559/noqKihx33HHZZptt0r9//zInhGL87Gc/y8Ybb5zf//735Y4C861bt24ZNWpUVlpppay++uq5+eabs/HGG+euu+5K69atyx2Pb1G4ma3zzz8/RxxxRDp16pSqqqr06NEjVVVV2X///XP66aeXOx7Um+uuuy6tW7fOiBEjMmLEiFrbKioqFG4WC8sss0wmT56cJFlhhRXy0ksvZe21186ECRMyderUMqeD4jzxxBNp0qRJuWNAvejbt2+ef/75bLXVVjnllFOy66675oorrshXX32Viy++uNzx+BarlDNL06dPT2VlZc3jMWPG5KWXXsqUKVOy/vrru48lwCJo//33zw9+8IP069cv5557bi6//PLstttueeCBB7LBBhtYNI1F3p577lnrcalUygcffJBnnnkmZ5xxRs4666wyJYPijB49OiNGjEj37t2zzjrrlDsO36JwM0tNmjTJpptuml69emWbbbbJD3/4wyy11FLljgULxIx/GmfcnxsWF+PHj8+0adPSsWPHVFdX57e//W0ef/zxrLLKKjn99NOzzDLLlDsizJe+ffvWetygQYO0bds222yzTXbYYYcypYLiTJs2zdkbCzGFm1kaPHhwHnnkkTzyyCMZM2ZMmjZtms022yzbbLNNevXqlY022si9iVnsXH/99fnd736XN998M0my6qqr5sQTT8zPf/7zMicDAPhGVVVVzj///Fx11VX56KOP8sYbb6Rbt24544wz0qVLl/ziF78od0T+H7cFY5YOOuigDB48OO+++27eeuutXH755enYsWOuuuqq9OzZM8sss0zNwjuwOLj44otz+OGHZ+edd87NN9+cm2++OT/60Y/yf//3f7Nc9RYWRW+//XZOP/307Lfffhk3blyS5N57783LL79c5mRQf0aMGJG//OUv+ctf/pJnn3223HGgXp133nkZPHhwfvvb36Zx48Y142uttVb+9Kc/lTEZ32WGm7k2atSoXHfddbn88sszZcqUVFVVlTsS1IuuXbumf//+dVbfHzJkSM4+++yMGjWqTMmg/jz66KPZaaed0rNnzwwfPjyvvvpqunXrlgsuuCDPPPNMbr311nJHhPkybty47LvvvnnkkUdqVmueMGFCevXqlZtuuilt27Ytb0CoB927d8/VV1+dbbfdNi1atMjzzz+fbt265bXXXsumm26azz77rNwR+X/McDNbY8aMyZAhQ9K3b9907do166yzTp588smccMIJefjhh8sdD+rNBx98kM0226zO+GabbZYPPvigDImg/p1yyin5zW9+kwceeKDWrMg222yT//73v2VMBvXjqKOOyuTJk/Pyyy9n/PjxGT9+fF566aVMmjTJ3SZYbLz33nvp3r17nfHq6up89dVXZUjErLgtGLN08MEH55FHHsn48ePTs2fPbLHFFvnlL3+ZjTbaKI0aOXRY/HTv3j0333xzfv3rX9ca//vf/25VfhYbL774Ym688cY64+3atcsnn3xShkRQv4YOHZphw4ZljTXWqBnr0aNHrrzySoumsdjo0aNH/v3vf6dz5861xm+99dasv/76ZUrFzGhNzNLgwYOz0kor5bTTTsu2226b9ddf34rNLNb69++fn/70pxk+fHh69uyZJHnsscfy4IMP5uabby5zOqgfrVu3zgcffJCuXbvWGn/22WezwgorlCkV1J/q6uqZ3lVlqaWWSnV1dRkSQf0788wz06dPn7z33nuprq7O7bffntdffz3XX3997r777nLH41ucUs4svfrqqznllFMyYsSI7LzzzmnTpk123XXX/P73v88zzzzjf1osdvbaa688+eSTWXbZZXPnnXfmzjvvzHLLLZennnoqe+yxR7njQb3Yd999c/LJJ+fDDz9MRUVFqqur89hjj+WEE06os34BLIq22WabHHPMMXn//fdrxt57770cd9xx2XbbbcuYDOrPbrvtlrvuuivDhg1Ls2bNcuaZZ+bVV1/NXXfdle23377c8fgWi6Yxx1555ZU8+uijefjhhzN8+PBMmzYtm2++ub+iASxCvvzyyxxxxBEZPHhwqqqq0qhRo1RVVWX//ffP4MGD3e6RRd7YsWPz4x//OC+//HI6deqU5Jv1aNZee+3885//zIorrljmhMCSROFmrnz00Ud5+OGH8/DDD+emm26ySjmLhQYNGsz2comKiop8/fXXCygRFG/MmDF56aWXMmXKlKy//vrWKWCxUiqVMmzYsLz22mtJvrne1ew2i6Mvv/wy48aNq3Pm6UorrVSmRHyXws33GjduXB555JE8/PDDeeSRR/LGG2+kcePG2XjjjdOrV6/06tUrW221Vbljwnz5xz/+McttTzzxRP7whz+kuro606ZNW4CpAJgbTzzxRD799NPssssuNWNDhgzJWWedlalTp2b33XfP5ZdfnsrKyjKmhPrx5ptv5uCDD87jjz9ea7xUKqWiosKE2ELEomnM0hprrJE33ngjjRo1ykYbbZS99947W2+9dXr27JkmTZqUOx7Um912263O2Ouvv55TTjkld911Vw444ICcc845ZUgG9a+qqiqDBw/Ogw8+ONNZkYceeqhMyWD+nHPOOdl6661rCveLL76YQw89NH369Mkaa6yR3/3ud+nYsWPOPvvs8gaFenDQQQelUaNGufvuu9OhQwcLGy/EFG5maffdd0+vXr2y+eabZ+mlly53HFgg3n///Zx11lkZMmRIdtxxxzz33HNZa621yh0L6s0xxxyTwYMHp3fv3llrrbX8ksZi47nnnsu5555b8/imm27KxhtvnGuvvTZJ0qlTp5x11lkKN4uF5557LiNGjMjqq69e7ijMhsLNLA0YMKDOWO/evfOnP/0pHTp0KEMiKM7EiRNz/vnn5/LLL896662XBx98MFtssUW5Y0G9u+mmm3LzzTdn5513LncUqFefffZZ2rdvX/P40UcfzU477VTzeKONNsrYsWPLEQ3qXY8ePfLJJ5+UOwZzwG3BmCvDhw/PF198Ue4YUK9++9vfplu3brn77rvzt7/9LY8//riyzWKrcePG6d69e7ljQL1r3759Ro0aleSbhaRGjhyZTTbZpGb75MmTZ3p/blhUTJo0qebjwgsvzEknnZRHHnkkn376aa1tkyZNKndUvsWiacyVFi1a5Pnnn0+3bt3KHQXqTYMGDdK0adNst91233tLpNtvv30BpoJiXHTRRXnnnXdyxRVXOJ2cxcrhhx+e559/PhdeeGHuvPPODBkyJO+//34aN26cJPnrX/+aSy+9NE8//XSZk8K8+e5dVWYskPZtFk1b+DilnLnSuXNnfx1msXPggQcqHizW9txzz1qPH3roodx7771Zc8016/yb7g9LLKrOPffc7Lnnntlqq63SvHnzDBkypKZsJ8mf//zn7LDDDmVMCPPn4YcfLncE5oEZbgBYzPXt23eO9x00aFCBSaB4EydOTPPmzeucsTR+/Pg0b968VgmHRdWYMWPSqVOnmc5wjx071n24FyIKN3Pk3//+d66++uq88847ueWWW7LCCivkhhtuSNeuXbP55puXOx4AACwxGjZsmA8++CDt2rWrNf7pp5+mXbt2TilfiFg0jdm67bbbsuOOO6Zp06YZOXJkpk+fnuT/X9UZgEXHNttskwkTJtQZnzRpUrbZZpsFHwiAuTaz67eTZMqUKWnSpEkZEjErZriZrfXXXz/HHXdcDjzwwFqLpj377LPZaaed8uGHH5Y7IgBzqEGDBvnwww/rzIqMGzcuK6ywQr766qsyJQNgdvr165ckueyyy3LooYdm6aWXrtlWVVWVJ598Mg0bNsxjjz1Wroh8h0XTmK3XX389W265ZZ3xVq1azXSWBICFzwsvvFDz36+88kqtP5ZWVVVl6NChWWGFFcoRDYA59Oyzzyb5Zob7xRdfrLUmQePGjbPuuuvmhBNOKFc8ZkLhZraWX375vPXWW+nSpUut8f/85z9uDwawiFhvvfVSUVGRioqKmZ463rRp01x++eVlSAbAnJqxUnnfvn1z2WWXpWXLlmVOxOwo3MzWoYcemmOOOSZ//vOfU1FRkffffz9PPPFETjjhhJxxxhnljgfAHBg1alRKpVK6deuWp556Km3btq3Z1rhx47Rr1+5770MPwMLDHSUWHQo3s3XKKaekuro62267baZOnZott9wylZWVOeGEE3LUUUeVOx4Ac6Bz58756quv0qdPnyy77LLp3LlzuSMBMI9mt8jlQw89tICSMDsWTeN7VVVV5bHHHss666yTpZdeOm+99VamTJmSHj16pHnz5uWOB8Bcat26dZ599tl07dq13FEAmEfHHXdcrcdfffVVnnvuubz00kvp06dPLrvssjIl47sUbmarSZMmefXVV/1yBrAY6NOnT9Zbb706v6wBsOg7++yzM2XKlPz+978vdxT+H6eUM1trrbVW3nnnHYUbYDGwyiqr5Jxzzsljjz2WDTfcMM2aNau1/eijjy5TMgDm189+9rNsvPHGCvdCxAw3szV06NCceuqpOffcc2f6y5nVEQEWHd/3x9OKioq88847CzANAPXphhtuyMknn5z333+/3FH4fxRuZqtBgwY1/11RUVHz36VSKRUVFamqqipHLAAAWCLtueeetR6XSqV88MEHeeaZZ3LGGWfkrLPOKlMyvssp5czWjPv9AbB4mfE392//MRWAhV+rVq1qPW7QoEFWW221nHPOOdlhhx3KlIqZMcPNbI0ZMyadOnWq8wtZqVTK2LFjs9JKK5UpGQDz4vrrr8/vfve7vPnmm0mSVVddNSeeeGJ+/vOflzkZACxezHAzW127ds0HH3yQdu3a1RofP358unbt6pRygEXIxRdfnDPOOCNHHnlkevbsmST5z3/+k//7v//LJ598YvVygEXIiBEj8uqrryZJ1lxzzay//vplTsR3meFmtho0aJCPPvoobdu2rTU+evTo9OjRI59//nmZkgEwt7p27Zr+/fvnwAMPrDU+ZMiQnH322Rk1alSZkgEwp8aNG5d99903jzzySFq3bp0kmTBhQnr16pWbbrqpzu/tlI8ZbmapX79+Sb65tu+MM87I0ksvXbOtqqoqTz75ZNZbb70ypQNgXnzwwQfZbLPN6oxvttlm+eCDD8qQCIC5ddRRR2Xy5Ml5+eWXs8YaayRJXnnllfTp0ydHH310/va3v5U5ITMo3MzSs88+m+Sba7VffPHFNG7cuGZb48aNs+666+aEE04oVzwA5kH37t1z880359e//nWt8b///e9ZZZVVypQKgLkxdOjQDBs2rKZsJ0mPHj1y5ZVXWjRtIaNwM0szVifv27dvLrvsMvfbBlgM9O/fPz/96U8zfPjwmmu4H3vssTz44IO5+eaby5wOgDlRXV2dpZZaqs74Ukstlerq6jIkYlZcww0AS5gRI0bk4osvzmuvvZYkWWONNXL88cdbbAdgEbHbbrtlwoQJ+dvf/paOHTsmSd57770ccMABWWaZZXLHHXeUOSEzKNzM1ueff54LLrggDz74YMaNG1fnr2bvvPNOmZIBAMCSZ+zYsfnxj3+cl19+OZ06dUryza1811577fzzn//MiiuuWOaEzOCUcmbrkEMOyaOPPpqf//zn6dChQ537cQOw8GvQoMFs//2uqKjI119/vYASATCvOnXqlJEjR2bYsGE1Zyv16NEj2267bZmT8V1muJmt1q1b55577qm51g+ARc8//vGPWW574okn8oc//CHV1dWZNm3aAkwFwNx44okn8umnn2aXXXapGRsyZEjOOuusTJ06Nbvvvnsuv/zyVFZWljEl32aGm9laZpll0qZNm3LHAGA+7LbbbnXGXn/99Zxyyim56667csABB+Scc84pQzIA5tQ555yTrbfeuqZwv/jiizn00EPTp0+frLHGGvnd736Xjh075uyzzy5vUGo0KHcAFn7nnntuzjzzzEydOrXcUQCoB++//34OPfTQrL322vn666/z3HPPZciQIencuXO5owHwPZ577rlap43fdNNN2XjjjXPttdemX79++cMf/uCOEwsZM9zM1kUXXZS333477du3T5cuXercgmDkyJFlSgbA3Jg4cWLOP//8XH755VlvvfXy4IMPZosttih3LADm0GeffZb27dvXPH700Uez00471TzeaKONMnbs2HJEYxYUbmZr9913L3cEAObTb3/721x44YVZfvnl87e//W2mp5gDsHBr3759Ro0alU6dOuXLL7/MyJEj079//5rtkydPnun9uSkfi6YBwBKgQYMGadq0abbbbrs0bNhwlvvdfvvtCzAVAHPj8MMPz/PPP58LL7wwd955Z4YMGZL3338/jRs3TpL89a9/zaWXXpqnn366zEmZwQw3c2TChAm59dZb8/bbb+fEE09MmzZtMnLkyLRv3z4rrLBCueMBMBsHHnig2zoCLOLOPffc7Lnnntlqq63SvHnzDBkypKZsJ8mf//zn7LDDDmVMyHeZ4Wa2XnjhhWy33XZp1apV3n333bz++uvp1q1bTj/99IwZMybXX399uSMCAMASY+LEiWnevHmdM5bGjx+f5s2b1yrhlJdVypmtfv365aCDDsqbb76ZJk2a1IzvvPPOGT58eBmTAQDAkqdVq1YzvTyoTZs2yvZCRuFmtp5++ukcdthhdcZXWGGFfPjhh2VIBAAAsPBTuJmtysrKTJo0qc74G2+8kbZt25YhEQAAwMJP4Wa2fvzjH+ecc87JV199lSSpqKjImDFjcvLJJ2evvfYqczoAAICFk0XTmK2JEydm7733zjPPPJPJkyenY8eO+fDDD7PJJpvk3nvvTbNmzcodEQAAYKGjcDPHHnvssTz//POZMmVKNthgg2y33XbljgQAALDQUriZpYceeihHHnlk/vvf/6Zly5a1tk2cODGbbbZZrrrqqmyxxRZlSggAALDwcg03s3TppZfm0EMPrVO2k29uRXDYYYfl4osvLkMyAACAhZ/CzSw9//zz+dGPfjTL7TvssENGjBixABMBAAAsOhRuZumjjz7KUkstNcvtjRo1yscff7wAEwEAACw6FG5maYUVVshLL700y+0vvPBCOnTosAATAQAALDoUbmZp5513zhlnnJFp06bV2fbFF1/krLPOyi677FKGZAAAAAs/q5QzSx999FE22GCDNGzYMEceeWRWW221JMlrr72WK6+8MlVVVRk5cmTat29f5qQAAAALH4Wb7zV69Ogcfvjhue+++zLjUKmoqMiOO+6YK6+8Ml27di1zQgAAgIWTws0c+eyzz/LWW2+lVCpllVVWyTLLLFPuSAAAAAs1hRsAAAAKYNE0AAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGgCXQ4MGD07p161pjt99+e1q3bp2TTjopjz/+ePr06VOecACwmFC4AWAhc9BBB6WioiIVFRVZaqml0rVr15x00kmZNm1avb3GT3/607zxxhu1xm655ZbceOON+eyzz/Kzn/0sv/jFL+rt9QBgSeS2YACwkDnooIPy0UcfZdCgQfnqq68yYsSI9OnTJ//3f/+XCy+8sNzxAIA5ZIYbABZClZWVWX755dOpU6fsvvvu2W677fLAAw8kSaqrqzNgwIB07do1TZs2zbrrrptbb7211vP/+c9/ZpVVVkmTJk3Sq1evDBkyJBUVFZkwYUKSmZ9SPnDgwKy88spp3LhxVltttdxwww21tk+YMCGHHHJI2rZtm5YtW2abbbbJ888/X7P9+eefT69evdKiRYu0bNkyG264YZ555pn6/+IAwCJC4QaAhdxLL72Uxx9/PI0bN06SDBgwINdff32uuuqqvPzyyznuuOPys5/9LI8++miSZNSoUdl7772z++675/nnn89hhx2W00477Xtf44477sgxxxyT448/Pi+99FIOO+yw9O3bNw8//HDNPvvss0/GjRuXe++9NyNGjMgGG2yQbbfdNuPHj0+SHHDAAVlxxRXz9NNPZ8SIETnllFOy1FJLFfRVAYCFn1PKAWAhc9BBB+Uvf/lLmjRpkq+//jrTp09PgwYNcvPNN2eXXXZJmzZtMmzYsGy66aY1zznkkEMyderU3HjjjTnllFNyzz335MUXX6zZfvrpp+e8887LZ599ltatW2fw4ME59thja2a8e/bsmTXXXDPXXHNNzXN+8pOf5PPPP88999yT//znP+ndu3fGjRuXysrKmn26d++ek046Kb/85S/TsmXLXH755RZbA4D/p1G5AwAAdfXq1SsDBw7M559/nksuuSSNGjXKXnvtlZdffjlTp07N9ttvX2v/L7/8Muuvv36S5PXXX89GG21Ua/vGG2/8va/36quv5pe//GWtsZ49e+ayyy5L8s3p4lOmTMmyyy5ba58vvvgib7/9dpKkX79+OeSQQ3LDDTdku+22yz777JOVV1557t88ACwmFG4AWAg1a9Ys3bt3T5L8+c9/zrrrrpvrrrsua621VpLknnvuyQorrFDrOd+eea5vU6ZMSYcOHfLII4/U2TbjWvCzzz47+++/f+65557ce++9Oeuss3LTTTdljz32KCwXACzMFG4AWMg1aNAgv/71r9OvX7+88cYbqayszJgxY7LVVlvNdP/VVlst//rXv2qNPf3009/7GmussUYee+yxWqeDP/bYY+nRo0eSZIMNNsiHH36YRo0apUuXLrP8PKuuumpWXXXVHHfccdlvv/0yaNAghRuAJZZF0wBgEbDPPvukYcOGufrqq3PCCSfkuOOOy5AhQ/L2229n5MiRufzyyzNkyJAkyWGHHZbXXnstJ598ct54443cfPPNGTx4cJKkoqJipp//xBNPzODBgzNw4MC8+eabufjii3P77bfnhBNOSJJst9122XTTTbP77rvn/vvvz7vvvpvHH388p512Wp555pl88cUXOfLII/PII49k9OjReeyxx/L0009njTXWWCBfHwBYGJnhBoBFQKNGjXLkkUfmt7/9bUaNGpW2bdtmwIABeeedd9K6detssMEG+fWvf50k6dq1a2699dYcf/zxueyyy7LpppvmtNNOy+GHHz7L08533333XHbZZfn973+fY445Jl27ds2gQYOy9dZbJ/mmqP/rX//Kaaedlr59++bjjz/O8ssvny233DLt27dPw4YN8+mnn+bAAw/MRx99lOWWWy577rln+vfvv6C+RACw0LFKOQAsAc4777xcddVVGTt2bLmjAMASwww3ACyG/vjHP2ajjTbKsssum8ceeyy/+93vcuSRR5Y7FgAsURRuAFgMvfnmm/nNb36T8ePHZ6WVVsrxxx+fU089tdyxAGCJ4pRyAAAAKIBVygEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABfj/AAyTZ9ThdLRYAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"regiao\"])[\"casos_dengue\"].sum().plot(kind='bar')\n",
+ "plt.title(\"Casos de Dengue nas Regiões do Brasil\")\n",
+ "plt.xlabel(\"Regiões\")\n",
+ "plt.ylabel(\"Casos\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "A região do Brasil com mais casos de dengue é a região Sudeste, talvez por ser a mais populosa."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Casos de Dengue')"
+ ]
+ },
+ "execution_count": 21,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+kAAAM/CAYAAACtWpNNAAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAADZNUlEQVR4nOzdd3QUZd/G8WshIQklhRJqCAkgHUKVIh1BQKqPBVSqiEpTFAEVUZQiSBMQRLo+CojSlS6gFKVI7wESVKoQAqEn9/sHJ/uyJECi2dl5zPdzzh7d2dmdX7ax19zNYYwxAgAAAAAAHpfB0wUAAAAAAIDbCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAgFSrU6eO6tSp4+kydPz4cTkcDs2YMcPTpbiVw+HQe++957w+Y8YMORwOHT9+3GM1Ie2tXbtWDodDa9eu9XQpAAAPIqQDgI0khq97XTZv3pzix9q3b5/ee+89glwqJIb+Oy/+/v6KiIjQ+PHjFR8f7+kSgRS7+/3s7e2tnDlzqnr16nrrrbcUHR3t6RIBAMnw8nQBAICkBg0apLCwsCTbixQpkuLH2Ldvn95//33VqVNHhQoVSsPq/v3atGmjJk2aSJIuXryo77//Xj169FBUVJRGjBhheT1Xr16Vlxf/ZOPvSXw/JyQk6MKFC9qyZYvGjBmjsWPHaurUqXrmmWc8XSIA4A78iw8ANtS4cWNVqlTJ02WkWxUqVNBzzz3nvP7KK6/o4Ycf1ldffXXfkG6M0bVr1+Tn55em9fj6+qbp4yF9ufv9LElRUVFq2LCh2rdvrxIlSqhcuXIeqg4AcDe6uwPA/6jZs2erYsWKypYtm/z9/VWmTBmNHTtW0u1u808++aQkqW7dus7uroljXRcuXKimTZsqX7588vHxUeHChfXBBx8k25178uTJKly4sPz8/FSlShX99NNPydZz5swZde7cWblz55avr6/KlSunmTNnpqru+4mJiVGHDh0UEBCgwMBAtW/fXjExMcnuu2bNGtWsWVNZsmRRYGCgWrRoof379z/wGPficDiUO3fuJK3ZhQoV0uOPP67ly5erUqVK8vPz02effSZJmj59uurVq6fg4GD5+PioZMmSmjhxYpLH3rp1qxo1aqScOXPKz89PYWFh6tSpU5Lj3zkmPTUOHDig//znP8qePbt8fX1VqVIlLVq0KEX3TclrFRMTo1dffVUhISHy8fFRkSJF9NFHHykhIcG5z73GWic3p8CpU6fUsWNHFShQQD4+PsqbN69atGiRomEbBw4c0FNPPaVcuXLJz89PxYoV09tvv+28PSoqSq+88oqKFSsmPz8/5ciRQ08++WSyj3306FE9+eSTyp49uzJnzqyqVatq6dKlSfYbN26cSpUqpcyZMysoKEiVKlXSV1999cBaf//9d7Vs2VJZsmRRcHCwXnvtNV2/fj3ZfX/55Rc99thjCggIUObMmVW7dm1t2LDhgce4n9DQUM2YMUM3btzQ8OHDXW5LyWua+Np9/PHHzu8IHx8fVa5cWVu2bElyvG+++UYlS5aUr6+vSpcurfnz56tDhw4uvXxS8z6R/tl7GwDsjJZ0ALChixcv6ty5cy7bHA6HcuTIIUlauXKl2rRpo/r16+ujjz6SJO3fv18bNmxQr169VKtWLfXs2VOffPKJ3nrrLZUoUUKSnP+dMWOGsmbNqt69eytr1qxas2aN3n33XcXGxrq0FE+dOlVdu3ZV9erV9eqrr+ro0aNq3ry5smfPrpCQEOd+V69eVZ06dXTkyBF1795dYWFh+uabb9ShQwfFxMSoV69eKar7XowxatGihX7++We99NJLKlGihObPn6/27dsn2XfVqlVq3LixwsPD9d577+nq1asaN26catSooe3bt6eo6/+VK1ecz39sbKx++OEHLVu2TP3790+y78GDB9WmTRt17dpVXbp0UbFixSRJEydOVKlSpdS8eXN5eXlp8eLFeuWVV5SQkKBu3bpJun1io2HDhsqVK5f69eunwMBAHT9+XN99990Da0yJvXv3qkaNGsqfP7/69eunLFmyaO7cuWrZsqW+/fZbtWrV6p73TclrdeXKFdWuXVt//PGHunbtqoIFC2rjxo3q37+/Tp48qTFjxqS65ieeeEJ79+5Vjx49VKhQIZ05c0YrV65UdHT0fV+7Xbt2qWbNmvL29taLL76oQoUKKTIyUosXL9bgwYMlSVu2bNHGjRv1zDPPqECBAjp+/LgmTpyoOnXqaN++fcqcObMk6fTp06pevbquXLminj17KkeOHJo5c6aaN2+uefPmOZ+3zz//XD179tR//vMf9erVS9euXdOuXbv0yy+/qG3btves9erVq6pfv76io6PVs2dP5cuXT1988YXWrFmTZN81a9aocePGqlixogYOHKgMGTI4TwD99NNPqlKlSqqf40TVqlVT4cKFtXLlSue21L6mX331lS5duqSuXbvK4XBo+PDhat26tY4ePSpvb29J0tKlS/X000+rTJkyGjp0qC5cuKDOnTsrf/78f7v2f/LeBgDbMwAA25g+fbqRlOzFx8fHuV+vXr2Mv7+/uXXr1j0f65tvvjGSzI8//pjktitXriTZ1rVrV5M5c2Zz7do1Y4wxN27cMMHBwSYiIsJcv37dud/kyZONJFO7dm3ntjFjxhhJ5ssvv3Ruu3HjhqlWrZrJmjWriY2NTXHdyVmwYIGRZIYPH+7cduvWLVOzZk0jyUyfPt25PSIiwgQHB5u//vrLuW3nzp0mQ4YMpl27dvc9zrFjx+75/L/88ssmISHBZf/Q0FAjySxbtizJYyX3HDdq1MiEh4c7r8+fP99IMlu2bLlvXZLMwIEDndcT3yfHjh277/3q169vypQp43xNjTEmISHBVK9e3RQtWvS+903Ja/XBBx+YLFmymEOHDrls79evn8mYMaOJjo42xhjz448/JvteTHy+E1+/CxcuGElmxIgR960tObVq1TLZsmUzUVFRLtvvfM2Se002bdpkJJlZs2Y5t7366qtGkvnpp5+c2y5dumTCwsJMoUKFTHx8vDHGmBYtWphSpUqlutbEz8vcuXOd2+Li4kyRIkVcnqeEhARTtGhR06hRoyR/R1hYmHn00Ufve5zE5/d+z2eLFi2MJHPx4kVjTMpf08THzpEjhzl//rxzv4ULFxpJZvHixc5tZcqUMQUKFDCXLl1yblu7dq2RZEJDQ53bUvo+MeafvbcBwO7o7g4ANjRhwgStXLnS5fLDDz84bw8MDFRcXJxLC1hq3Dlm+tKlSzp37pxq1qypK1eu6MCBA5Jud8M+c+aMXnrpJWXKlMm5f2KX8zt9//33ypMnj9q0aePc5u3trZ49e+ry5ctat27dP6r7+++/l5eXl15++WXntowZM6pHjx4u+508eVI7duxQhw4dlD17duf2smXL6tFHH9X333+fouO9+OKLzuf922+/Vbdu3fTZZ5+pd+/eSfYNCwtTo0aNkmy/8zlO7BlRu3ZtHT16VBcvXpR0+/mQpCVLlujmzZspqi2lzp8/rzVr1uipp55yvsbnzp3TX3/9pUaNGunw4cP6448/7nn/lLxW33zzjWrWrKmgoCDn4587d04NGjRQfHy81q9fn6qa/fz8lClTJq1du1YXLlxI8f3Onj2r9evXq1OnTipYsKDLbQ6Hw+XxE928eVN//fWXihQposDAQG3fvt152/fff68qVarokUcecW7LmjWrXnzxRR0/flz79u2TdPs5+v3335Pt3n0/33//vfLmzav//Oc/zm2ZM2fWiy++6LLfjh07dPjwYbVt21Z//fWX8/mNi4tT/fr1tX79epcu6H9H1qxZJd3+HpBS/5o+/fTTCgoKcl6vWbOmpNvDBSTpzz//1O7du9WuXTvnsSSpdu3aKlOmzN+q+Z++twHA7tJ1SF+/fr2aNWumfPnyyeFwaMGCBal+DGOMPv74Yz300EPy8fFR/vz5nd3qAODvqlKliho0aOByqVu3rvP2V155RQ899JAaN26sAgUKqFOnTlq2bFmKH3/v3r1q1aqVAgIC5O/vr1y5cjknlkoMkFFRUZKkokWLutzX29tb4eHhLtuioqJUtGhRZcjg+s9KYvf6xMf6u3VHRUUpb968Lj/yJTm7lt+5X3LbE2tJDDgPUrRoUefz3rp1a40fP16vvPKKxowZo927d7vsm9ws/JK0YcMGNWjQwDkuPleuXHrrrbck/f9zXLt2bT3xxBN6//33lTNnTrVo0ULTp0+/59jk1Dhy5IiMMRowYIBy5crlchk4cKCk293t7yUlr9Xhw4e1bNmyJI/foEGDBz5+cnx8fPTRRx/phx9+UO7cuVWrVi0NHz5cp06duu/9EgNh6dKl77vf1atX9e677zrHWufMmVO5cuVSTEyM8zWRbr+P7vUeSrxdkvr27ausWbOqSpUqKlq0qLp165aiseJRUVEqUqSIywkEKen79vDhw5Kk9u3bJ3mOp0yZouvXr7vU/XdcvnxZkpQtWzbnMVPzmt59UiQxsCeeZEl8rpJbmSI1q1Xc6Z++twHA7tL1mPS4uDiVK1dOnTp1UuvWrf/WY/Tq1UsrVqzQxx9/rDJlyuj8+fM6f/58GlcKAK6Cg4O1Y8cOLV++XD/88IN++OEHTZ8+Xe3atUt2srY7xcTEqHbt2vL399egQYNUuHBh+fr6avv27erbt+8/bplzV92eVr9+fY0fP17r1693aQFMbib3yMhI1a9fX8WLF9eoUaMUEhKiTJky6fvvv9fo0aOdz7HD4dC8efO0efNmLV68WMuXL1enTp00cuRIbd68OclJidRIPMYbb7yRbEu/dP+QlJLXKiEhQY8++qjefPPNZB/joYcecv6dyUluosJXX31VzZo104IFC7R8+XINGDBAQ4cO1Zo1a1S+fPl7/8Ep0KNHD02fPl2vvvqqqlWrpoCAADkcDj3zzDN/631fokQJHTx4UEuWLNGyZcv07bff6tNPP9W7776r999//x/VKv3/azhixAhFREQku88/eY9I0p49exQcHCx/f3/nMVPymibKmDFjsvsZY1JdS0rfJ//0vQ0AdpeuQ3rjxo3VuHHje95+/fp1vf322/r6668VExOj0qVL66OPPlKdOnUk3Z5AZ+LEidqzZ4/z7Pe9WlQAIK1lypRJzZo1U7NmzZSQkKBXXnlFn332mQYMGJBsK12itWvX6q+//tJ3332nWrVqObcfO3bMZb/Q0FBJt1vW6tWr59x+8+ZNHTt2zGXJptDQUO3atUsJCQkuremJXecTHysldScnNDRUq1ev1uXLl11CycGDB5Ot+e7tibXkzJlTWbJkSfYYD3Lr1i1J/9/yeD+LFy/W9evXtWjRIpeWxh9//DHZ/atWraqqVatq8ODB+uqrr/Tss89q9uzZeuGFF/5WrZKcvR28vb2draCp9aDXqnDhwrp8+fIDHz+xdfXu2fgTW1nvVrhwYb3++ut6/fXXdfjwYUVERGjkyJH68ssvk90/8W/ds2fPfeuYN2+e2rdvr5EjRzq3Xbt2LUldoaGh93wPJd6eKEuWLHr66af19NNP68aNG2rdurUGDx6s/v3733PpvNDQUO3Zs0fGGJfP6d3HLFy4sCTJ39//b7+G97Np0yZFRka6LM+W0tc0pRKfqyNHjiS57e5tKX2fpMV7GwDsLF13d3+Q7t27a9OmTZo9e7Z27dqlJ598Uo899piz+9nixYsVHh6uJUuWKCwsTIUKFdILL7xASzoAt/vrr79crmfIkEFly5aVJGdX6cQwevcP3sSWrztbum7cuKFPP/3UZb9KlSopV65cmjRpkm7cuOHcPmPGjCSP2aRJE506dUpz5sxxbrt165bGjRunrFmzqnbt2imuOzlNmjTRrVu3XJYwi4+P17hx41z2y5s3ryIiIjRz5kyXGvfs2aMVK1aoSZMm9zzGgyxevFiSUrSedHLP8cWLFzV9+nSX/S5cuJCkxTGxxfSfdnkPDg5WnTp19Nlnn+nkyZNJbj979ux975+S1+qpp57Spk2btHz58iT3j4mJcZ7YCA0NVcaMGZOMZ777PXflyhVdu3bNZVvhwoWVLVu2+z4fuXLlUq1atTRt2jRFR0e73Hbn85sxY8Ykz/e4ceOStNQ2adJEv/76qzZt2uTcFhcXp8mTJ6tQoUIqWbKkpKTPUaZMmVSyZEkZY+47x0CTJk30559/at68eS5/++TJk132q1ixogoXLqyPP/442ZNDD3oN7ycqKkodOnRQpkyZ1KdPH+f2lL6mKZUvXz6VLl1as2bNcvkb1q1bl2ToSErfJ//0vQ0AdpeuW9LvJzo6WtOnT1d0dLTy5csn6Xa3qmXLlmn69OkaMmSIjh49qqioKH3zzTeaNWuW4uPj9dprr+k///lPssuoAEBK/fDDD85WuztVr15d4eHhzhOC9erVU4ECBRQVFaVx48YpIiLCOW42IiJCGTNm1EcffaSLFy/Kx8dH9erVU/Xq1RUUFKT27durZ8+ecjgc+uKLL5KEF29vb3344Yfq2rWr6tWrp6efflrHjh3T9OnTk4xJf/HFF/XZZ5+pQ4cO2rZtmwoVKqR58+Zpw4YNGjNmjHO8a0rqTk6zZs1Uo0YN9evXT8ePH1fJkiX13XffJTsed8SIEWrcuLGqVaumzp07O5dgCwgISPFa49u3b3e22l66dEmrV6/Wt99+q+rVq6thw4YPvH/Dhg2drdBdu3bV5cuX9fnnnys4ONglVMycOVOffvqpWrVqpcKFC+vSpUv6/PPP5e/v/49OKCSaMGGCHnnkEZUpU0ZdunRReHi4Tp8+rU2bNun333/Xzp0773nflLxWffr00aJFi/T444+rQ4cOqlixouLi4rR7927NmzdPx48fV86cORUQEKAnn3xS48aNk8PhUOHChbVkyZIk44YPHTqk+vXr66mnnlLJkiXl5eWl+fPn6/Tp03rmmWfu+7d+8skneuSRR1ShQgW9+OKLCgsL0/Hjx7V06VLt2LFDkvT444/riy++UEBAgEqWLKlNmzZp1apVzqUNE/Xr109ff/21GjdurJ49eyp79uyaOXOmjh07pm+//dbZW6Rhw4bKkyePatSoody5c2v//v0aP368mjZt6nzPJ6dLly4aP3682rVrp23btilv3rz64osvnEvAJcqQIYOmTJmixo0bq1SpUurYsaPy58+vP/74Qz/++KP8/f2dJ4/uJ/H9nJCQoJiYGG3ZskXffvut87OfePIlNa9pagwZMkQtWrRQjRo11LFjR124cEHjx49X6dKlXYJ7St8n0j97bwOA7XlmUnn7kWTmz5/vvL5kyRIjyWTJksXl4uXlZZ566iljjDFdunQxkszBgwed99u2bZuRZA4cOGD1nwDgX+B+S7DpjiWI5s2bZxo2bGiCg4NNpkyZTMGCBU3Xrl3NyZMnXR7v888/N+Hh4SZjxowuSxtt2LDBVK1a1fj5+Zl8+fKZN9980yxfvjzZ5Y8+/fRTExYWZnx8fEylSpXM+vXrTe3atV2WYDPGmNOnT5uOHTuanDlzmkyZMpkyZcq4LJmUmrqT89dff5nnn3/e+Pv7m4CAAPP888+b3377LcnSTMYYs2rVKlOjRg3j5+dn/P39TbNmzcy+ffseeIzklmDz8vIy4eHhpk+fPi5LSBlzewm2pk2bJvtYixYtMmXLljW+vr6mUKFC5qOPPjLTpk1zWTpt+/btpk2bNqZgwYLGx8fHBAcHm8cff9xs3brV5bH0N5dgM8aYyMhI065dO5MnTx7j7e1t8ufPbx5//HEzb968+94vpa/VpUuXTP/+/U2RIkVMpkyZTM6cOU316tXNxx9/bG7cuOHc7+zZs+aJJ54wmTNnNkFBQaZr165mz549Lq/fuXPnTLdu3Uzx4sVNlixZTEBAgHn44Yddliq7nz179phWrVqZwMBA4+vra4oVK2YGDBjgvP3ChQvO92jWrFlNo0aNzIEDB0xoaKhp3759kuftP//5j/OxqlSpYpYsWeKyz2effWZq1aplcuTIYXx8fEzhwoVNnz59nMuZ3U9UVJRp3ry5yZw5s8mZM6fp1auXWbZsWbKfwd9++820bt3aeZzQ0FDz1FNPmdWrV9/3GHe/n728vEz27NnNww8/bPr3759kubpEKXlN77e8293vV2OMmT17tilevLjx8fExpUuXNosWLTJPPPGEKV68uMt+KXmfJPq7720AsDuHMX9jZo9/IYfDofnz56tly5aSpDlz5ujZZ5/V3r17k0yKkjVrVuXJk0cDBw7UkCFDXLq0Xb16VZkzZ9aKFSv06KOPWvknAAAA/M+IiIhQrly5/vZSkgDwb0V393soX7684uPjdebMGeean3erUaOGbt26pcjISOfkLocOHZLkOqkMAABAenXz5k05HA55ef3/z861a9dq586d+vDDDz1YGQDYU7puSb98+bJzZtHy5ctr1KhRqlu3rrJnz66CBQvqueee04YNGzRy5EiVL19eZ8+e1erVq1W2bFk1bdpUCQkJqly5srJmzaoxY8YoISFB3bp1k7+/v1asWOHhvw4AAMDzjh8/rgYNGui5555Tvnz5dODAAU2aNEkBAQHas2dPkjkBACC9S9chfe3atapbt26S7e3bt9eMGTN08+ZNffjhh5o1a5b++OMP5cyZU1WrVtX777/vXCP3zz//VI8ePbRixQplyZJFjRs31siRI5U9e3ar/xwAAADbuXjxol588UVt2LBBZ8+eVZYsWVS/fn0NGzbM2RMRAPD/0nVIBwAAAADATlgnHQAAAAAAm0h3E8clJCTozz//VLZs2eRwODxdDgAAAADgX84Yo0uXLilfvnzKkOH+beXpLqT/+eefCgkJ8XQZAAAAAIB05sSJEypQoMB990l3IT1btmySbj85/v7+Hq4GAAAAAPBvFxsbq5CQEGcevZ90F9ITu7j7+/sT0gEAAAAAlknJkGsmjgMAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAm/DydAEAAAAAgPSnUL+l//gxjg9rmgaV2Ast6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgEx4N6UOHDlXlypWVLVs2BQcHq2XLljp48OB97zNjxgw5HA6Xi6+vr0UVAwAAAADgPh4N6evWrVO3bt20efNmrVy5Ujdv3lTDhg0VFxd33/v5+/vr5MmTzktUVJRFFQMAAAAA4D4end192bJlLtdnzJih4OBgbdu2TbVq1brn/RwOh/LkyePu8gAAAAAAsJStxqRfvHhRkpQ9e/b77nf58mWFhoYqJCRELVq00N69e++57/Xr1xUbG+tyAQAAAADAjmwT0hMSEvTqq6+qRo0aKl269D33K1asmKZNm6aFCxfqyy+/VEJCgqpXr67ff/892f2HDh2qgIAA5yUkJMRdfwIAAAAAAP+IwxhjPF2EJL388sv64Ycf9PPPP6tAgQIpvt/NmzdVokQJtWnTRh988EGS269fv67r1687r8fGxiokJEQXL16Uv79/mtQOAAAAAEidQv2W/uPHOD6saRpU4n6xsbEKCAhIUQ716Jj0RN27d9eSJUu0fv36VAV0SfL29lb58uV15MiRZG/38fGRj49PWpQJAAAAAIBbebS7uzFG3bt31/z587VmzRqFhYWl+jHi4+O1e/du5c2b1w0VAgAAAABgHY+2pHfr1k1fffWVFi5cqGzZsunUqVOSpICAAPn5+UmS2rVrp/z582vo0KGSpEGDBqlq1aoqUqSIYmJiNGLECEVFRemFF17w2N8BAAAAAEBa8GhInzhxoiSpTp06LtunT5+uDh06SJKio6OVIcP/N/hfuHBBXbp00alTpxQUFKSKFStq48aNKlmypFVlAwAAAADgFraZOM4qqRmwDwAAAABwDyaOS55tlmADAAAAACC9I6QDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGzCy9MFAACQ3hXqt/QfP8bxYU3ToBIAAOBptKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANuHRkD506FBVrlxZ2bJlU3BwsFq2bKmDBw8+8H7ffPONihcvLl9fX5UpU0bff/+9BdUCAAAAAOBeHg3p69atU7du3bR582atXLlSN2/eVMOGDRUXF3fP+2zcuFFt2rRR586d9dtvv6lly5Zq2bKl9uzZY2HlAAAAAACkPYcxxni6iERnz55VcHCw1q1bp1q1aiW7z9NPP624uDgtWbLEua1q1aqKiIjQpEmTHniM2NhYBQQE6OLFi/L390+z2gEA+LsK9Vv6jx/j+LCmaVAJAADWSU///qUmh9pqTPrFixclSdmzZ7/nPps2bVKDBg1ctjVq1EibNm1Kdv/r168rNjbW5QIAAAAAgB3ZJqQnJCTo1VdfVY0aNVS6dOl77nfq1Cnlzp3bZVvu3Ll16tSpZPcfOnSoAgICnJeQkJA0rRsAAAAAgLRim5DerVs37dmzR7Nnz07Tx+3fv78uXrzovJw4cSJNHx8AAAAAgLTi5ekCJKl79+5asmSJ1q9frwIFCtx33zx58uj06dMu206fPq08efIku7+Pj498fHzSrFYAAAAAANzFoy3pxhh1795d8+fP15o1axQWFvbA+1SrVk2rV6922bZy5UpVq1bNXWUCAAAAAGAJj7akd+vWTV999ZUWLlyobNmyOceVBwQEyM/PT5LUrl075c+fX0OHDpUk9erVS7Vr19bIkSPVtGlTzZ49W1u3btXkyZM99ncAAAAAAJAWPNqSPnHiRF28eFF16tRR3rx5nZc5c+Y494mOjtbJkyed16tXr66vvvpKkydPVrly5TRv3jwtWLDgvpPNAQAAAADwv8CjLekpWaJ97dq1SbY9+eSTevLJJ91QEQAAAAAAnmOb2d0BAAAAAEjvCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAm/lZIj4yM1DvvvKM2bdrozJkzkqQffvhBe/fuTdPiAAAAAABIT1Id0tetW6cyZcrol19+0XfffafLly9Lknbu3KmBAwemeYEAAAAAAKQXqQ7p/fr104cffqiVK1cqU6ZMzu316tXT5s2b07Q4AAAAAADSk1SH9N27d6tVq1ZJtgcHB+vcuXNpUhQAAAAAAOlRqkN6YGCgTp48mWT7b7/9pvz586dJUQAAAAAApEepDunPPPOM+vbtq1OnTsnhcCghIUEbNmzQG2+8oXbt2rmjRgAAAAAA0oVUh/QhQ4aoePHiCgkJ0eXLl1WyZEnVqlVL1atX1zvvvOOOGgEAAAAASBe8UnuHTJky6fPPP9eAAQO0Z88eXb58WeXLl1fRokXdUR8AAAAAAOlGqkN6ooIFC6pgwYJpWQsAAAAAAOlaqkN6p06d7nv7tGnT/nYxAAAAAACkZ6kO6RcuXHC5fvPmTe3Zs0cxMTGqV69emhUGAAAAAEB6k+qQPn/+/CTbEhIS9PLLL6tw4cJpUhQAAAAAAOlRqmd3T/ZBMmRQ7969NXr06LR4OAAAAAAA0qU0CemSFBkZqVu3bqXVwwEAAAAAkO6kurt77969Xa4bY3Ty5EktXbpU7du3T7PCAAAAAABIb1Id0n/77TeX6xkyZFCuXLk0cuTIB878DgAAAAAA7i3VIf3HH39Ms4OvX79eI0aM0LZt23Ty5EnNnz9fLVu2vOf+a9euVd26dZNsP3nypPLkyZNmdQEAAAAA4AlpNib974iLi1O5cuU0YcKEVN3v4MGDOnnypPMSHBzspgoBAAAAALBOqlvSy5cvL4fDkWS7w+GQr6+vihQpog4dOiTb4n23xo0bq3HjxqktQcHBwQoMDEzRvtevX9f169ed12NjY1N9PAAAAAAArJDqlvTHHntMR48eVZYsWVS3bl3VrVtXWbNmVWRkpCpXrqyTJ0+qQYMGWrhwoTvqlSRFREQob968evTRR7Vhw4b77jt06FAFBAQ4LyEhIW6rCwAAAACAfyLVLennzp3T66+/rgEDBrhs//DDDxUVFaUVK1Zo4MCB+uCDD9SiRYs0K1SS8ubNq0mTJqlSpUq6fv26pkyZojp16uiXX35RhQoVkr1P//79XWakj42NJagDAAAAAGwp1SF97ty52rZtW5LtzzzzjCpWrKjPP/9cbdq00ahRo9KkwDsVK1ZMxYoVc16vXr26IiMjNXr0aH3xxRfJ3sfHx0c+Pj5pXgsAAAAAAGkt1d3dfX19tXHjxiTbN27cKF9fX0lSQkKC8//drUqVKjpy5IglxwIAAAAAwJ1S3ZLeo0cPvfTSS9q2bZsqV64sSdqyZYumTJmit956S5K0fPlyRUREpGmh97Jjxw7lzZvXkmMBAAAAAOBOqQ7p77zzjsLCwjR+/HhnF/NixYrp888/V9u2bSVJL730kl5++eUHPtbly5ddWsGPHTumHTt2KHv27CpYsKD69++vP/74Q7NmzZIkjRkzRmFhYSpVqpSuXbumKVOmaM2aNVqxYkVq/wwAAAAAAGwn1SFdkp599lk9++yz97zdz88vRY+zdetWl6XaEid4a9++vWbMmKGTJ08qOjraefuNGzf0+uuv648//lDmzJlVtmxZrVq1KkXLvQEAAAAAYHd/K6RLtwPzmTNnlJCQ4LK9YMGCKX6MOnXqyBhzz9tnzJjhcv3NN9/Um2++mao6AQAAAAD4X5HqkH748GF16tQpyeRxxhg5HA7Fx8enWXEAAAAAAKQnqQ7pHTp0kJeXl5YsWaK8efPK4XC4oy4AAAAAANKdVIf0HTt2aNu2bSpevLg76gEAAAAAIN1K9TrpJUuW1Llz59xRCwAAAAAA6VqqQ/pHH32kN998U2vXrtVff/2l2NhYlwsAAAAAAPh7Ut3dvUGDBpKk+vXru2xn4jgAAAAAAP6ZVIf0H3/80R11AAAAAACQ7qU6pNeuXdsddQAAAAAAkO6leky6JP3000967rnnVL16df3xxx+SpC+++EI///xzmhYHAAAAAEB6kuqQ/u2336pRo0by8/PT9u3bdf36dUnSxYsXNWTIkDQvEAAAAACA9CLVIf3DDz/UpEmT9Pnnn8vb29u5vUaNGtq+fXuaFgcAAAAAQHqS6pB+8OBB1apVK8n2gIAAxcTEpEVNAAAAAACkS6kO6Xny5NGRI0eSbP/5558VHh6eJkUBAAAAAJAepXp29y5duqhXr16aNm2aHA6H/vzzT23atElvvPGGBgwY4I4aAQAAgCQK9Vv6jx/j+LCmaVAJAKSdVIf0fv36KSEhQfXr19eVK1dUq1Yt+fj46I033lCPHj3cUSMAAAAAAOlCqkO6w+HQ22+/rT59+ujIkSO6fPmySpYsqaxZs7qjPgAAAAAA0o1Uh3RJMsYoNjZWuXPnVsmSJdO6JgAAAAAA0qVUTRx36tQptWvXTkFBQcqdO7eCg4MVFBSkTp066fTp0+6qEQAAAACAdCHFLemxsbGqXr26Ll++rI4dO6p48eIyxmjfvn36+uuv9fPPP2v79u10ewcAAAAA4G9KcUgfO3asMmbMqL179ypXrlwut73zzjuqUaOGPvnkE7311ltpXiQAAAAAAOlBiru7L126VG+99VaSgC5JwcHB6t+/vxYvXpymxQEAAAAAkJ6kOKQfOnRI1atXv+ft1atX18GDB9OkKAAAAAAA0qMUh/TY2FgFBgbe8/bAwEDFxsamRU0AAAAAAKRLKQ7pxhhlyHDv3R0Oh4wxaVIUAAAAAADpUYonjjPG6KGHHpLD4bjn7QAAAAAA4O9LcUifPn26O+sAAAAAACDdS3FIb9++vTvrAAAAAAAg3UvxmHQAAAAAAOBehHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsIm/HdJv3LihgwcP6tatW2lZDwAAAAAA6VaqQ/qVK1fUuXNnZc6cWaVKlVJ0dLQkqUePHho2bFiaFwgAAAAAQHqR6pDev39/7dy5U2vXrpWvr69ze4MGDTRnzpw0LQ4AAAAAgPQkxeukJ1qwYIHmzJmjqlWryuFwOLeXKlVKkZGRaVocAAAAAADpSapb0s+ePavg4OAk2+Pi4lxCOwAAAAAASJ1Uh/RKlSpp6dKlzuuJwXzKlCmqVq1a2lUGAAAAAEA6k+ru7kOGDFHjxo21b98+3bp1S2PHjtW+ffu0ceNGrVu3zh01AgAAAACQLqS6Jf2RRx7Rjh07dOvWLZUpU0YrVqxQcHCwNm3apIoVK7qjRgAAAAAA0oVUt6RLUuHChfX555+ndS0AAAAAAKRrKQrpsbGxKX5Af3//v10MAAAAAADpWYpCemBgYIpnbo+Pj/9HBQEAAAAAkF6lKKT/+OOPzv8/fvy4+vXrpw4dOjhnc9+0aZNmzpypoUOHuqdKAAAAAADSgRSF9Nq1azv/f9CgQRo1apTatGnj3Na8eXOVKVNGkydPVvv27dO+SgAAAAAA0oFUz+6+adMmVapUKcn2SpUq6ddff02TogAAAAAASI9SHdJDQkKSndl9ypQpCgkJSZOiAAAAAABIj1K9BNvo0aP1xBNP6IcfftDDDz8sSfr11191+PBhffvtt2leIAAAAAAA6UWqW9KbNGmiw4cPq3nz5jp//rzOnz+vZs2a6dChQ2rSpIk7agQAAAAAIF1IdUu6JBUoUECDBw9O61oAAAAAAEjXUt2SDgAAAAAA3IOQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2keqQfvXqVV25csV5PSoqSmPGjNGKFSvStDAAAAAAANKbVIf0Fi1aaNasWZKkmJgYPfzwwxo5cqRatGihiRMnpnmBAAAAAACkF6kO6du3b1fNmjUlSfPmzVPu3LkVFRWlWbNm6ZNPPknzAgEAAAAASC9SHdKvXLmibNmySZJWrFih1q1bK0OGDKpataqioqLSvEAAAAAAANKLVIf0IkWKaMGCBTpx4oSWL1+uhg0bSpLOnDkjf3//NC8QAAAAAID0ItUh/d1339Ubb7yhQoUKqUqVKqpWrZqk263q5cuXT/MCAQAAAABIL7xSe4f//Oc/euSRR3Ty5EmVK1fOub1+/fpq1apVmhYHAAAAAEB6kuqQLkl58uRRnjx59Pvvv0uSChQooCpVqqRpYQAAAAAApDep7u6ekJCgQYMGKSAgQKGhoQoNDVVgYKA++OADJSQkuKNGAAAAAADShVS3pL/99tuaOnWqhg0bpho1akiSfv75Z7333nu6du2aBg8enOZFAgAAAACQHqQ6pM+cOVNTpkxR8+bNndvKli2r/Pnz65VXXiGkAwAAAADwN6W6u/v58+dVvHjxJNuLFy+u8+fPp0lRAAAAAACkR6kO6eXKldP48eOTbB8/frzLbO8AAAAAACB1Ut3dffjw4WratKlWrVrlXCN906ZNOnHihL7//vs0LxAAAAAAgPQi1S3ptWvX1qFDh9SqVSvFxMQoJiZGrVu31sGDB1WzZk131AgAAAAAQLrwt9ZJz5cvHxPEAQAAAACQxlLdkr5s2TL9/PPPzusTJkxQRESE2rZtqwsXLqRpcQAAAAAApCepDul9+vRRbGysJGn37t3q3bu3mjRpomPHjql3795pXiAAAAAAAOlFqru7Hzt2TCVLlpQkffvtt2rWrJmGDBmi7du3q0mTJmleIAAAAAAA6UWqW9IzZcqkK1euSJJWrVqlhg0bSpKyZ8/ubGEHAAAAAACpl+qW9EceeUS9e/dWjRo19Ouvv2rOnDmSpEOHDqlAgQJpXiAAAAAAAOlFqlvSx48fLy8vL82bN08TJ05U/vz5JUk//PCDHnvssTQvEAAAAACA9CLVLekFCxbUkiVLkmwfPXp0mhQEAP8mhfotTZPHOT6saZo8DgAAAOztb62TnujatWu6ceOGyzZ/f/9/VBAAAAAAAOlVqru7x8XFqXv37goODlaWLFkUFBTkcgEAAAAAAH9PqkP6m2++qTVr1mjixIny8fHRlClT9P777ytfvnyaNWuWO2oEAAAAACBdSHV398WLF2vWrFmqU6eOOnbsqJo1a6pIkSIKDQ3Vf//7Xz377LPuqBMAAAAAgH+9VLeknz9/XuHh4ZJujz8/f/68pNtLs61fvz5tqwMAAAAAIB1JdUgPDw/XsWPHJEnFixfX3LlzJd1uYQ8MDEzT4gAAAAAASE9SHdI7duyonTt3SpL69eunCRMmyNfXV6+99pr69OmT5gUCAAAAAJBepHpM+muvveb8/wYNGujAgQPatm2bihQporJly6ZpcQAAAAAApCf/aJ10SQoNDVVoaGha1AIAAAAAQLqW4u7ua9asUcmSJRUbG5vktosXL6pUqVL66aef0rQ4AAAAAADSkxSH9DFjxqhLly7y9/dPcltAQIC6du2qUaNGpWlxAAAAAACkJykO6Tt37tRjjz12z9sbNmyobdu2pUlRAAAAAACkRykO6adPn5a3t/c9b/fy8tLZs2fTpCgAAAAAANKjFIf0/Pnza8+ePfe8fdeuXcqbN2+aFAUAAAAAQHqU4pDepEkTDRgwQNeuXUty29WrVzVw4EA9/vjjaVocAAAAAADpSYqXYHvnnXf03Xff6aGHHlL37t1VrFgxSdKBAwc0YcIExcfH6+2333ZboQAAAAAA/NulOKTnzp1bGzdu1Msvv6z+/fvLGCNJcjgcatSokSZMmKDcuXO7rVAAAAAAAP7tUhzSJSk0NFTff/+9Lly4oCNHjsgYo6JFiyooKMhd9QEAAAAAkG6kKqQnCgoKUuXKldO6FgAAAAAA0rUUTxwHAAAAAADci5AOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABswqMhff369WrWrJny5csnh8OhBQsWPPA+a9euVYUKFeTj46MiRYpoxowZbq8TAAAAAAAreDSkx8XFqVy5cpowYUKK9j927JiaNm2qunXraseOHXr11Vf1wgsvaPny5W6uFAAAAAAA9/Py5MEbN26sxo0bp3j/SZMmKSwsTCNHjpQklShRQj///LNGjx6tRo0auatMAAAAAAAs8T81Jn3Tpk1q0KCBy7ZGjRpp06ZN97zP9evXFRsb63IBAAAAAMCO/qdC+qlTp5Q7d26Xbblz51ZsbKyuXr2a7H2GDh2qgIAA5yUkJMSKUgEAAAAASLX/qZD+d/Tv318XL150Xk6cOOHpkgAAAAAASJZHx6SnVp48eXT69GmXbadPn5a/v7/8/PySvY+Pj498fHysKA8AAAAAgH/kf6olvVq1alq9erXLtpUrV6patWoeqggAAAAAgLTj0ZB++fJl7dixQzt27JB0e4m1HTt2KDo6WtLtrurt2rVz7v/SSy/p6NGjevPNN3XgwAF9+umnmjt3rl577TVPlA8AAAAAQJryaEjfunWrypcvr/Lly0uSevfurfLly+vdd9+VJJ08edIZ2CUpLCxMS5cu1cqVK1WuXDmNHDlSU6ZMYfk1AAAAAMC/gkfHpNepU0fGmHvePmPGjGTv89tvv7mxKgAAAAAAPON/akw6AAAAAAD/ZoR0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCa8PF0A8L+sUL+l//gxjg9rmgaVAAAAAPg3oCUdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANuHl6QIA/HOF+i39x49xfFjTNKgEAAAAwD9BSzoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCa8PF0AAAAAHqxQv6X/+DGOD2uaBpUAANzJFi3pEyZMUKFCheTr66uHH35Yv/766z33nTFjhhwOh8vF19fXwmoBAAAAAHAPj4f0OXPmqHfv3ho4cKC2b9+ucuXKqVGjRjpz5sw97+Pv76+TJ086L1FRURZWDAAAAACAe3g8pI8aNUpdunRRx44dVbJkSU2aNEmZM2fWtGnT7nkfh8OhPHnyOC+5c+e2sGIAAAAAANzDoyH9xo0b2rZtmxo0aODcliFDBjVo0ECbNm265/0uX76s0NBQhYSEqEWLFtq7d+89971+/bpiY2NdLgAAAAAA2JFHQ/q5c+cUHx+fpCU8d+7cOnXqVLL3KVasmKZNm6aFCxfqyy+/VEJCgqpXr67ff/892f2HDh2qgIAA5yUkJCTN/w4AAAAAANKCx7u7p1a1atXUrl07RUREqHbt2vruu++UK1cuffbZZ8nu379/f128eNF5OXHihMUVAwAAAACQMh5dgi1nzpzKmDGjTp8+7bL99OnTypMnT4oew9vbW+XLl9eRI0eSvd3Hx0c+Pj7/uFYAAAAAANzNoy3pmTJlUsWKFbV69WrntoSEBK1evVrVqlVL0WPEx8dr9+7dyps3r7vKBAAAAADAEh5tSZek3r17q3379qpUqZKqVKmiMWPGKC4uTh07dpQktWvXTvnz59fQoUMlSYMGDVLVqlVVpEgRxcTEaMSIEYqKitILL7zgyT8DAAAAAIB/zOMh/emnn9bZs2f17rvv6tSpU4qIiNCyZcuck8lFR0crQ4b/b/C/cOGCunTpolOnTikoKEgVK1bUxo0bVbJkSU/9CQAAAAAApAmPh3RJ6t69u7p3757sbWvXrnW5Pnr0aI0ePdqCqgAAAAAAsNb/3OzuAAAAAAD8W9miJR0A0lqhfkv/8WMcH9Y0DSoBAAAAUo6WdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBNeni4AAABPKdRv6T9+jOPDmqZBJQAAALfRkg4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAlCOgAAAAAANkFIBwAAAADAJrw8XQAAALCPQv2W/uPHOD6saRpUAgBA+kRIBwAAAP6BtDi5JXGCC8BtdHcHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbIKQDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJsgpAMAAAAAYBOEdAAAAAAAbMLL0wUAANKXQv2WpsnjHB/WNE0eBwAAwE5oSQcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADbh5ekCcH+F+i1Nk8c5PqxpmjwOAAAAAMB9aEkHAAAAAMAmCOkAAAAAANgEIR0AAAAAAJtgTDoAALCdtJiThflYAAD/i2hJBwAAAADAJgjpAAAAAADYBCEdAAAAAACbIKQDAAAAAGATTBwHAABwH0xiBwCwEi3pAAAAAADYBCEdAAAAAACbIKQDAAAAAGAThHQAAAAAAGyCkA4AAAAAgE0Q0gEAAAAAsAmWYMP/HJbCAQAAAPBvRUs6AAAAAAA2QUgHAAAAAMAm6O5+D3SpBgAAAABYjZZ0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJxqQDQDrBXBsAAAD2R0gHAAAAAKRbadGQIaVdYwYhHUCaorUWAP7d7PZjFgD+bRiTDgAAAACATRDSAQAAAACwCUI6AAAAAAA2QUgHAAAAAMAmmDgOAAAAQJpiIlng76MlHQAAAAAAmyCkAwAAAABgE4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADbBEmwAAAAAkI6wRJ690ZIOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCYI6QAAAAAA2AQhHQAAAAAAm2AJNqQYSzUAAADgfw2/YfG/hpZ0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAAAAAADZBSAcAAAAAwCZsMbv7hAkTNGLECJ06dUrlypXTuHHjVKVKlXvu/80332jAgAE6fvy4ihYtqo8++khNmjSxsGIAAADAfpjJ3L54bZBSHm9JnzNnjnr37q2BAwdq+/btKleunBo1aqQzZ84ku//GjRvVpk0bde7cWb/99ptatmypli1bas+ePRZXDgAAAABA2vJ4S/qoUaPUpUsXdezYUZI0adIkLV26VNOmTVO/fv2S7D927Fg99thj6tOnjyTpgw8+0MqVKzV+/HhNmjQpyf7Xr1/X9evXndcvXrwoSYqNjb1vXQnXr/ztvynRg46REmlRh2SfWv5NdUj2qcUudUj2qeXfVIdkn1rsUodkn1r+TXVI9qnFLnVI9qnl31SHZJ9a7FKHZJ9a/k11SPapxS51SPap5d9Uh3T/WhJvM8Y8+IGMB12/ft1kzJjRzJ8/32V7u3btTPPmzZO9T0hIiBk9erTLtnfffdeULVs22f0HDhxoJHHhwoULFy5cuHDhwoULFy4evZw4ceKBOdmjLennzp1TfHy8cufO7bI9d+7cOnDgQLL3OXXqVLL7nzp1Ktn9+/fvr969ezuvJyQk6Pz588qRI4ccDsffrj02NlYhISE6ceKE/P39//bj/FPUYd9a7FKHnWqxSx12qsUuddipFuqwby12qcNOtdilDjvVYpc67FQLddi3FrvUYada7FKHnWpJizqMMbp06ZLy5cv3wH093t3d3Xx8fOTj4+OyLTAwMM0e39/f3+NvXupInl1qsUsdkn1qsUsdkn1qsUsdkn1qoY6k7FKLXeqQ7FOLXeqQ7FOLXeqQ7FMLdSRll1rsUodkn1rsUodkn1r+aR0BAQEp2s+jE8flzJlTGTNm1OnTp122nz59Wnny5En2Pnny5EnV/gAAAAAA/K/waEjPlCmTKlasqNWrVzu3JSQkaPXq1apWrVqy96lWrZrL/pK0cuXKe+4PAAAAAMD/Co93d+/du7fat2+vSpUqqUqVKhozZozi4uKcs723a9dO+fPn19ChQyVJvXr1Uu3atTVy5Eg1bdpUs2fP1tatWzV58mRL6/bx8dHAgQOTdKW3GnXYtxa71GGnWuxSh51qsUsddqqFOuxbi13qsFMtdqnDTrXYpQ471UId9q3FLnXYqRa71GGnWqyuw2FMSuaAd6/x48drxIgROnXqlCIiIvTJJ5/o4YcfliTVqVNHhQoV0owZM5z7f/PNN3rnnXd0/PhxFS1aVMOHD1eTJk08VD0AAAAAAGnDFiEdAAAAAAB4eEw6AAAAAAD4f4R0AAAAAABsgpAOAAAAAIBNENIBAAAAALAJQjoAADazfft27d6923l94cKFatmypd566y3duHHDg5UBSKmYmBhNmTJF/fv31/nz5yXd/mz/8ccfHq4MQGrFx8drx44dunDhgiXHY3b3VLpx44aOHTumwoULy8vL+mXmr169KmOMMmfOLEmKiorS/PnzVbJkSTVs2NDyeuwoNjZWa9asUbFixVSiRAlPl5PuLFq0KMX7Nm/e3I2VJLVu3Tp9/PHH2r9/vySpZMmS6tOnj2rWrGlpHXeLj4/X7t27FRoaqqCgII/W4ikxMTGaOnWq87UpVaqUOnXqpICAALcet3fv3ined9SoUW6sxFXlypXVr18/PfHEEzp69KhKlSqlVq1aacuWLWratKnGjBljWS1Acnbu3KmyZcvK4XB4upQk7PBdv2vXLjVo0EABAQE6fvy4Dh48qPDwcL3zzjuKjo7WrFmz3Hbs1q1bp3jf7777zm11IGXmzZunuXPnKjo6OslJ2O3bt1tej6ezjmSPz/Crr76qMmXKqHPnzoqPj1ft2rW1ceNGZc6cWUuWLFGdOnXcenxCegpduXJFPXr00MyZMyVJhw4dUnh4uHr06KH8+fOrX79+ltTRsGFDtW7dWi+99JJiYmJUvHhxeXt769y5cxo1apRefvllS+pIZIcvlqeeekq1atVS9+7ddfXqVZUrV07Hjx+XMUazZ8/WE088YUkddhIfH6/Ro0ff87VJPKPvDhkypKyDjsPhUHx8vNvquNuXX36pjh07qnXr1qpRo4YkacOGDZo/f75mzJihtm3bWlaLp7/47Wbr1q1q1KiR/Pz8VKVKFUnSli1bdPXqVa1YsUIVKlRw27Hr1q2bov0cDofWrFnjtjruFhAQoO3bt6tw4cL66KOPtGbNGi1fvlwbNmzQM888oxMnTlhWC5CckSNH6qefftLs2bPl6+vr6XKc7PJd36BBA1WoUEHDhw9XtmzZtHPnToWHh2vjxo1q27atjh8/7rZjd+zYMcX7Tp8+3W114ME++eQTvf322+rQoYMmT56sjh07KjIyUlu2bFG3bt00ePBgy2qxS9axy2e4QIECWrBggSpVqqQFCxaoW7du+vHHH/XFF19ozZo12rBhg3sLMEiRnj17mooVK5qffvrJZMmSxURGRhpjjFmwYIGJiIiwrI4cOXKYPXv2GGOM+fzzz03ZsmVNfHy8mTt3rilevLhbj71w4UJz+vRp5/WxY8eabNmymR49epgMGTKYvn37mpo1a5rAwEDz9ttvu7WWO+XOndvs2LHDGGPMf//7X1OkSBETFxdnPv30U0tfm7vFxcWZ/fv3m507d7pc3GHmzJnmwIEDzusDBgww+fPnNyNHjjQOh8NMnDjRPPfccyZHjhxm7NixbqnB7ooXL25GjRqVZPvIkSPd/tm5W/78+c2WLVuMMcbMnz/f5MuXzxw8eNC88847pnr16pbWYowxR44cMd27dzf169c39evXNz169DBHjhyx7PiPPPKI6dChg7l586Zz282bN0379u1NzZo1LavDTrJly2YOHTpkjDGmQYMGZsyYMcYYY6Kiooyvr69Havrmm2/Mk08+aR5++GFTvnx5l0t6rMMYYy5fvmyWLl1qJk6caMaOHetysdKFCxfMxx9/bDp37mw6d+5sRo0aZWJiYtx6zISEBNO/f39To0YNY4wxgYGBJigo6J4Xq9jlu97f39/5PZo1a1bn78bjx48bHx8fy+qwoxMnTpgJEyaYvn37mtdee83lkt5qKVasmPnqq6+MMa7vkwEDBphu3bpZUkMiu2Qdu3yGfXx8zIkTJ4wxxnTp0sX06tXLGGPM0aNHTbZs2dx+fEJ6ChUsWNBs2rTJGOP6ITp8+LAlL1QiPz8/ExUVZYwx5sknnzTvvfeeMcaY6Oho4+fn59Zjz5kzxxQtWtQcPHjQGHP7i2XOnDnGGGMcDodzv379+ln6xeLr62uio6ONMcY8//zzpm/fvsaY2z9ms2TJYlkdic6cOWOaNm1qMmTIkOzFHZYvX24KFixofvrpJ2OMMeHh4Wbp0qXGGNfXZuTIkaZNmzZuqcHuMmXKZA4fPpxk++HDhy3/weTpL/47LVu2zGTKlMlUqVLF+cOkSpUqxsfHx6xYscKSGnx9fc3+/fuTbN+7d6/bv9fsqm7duqZdu3Zm1qxZxtvb2/neXbt2rQkNDXX78e16Unbs2LEma9aspnv37iZTpkyma9eupkGDBiYgIMC89dZbbj124r+9ibZv327y5MljAgICTIYMGUzu3LmNw+EwWbJkMWFhYW6t5U5btmwx2bNnN/nz5zetWrUyrVq1MgUKFDA5cuQw27Ztc/vxFyxYYIwxZvr06WbGjBn3vFjFLt/1uXLlMtu3bzfGuP5uXLFihSlQoIBlddjNqlWrTObMmU3p0qWNl5eXiYiIMIGBgSYgIMDUrVs33dXi5+dnjh8/boy5/Z5JbHQ6dOiQyZ49uyU1JLJL1rHLZ7hgwYJm+fLl5tatWyYkJMQsWbLEGGPMnj17TGBgoNuPT0hPIT8/P+eb9c437o4dO4y/v79ldZQpU8aMHTvWREdHG39/f7Nx40ZjjDFbt241uXPndvvxf/zxR1OmTBljjOsJAz8/P3Pp0iVjjPVfLEWLFjVz5swxly9fNrly5TKrV682xtx+bXLkyGFZHYnatm1ratSoYbZs2WKyZMliVqxYYb744gtTrFgx5wfcHfbv328efvhhY4wxmTNndr42WbNmdbaoREZGWvp+NcY+LU2FCxc2kyZNSrJ94sSJpkiRIpbW4ukv/jtFREQ4T2zdqW/fvpa1TAYHB5vly5cn2b5s2TITHBxsSQ3GGFOnTh1Tt27de16stHPnTlO6dGnj7+/vPBlrjDHdu3e35ESbXU/KerLV6YMPPjAvv/yySUhIMMYYU7t2bfPSSy+Z+Ph453Ny5MgRU6NGDfPtt9+6tZY70RPFlV2+6zt37mxatmxpbty4YbJmzWqOHj1qoqKiTPny5Z0nZq1QqFAhExYWds+L1SpXrmzeffddY8z/f4YvXbpkmjdvbj799NN0V0tYWJjzZE7FihWd793ly5db2gPFGPtkHbt8hgcOHGgCAgJM8eLFTcGCBc21a9eMMcZMnTrVVK1a1e3HJ6SnUM2aNc0nn3xijDHOL1tjbv9gatSokWV1fPPNN8bb29tkyJDBPProo87tQ4YMMY899pglNZw7d84Y4/rFUrx4ceeP7B9++MHSkD5hwgTj5eVlAgMDTbly5Ux8fLwxxphPPvnE1KlTx7I6EuXJk8f88ssvxpjbXVYTf+QuXLjQ2S3QXRK/QB566CGzefNmY8ztEPb1118bY24PB7Ay9CS2NPn7+5uMGTOaXLlyeaSlyRhjPv30U5MpUybz0ksvmVmzZplZs2aZrl27Gh8fn2T/MXAnT3/x38nHx8fZrfpOBw8etOyMdY8ePUyBAgXM7NmzTXR0tImOjjZff/21KVCggKU/Zl999VWXS7du3UyNGjVMQECA6dmzp2V13M/Vq1fNjRs3LDmWHU/KerLV6cqVK6ZTp06mWbNmxhhjAgICnMOMMmbM6HxdNm7caIoVK+bWWu5kl54oUVFR971YxS7f9TExMaZBgwYmMDDQZMyY0YSEhBhvb29Tq1Ytc/nyZcvqGDNmjMtlxIgRpm3btiZ79uxm6NChltWRKGvWrM5hAIGBgc4hnDt27LCkl5DdauncubPzROz48eONn5+f833TqVMnS2pIZJesY5fPsDG3c9eoUaOcvR+NMWbGjBnOHkTuREhPoZ9++slkzZrVvPTSS8bX19f06tXLPProoyZLlixm69atltZy8uRJs337dmcYNcaYX375Jdl/pN3pzi+WESNGmMDAQNOwYUPj7+9vXnjhBUtr2bp1q/nuu++cPxyNMWbJkiXm559/trQOY24H82PHjhljbreYJtZw9OhRy34w9e3b1wwePNgYc/vLxNvb2zz00EPGy8vL7V1C71S7dm3TpUsXEx8f7zwrGx0dbWrVqmVpS1Oi7777ztSoUcNkz57dZM+e3dSoUcOSL9rkePKL/04FChQwc+fOTbJ9zpw5JiQkxJIarl+/bnr27GkyZcrkHBbi4+NjXn31VecJDE8aOHCgef311z1dhkfY7aSsHVqdEk965syZ03mCK1++fM7/379/v8mcObMltRhjn54oDofjnsO83DXU617s9F3/888/mwkTJpiPPvrIrFy50iM1JGf8+PGmQ4cOlh83d+7cZt++fcYYY0qUKGEWLlxojLkdjK0eomiHWuLj4116wXz99demR48e5pNPPjHXr1+3pIZEdso6dvoMewohPRUiIyPNCy+8YCpXrmxKlChhnn32WbNr1y5Pl+Uxd3+xfPnll6Z79+5m3LhxlrX02FGlSpXMsmXLjDHGNGvWzDz//PPm999/N2+++aYJDw/3SE0//fST+fjjj83ixYstPe6dLU0BAQHOfww3b95saUsT7u399983gYGBZtiwYWb9+vVm/fr1ZujQoSYwMNAMGjTI0lri4uLMrl27zK5du0xcXJylx76fw4cPWxIAg4KCzNmzZ40x9pmEK5FdTsraqdXp0UcfNf/973+NMcY8++yzplGjRuarr74y9evXdw49soJdeqLs2LHD5bJlyxYzefJkU7x4cctOyt68edO8//77Lic/PWXmzJnJnmS8fv26mTlzpgcqchUZGWn5HCjGGNOiRQszefJkY4wxr7/+uilSpIj58MMPTYUKFUz9+vXTbS12ceTIEbLOHVatWmX69+9vOnfubDp27OhycTeWYEuBmzdvqmvXrhowYIDCwsI8XY62bt16z6W10ut6l7///rsWLVqU7HNi5drG0u2lI27duqUOHTpo27Zteuyxx3T+/HllypRJM2bM0NNPP+3W49vp/ZorVy5t3LhRRYsW1UMPPaRx48apUaNGOnDggCpWrKi4uDjLagkPD9eWLVuUI0cOl+0xMTGqUKGCjh49alktkhQXF6d169Yl+57t2bOnZXUYYzRmzBiNHDlSf/75pyQpX7586tOnj3r27OmRNZBjY2O1Zs0aFStWTCVKlLD8+Hf74osv1LdvX+fz4y4zZ87UM888Ix8fH+cSOPfSvn17t9Zyt4SEBCUkJDjXzP3vf/+rzZs3q1ixYuratau8vb09Usfs2bOd3zFdu3ZVpkyZLKlDuv1v8aVLl1S3bl39+eefat++vfM5mT59usqUKWNJHTdu3FCfPn00adIk3bp1S5Lk7e2tl19+WcOGDZOPj48lddzL0qVLNWLECK1du9aS42XNmlV79uxRoUKFLDnevWTMmFEnT55UcHCwy/a//vpLwcHBli5Bmpzhw4fr008/detScMk5evSoLl++rLJlyyouLk6vv/668zM8atQohYaGprtaYmJi9Ouvv+rMmTNKSEhwua1du3aW1ICk3n//fQ0aNEiVKlVS3rx5k/wemj9/vluPT0hPoYCAAO3YscPjoWf27Nlq166dGjVqpBUrVqhhw4Y6dOiQTp8+rVatWlm+3uWFCxc0depU7d+/X5JUsmRJdezYUdmzZ7eshtWrV6t58+YKDw/XgQMHVLp0aec66RUqVLB0bePkXLlyRQcOHFDBggWVM2dOS45pl/drw4YN1aFDB7Vt21ZdunTRrl271LNnT33xxRe6cOGCfvnlF8tqyZAhg06dOpXkB9Pp06dVsGBBXb9+3W3Hjo6OVsGCBZ3Xf/vtNzVp0kRXr17VpUuXlCtXLp05c0aZM2dWcHCw5ScMEl26dEmSlC1bNkuP+9RTT6lWrVrq3r27rl69qnLlyjk/w7Nnz9YTTzxhSR2tW7d2uW6M0cmTJ7V161YNGDBAAwcOtKQO2J8xRidOnFBwcLBt1gi/cuWKIiMjJUmFCxdW5syZPVzRbUeOHFG5cuUsOynbokULtW7d2vITWXfLkCGDTp8+rVy5crls37lzp+rWravz589bUkf58uVdwoUxRqdOndLZs2f16aef6sUXX7SkDiRv8eLFevbZZ3X58mX5+/u7vFYOh8Oy90mi+Ph4zZ8/3+V3fYsWLZwnRt0lKCgoxY0CVj0nefPm1fDhw/X8889bcry7EdJTqH379oqIiNBrr73m0TrKli2rrl27qlu3bsqWLZt27typsLAwde3aVXnz5tX7779vWS3r169X8+bN5e/vr0qVKkmStm3bppiYGC1evFi1atWypI4qVaqocePGev/9953PSXBwsJ599lk99thjevnlly2pw07s8n69s6XpzJkzateunfMs9bRp01SuXDm317Bo0SJJUsuWLTVz5kwFBAQ4b4uPj9fq1au1cuVKHTx40G01fPjhh/rzzz81YcIEORwO1alTRyVKlNCECRPk5eWlhIQERUZGqn379urdu3eSsPhvlydPHi1fvlzlypXTV199pYEDB2rnzp2aOXOmJk+erN9++82SOjp27OhyPUOGDMqVK5fq1aunhg0bWlJDcq5du5akt4W/v7/lddiltccOJ4cTEhLk6+urvXv3qmjRopYdNzkXL15UfHx8kr///Pnz8vLysuy9Ehsb63I98STXe++9pwMHDmjHjh2W1DFp0iS9//77evbZZ1WxYkVlyZLF5fbmzZu79fiJoXjnzp0qVaqUS7iJj4/XsWPH9Nhjj2nu3LlurSPR3b8LE7/X6tSpo+LFi1tSw/+Cy5cvJ/les+Kz89BDD6lJkyYaMmSIx0+s7d27V82bN9epU6dUrFgxSdKhQ4eUK1cuLV68WKVLl3bbsR/Ue+xOVp2Ay5Ejh3799VcVLlzYkuPdjZCeQh9++KFGjhyp+vXrJ/ulb1X31CxZsmjv3r0qVKiQcuTIobVr16pMmTLav3+/6tWrp5MnT1pShySVKVNG1apV08SJE5UxY0ZJt/8BeuWVV7Rx40bt3r3bkjqyZcumHTt2qHDhwgoKCtLPP/+sUqVKaefOnWrRooUlXbl69+6tDz74QFmyZFHv3r3vu68V3e/t8H61S0tThgwZJN0+I3331523t7cKFSqkkSNH6vHHH3dbDVevXlX37t119uxZLVq0SIGBgfrll19UrFgxeXl56erVq/L29tamTZvUsWNHHThwwG21JGfevHn3HEKzfft2tx/fz89Phw4dUkhIiNq1a6d8+fJp2LBhio6OVsmSJXX58mW312A3cXFx6tu3r+bOnau//vorye1Wd5W1S2uPXU4OS1KpUqU0depUVa1a1bJjJqdx48Zq1qyZXnnlFZftkyZN0qJFi/T9999bUkeGDBmStIQZYxQSEqLZs2erWrVqltVxLw6Hw+2fncRQ/P777+v1119X1qxZnbdlypRJhQoV0hNPPGHp0AxPy549uw4dOqScOXM+sMXUypbjY8eOqXv37lq7dq2uXbvm3G6MseS9It3+Xb97926Fh4e7/VgPUq1aNeXKlUszZ85UUFCQpNsnRTt06KCzZ89q48aNHq7QWn379lXWrFk1YMAAjxzfvX0X/kWmTp2qwMBAbdu2Tdu2bXO5zeFwWBbSg4KCnF1S8+fPrz179qhMmTKKiYnRlStXLKkh0ZEjRzRv3jxnQJduj8Hq3bu3Zs2aZVkdWbJkcQaLvHnzKjIyUqVKlZIknTt3zpIafvvtN928edP5//di1fheO7xfjTEqUqSIx1uaEs+Mh4WFacuWLZYNObiTn5+fpk6dqtmzZ0u6fXIg8Ydk7ty5dfz4cRUtWlRBQUE6ceKE2+t5/PHH9fLLL6tp06b65JNP9Pbbb6tDhw5auHChOnbsqMjISG3ZskXdunVzey2SFBISok2bNil79uxatmyZ83m6cOGCx07wXLt2TXPmzFFcXJweffRRy9/Db775pn788UdNnDhRzz//vCZMmKA//vhDn332mYYNG2ZpLZL0+uuvq1OnTh5v7enWrZueeuqpZE8Od+vWzbKTw5I0bNgw9enTRxMnTnRrC9OD/PLLL8me/K1Tp47efvtty+r48ccfXa4nttgWKVLE7V1l73R3a6jVBg4cqPj4eBUqVEgNGzZU3rx5PVLHrVu3FB8f7zInwenTpzVp0iTFxcWpefPmeuSRRyypZfTo0c5hVGPGjLHkmCnx3HPPyRijadOmKXfu3B6Zg6VRo0baunWrLUL6jh07tHXrVmdAl27njsGDB6ty5cqW1REdHX3f2+8cPuhO165d0+TJk7Vq1SqVLVs2ydwrbm90c/vUdEhTbdq0MSNHjjTGGDNo0CCTK1cu88ILL5jQ0FDTqlUrS2upXr26mT9/fpLt8+fPt3RmW2bntK+SJUuaTZs2eboM2/H0rND79+93rjRQrFgx89VXXxljjHOZPGOMGTBggOnWrZvbazHGmAkTJhgvLy8TGBhoypUr51xe8pNPPjF16tRx+/Ffe+010717d+f169evm3Llyhlvb28TEBBgsmTJYjZu3Oj2Ou4UEhJifvzxR2PM7WUdDx8+bIwxZtasWaZx48aW1mKMMZkzZ3a+NzzJ19fXuWLEnQ4cOGB8fX0trSUwMNC5bKCvr6/HZuDPnDlzsrMv79q1y9J10uHKx8fHuc60J3To0MG8+OKLzuuxsbEmJCTE5MqVy5QtW9Z4eXmZpUuXeqw+O8iSJUuy3ydWmjJliilYsKAZOHCgmTdvnlm4cKHLxUply5Y1q1evTrJ99erVpnTp0pbVYZflHOvUqXPPS926dd1+fFrS/8eMHz/e2SXn7bfflre3tzZu3KgnnnhC77zzjqW19OzZU7169dKRI0ec3f02b96sCRMmaNiwYdq1a5dz37Jly7qtjlGjRjm7w77//vu6fPmy5syZ45ydE55jl5amRKtXr9bq1auTHVM7bdo0y+oYMmSIs0fM8OHD1b59e7344ovOWaHdbdSoUc5VBqKjo1W9enVJt1v8E+t6/vnnVbVqVY0fP97t9bzyyiuqUqWKTpw4oUcffdTZyyA8PFwffvih24+/YsUKDRkyxHn9v//9r6Kjo3X48GEVLFhQnTp10ocffqilS5e6vZZE58+fd7as+Pv7O7uAPvLIIx6ZZ8MurT0VKlTQ/v37neMlE+3fv9+SOS7uZJcWwSpVqmjy5MkaN26cy/ZJkyapYsWKltezb9++ZIfOuHMs+CeffKIXX3xRvr6++uSTT+67r1U9H0uXLq2jR496bALXDRs2uHx/z5o1S/Hx8Tp8+LACAgLUt29fjRgxQk2aNLG8toSEBB05ciTZf4utHLJSuXJlnThxIsn3iZW6dOkiSRo0aFCS26zqcp9o6NCh6tmzp9577z2X3/WDBg3SRx995DLvhDvH69/dI/XmzZv67bffNGrUKA0ePNhtx73b3b2DrMaY9BR64oknVKVKFfXt29dl+/Dhw7VlyxZ98803HqrMc+437kv6/zHAVn/JeFpcXJyGDRt2zzBo1czddliWLigoSFeuXNGtW7eUKVMm+fn5udxu5dgzTy+lYSc5c+bU8OHD1alTJ4WHh+vbb79V+fLlValSJXXp0kVdu3bVihUr9Mwzz1g+s6x0u/vy7t27FRoa6tLtzl38/f21fft2FSlSRJLUpk0bZcuWTZMnT5Z0uwtgkyZN3L4E253Kli2rcePGqXbt2mrQoIEiIiL08ccf65NPPtHw4cP1+++/W1aLdHsIzaBBg9SxY0eVKVMmSbc/dwawO0/47t+/X2+++aZ69OiR7Mlhdy9xaUcbNmxQgwYNVLlyZdWvX1/S7ROSW7Zs0YoVK1SzZk1L6jh69KhatWql3bt3u8wBkvhd687fAWFhYdq6daty5Mhx31DscDgs+zd42bJl6t+/vz744INk54Zx96RkWbJk0Z49e5zPR+vWrVWgQAHnSYx9+/apTp06OnPmjFvruNvmzZvVtm1bRUVFJZknxurfi5GRkXrppZf03HPPqXTp0km+19zZwGRHd/6uT/zc3v059uTvequXc/Q0WtJTaP369XrvvfeSbG/cuLFGjhxpaS3x8fFasGCBc2bbUqVKqXnz5i5jw61w7NgxS4/3IDdu3Eg2FFs1diXRCy+8oHXr1un5559PNgxa4UHL0lnFLi1N0u1WpRkzZnhsKQ07WbJkiZYsWSJJqlevnhYtWqTy5curY8eOeu211zRv3jxt3brVslnmX331VZUpU0adO3dWfHy8ateurY0bNypz5sxasmSJ6tSp49bjZ8iQweXH4ubNm10migkMDNSFCxfcWsPdOnbsqJ07d6p27drq16+fmjVrpvHjx+vmzZse6SHkydaeiIiIJBM/vvnmm0n2a9u2rcdCuidn4K9Ro4Y2bdqkESNGaO7cufLz81PZsmU1depUS+dS6NWrl8LCwrR69WqFhYXp119/1V9//aXXX39dH3/8sVuPfefvEbv8NklsoW7evHmSJdCsCDm+vr66evWq8/rmzZs1YsQIl9s9MSnnSy+9pEqVKmnp0qUe+42U6OzZs4qMjHRZ2SO9NjBJnm85fpBixYppy5Ytbj1G69atNWPGDPn7+z/wN9B3333n1loI6Sl0+fLlZGfi9Pb2TrLsiDsdOXJETZs21e+//+7snjN06FCFhIRo6dKlli4TEBoaatmx7ufQoUPq3LlzklknPfUl+8MPP2jp0qWqUaOGpce9U//+/fXGG284l6X79ttvXZals4qn16m9040bN5zduj2hQoUKWr16tYKCgpKsW3s3d8+oXrVqVWcr5OTJk50ntrp166YcOXJo48aNat68ubp27erWOhLNmzdPzz33nKTbs4gfO3ZMBw4c0BdffKG3335bGzZscOvxS5QoocWLF6t3797au3evoqOjVbduXeftUVFRyp07t1truNudyyc2aNBABw4c0LZt21SkSBGPtO54cjIuu4Suu9lpBv6IiAj997//tex4ydm0aZPWrFmjnDlzKkOGDMqQIYMeeeQRZxdaq5ZSTHTjxg0dO3ZMhQsXtnTiukSeDjwRERH64osvNHToUP300086ffq06tWr57w9MjJS+fLls7yuw4cPa968ec6eS57UqVMnlS9fXl9//bWlE8fZcXiGJNWuXduyY93P/ZZzdPeJx4CAAOf74O6VTKxGSE+hMmXKaM6cOXr33Xddts+ePVslS5a0rI6ePXsqPDzcOROyJP3111967rnn1LNnT0vHTCbyxPizO3Xs2FFeXl5asmSJx8/KSre7eFu5Xm9y9u/fr6+//lqSnEt8Zc2aVYMGDVKLFi0sHdMaGRmp6dOnKzIyUmPHjlVwcLB++OEHFSxY0DkLvxVeeOEFffXVVx5bSqNFixbOWXZbtmzpkRqSk/hjOtEzzzyjZ555xtIazp07pzx58kiSvv/+ez355JN66KGH1KlTJ40dO9btx3/zzTf1zDPPaOnSpdq7d6+aNGni0mX2+++/V5UqVdxeR6KbN2/qscce06RJk5w/SEJDQ21zYtRKM2fOVLVq1fTQQw95upQk7DIDv11mQo6Pj3fO4J0zZ079+eefKlasmEJDQ3Xw4EFLapCkK1euqEePHs51lw8dOqTw8HD16NFD+fPnV79+/Sypw9OB591331Xjxo01d+5cnTx5Uh06dHCZaX7+/PkeaUx4+OGHdeTIEVuE9KioKC1atMjyWkaPHq1nn31Wvr6+Gj169D33s2I1nl27dql06dLKkCGDy9Ci5Fh1gjgwMPC+yzm6053zAs2YMcOtx3oQQnoKDRgwQK1bt1ZkZKTzTOTq1av11Vdfad68eZbVsW7dOm3evNklBObIkUPDhg2z/MvWk+PP7rRjxw5t27ZNxYsXt+R4D/LBBx/o3Xff1cyZMz22VJEdlqWTbr9fGzdurBo1amj9+vUaPHiwgoODtXPnTk2dOtXSz46nl9IYOHBgsv9vBzExMfr111+THS7Srl07tx8/d+7c2rdvn/Lmzatly5Zp4sSJkm7/2LZiGE+rVq30/fffa8mSJWrYsKF69OjhcnvmzJmTrEHtTt7e3g/8seQJcXFxWrduXbInZd31QzJv3rx69NFHNWfOHFWtWlWLFi267/5WnRyWbvf6mDVrlurUqaOOHTuqZs2aKlKkiEJDQ/Xf//5Xzz77rCV1FCpU6L4np636t7h06dLauXOnwsLC9PDDD2v48OHKlCmTJk+ebOmEg/3799fOnTu1du1al55jDRo00HvvvWdZSJduf7dOnTrVZXhip06dFBAQ4PZj165dW9u2bdOKFSuUJ08ePfnkky63R0REWHryMVGPHj30+uuv69SpU8nOb2FlT6F69epp586dlod0Ow3PiIiI0KlTpxQcHJzs0KJEVvZMtctyjvXq1dN3332nwMBAl+2xsbFq2bKl1qxZ49bjM3FcKixdulRDhgzRjh075Ofnp3LlymngwIHKnj27ZTNXZ8+eXUuWLEnSbXfDhg1q1qyZpZM8NWvWTBkzZtSUKVOSHX9m1WQ1lStX1ujRoy1b7zM5d3dfPnLkiIwxKlSoUJJ/gNzdlVm63VLbtGlTdenSRW+88YYWLlyoDh066LvvvlNQUJBWrVrl9hokqVq1anryySfVu3dvZcuWTTt37lR4eLh+/fVXtW7d2tLJr+7svnw3h8Ph9i/b5Gzbts3lx1v58uUtr2Hx4sV69tlndfny5SRduxwOhyXfKe+9957GjBmjvHnz6sqVKzp06JB8fHw0bdo0ff7559q0aZPba7Cb1157TT4+Ph5ZEz05v/32m5o0aaIrV64oLi5O2bNn17lz55Q5c2YFBwe7dTKunTt36vnnn9euXbvuO2Gp1cObsmbNqn379qlgwYIqUKCAvvvuO1WpUkXHjh1TmTJlLBvvu3PnTpfrd8+EbNXcEsuXL1dcXJxat26tI0eO6PHHH9ehQ4eUI0cOzZkzx6WrtTuFhoY6T+rc+e/OkSNHVKFCBcuGKG7dulWNGjWSn5+fMwxv2bJFV69e1YoVKyydH8ZOkvsMe2oc+OTJk/Xhhx+qU6dOlk+IKd3+rBYvXlxLlixRiRIl3Hqse4mKilLBggXlcDgUFRV1333TW2+uDBkyOE9g3OnMmTPKnz+/bt686dbj05KeCk2bNlXTpk0l3T6L8vXXX+uNN97Qtm3bLPtSefzxx/Xiiy9q6tSpzi/9X375RS+99JKlLQiSfcafffTRR3rzzTc1ZMiQZL9krZi8x07dlyX7LEu3e/duffXVV0m2BwcHW9qiL3l+fOCdzpw5o2eeeUZr1651nqGNiYlR3bp1NXv2bOXKlcuyWl5//XV16tRJQ4YM8VjPj/fee0+lS5fWiRMn9OSTTzqHBWTMmNHSVi87uXXrlqZNm6ZVq1YlOzO01ZPHvfbaa2rWrJkmTZqkgIAAbd68Wd7e3nruuefUq1cvtx67XLlyWr9+vSTPjo2/W3h4uI4dO6aCBQuqePHimjt3rqpUqaLFixcnaXlxp+SWnqtUqZLy5cunESNGWBbSGzVq5Pz/IkWK6MCBAzp//ryCgoIsHYZ29uzZJD+qpds9Qays47XXXlPz5s31+eefO1v/bt26pRdeeEGvvvqq8z2d3ni65fhOL730kiTPLX/m7e3tXFbZU+4M3nYL4Z4aTntnT7Z9+/bp1KlTzuvx8fFatmyZ8ufP79YaJFrSU239+vWaOnWqvv32W+XLl0+tW7fWE088ocqVK1ty/JiYGLVv316LFy92htFbt26pefPmmjFjhiVdqBIFBQVp+/btCgsLU+HChTVlyhTVrVtXkZGRKlOmjK5cuWJJHYlnZZMbv5IeZ+e0kwIFCmju3LmqXr26S4vG/Pnz9cYbbygyMtLTJXrE008/raNHj2rWrFnOs+f79u1T+/btVaRIEed8AlbIkiWLdu/e7fH1r+HKbj0/AgMD9csvv6hYsWIKDAzUpk2bVKJECf3yyy9q3769Dhw4YGk9djB69GhlzJhRPXv21KpVq9SsWTMZY5wz8Lv75MWDHDlyROXKlVNcXJxH67BarVq19OSTT6pHjx7Kli2bdu3apbCwMPXo0UOHDx/WsmXLLKnDz89Pv/32W5KhePv27VOlSpUs+40EexsyZIgOHTqkKVOmeGSCwzvdaziRw+GQr6+vihQpct8lDtOKp4fTZsiQIckSdHfy8/PTuHHj1KlTJ7fWQUt6Cpw6dUozZszQ1KlTFRsbq6eeekrXr1/XggULLJ00Trr9Q2nhwoU6fPiw80dRiRIlPDIBh13Gn9mphdROYmJiNG/ePEVGRqpPnz7Knj27tm/frty5c1tyBlC6PQlZ37599c0338jhcCghIUEbNmzQG2+8YclY57tt3bpVc+fOTfbMrLuX0rjTsmXLtGrVKpfubSVLltSECRPUsGFDy+qQbrd+bd261eMhfd26dfr444+d3f9LliypPn36WDZsxm7s9r3m7e3tPCEaHBys6OholShRQgEBATpx4oSltXhibPydEhISNGLECC1atEg3btzQn3/+qYEDB3psBn5PzoR853JFrVq1um9LtVXfsUOGDFHjxo21b98+3bp1S2PHjtW+ffu0ceNGrVu3zpIapNu9+KKjo5OE9BMnTjgn2EuvIiMjNWbMGJfv+169elm6QpFdbNmyRatXr9aKFStUpkyZJL2mrPxt0rJly2THpN85HOGRRx7RggULFBQU5LY6PLmco3S7t4cxxjk8887ejZkyZVJwcLAl8+UQ0h+gWbNmWr9+vZo2baoxY8boscceU8aMGTVp0iSP1lW0aFFL1z9NzjvvvOM8Qz9o0CA9/vjjqlmzpnP8mVU8PYPq3eLj4zV69Oh7hkErxvju2rVLDRo0UEBAgI4fP64uXbooe/bs+u677xQdHa1Zs2a5vQbp9o+lbt26KSQkRPHx8SpZsqTi4+PVtm1bvfPOO5bUkGj27Nlq166dGjVqpBUrVqhhw4Y6dOiQTp8+rVatWllaS0JCQpJhGdLtIGRFd947z5Y3bdpUffr00b59+zwyJk+SvvzyS3Xs2FGtW7d2hqwNGzaofv36mjFjhtq2bev2GuzqyJEjioyMVK1ateTn5+f8oWS18uXLa8uWLSpatKhq166td999V+fOndMXX3xh2Zws0oPHxlsR0gcPHqz33ntPDRo0kJ+fn8aOHaszZ85o2rRpHuku6smZkO9criixDk930HzkkUe0Y8cODRs2TGXKlHGO/960aZPKlCljWR1PP/20OnfurI8//tg5j9CGDRvUp08ftWnTxrI67GLXrl0qW7asli9frubNmysiIsI54fGGDRtUqlQpLV68WI8++qhb67Db8meBgYF64okn3H6clFi5cqXefvttDR482Dmk9tdff9WAAQP0zjvvKCAgQF27dtUbb7yhqVOnuq0OTw+nTfwe9/TwKrq7P4CXl5d69uypl19+2SUUe3t7a+fOnZa3pPfu3TvZ7Xd2RWnRooXHlgDzxPgzybMzqN7t3Xff1ZQpU/T666/rnXfe0dtvv63jx49rwYIFevfddy350m/QoIEqVKig4cOHu3Qz37hxo9q2bavjx4+7vYY7RUdHa8+ePbp8+bLKly/vkRNMZcuWVdeuXdWtWzfncxIWFqauXbsqb968ev/99y2rpUWLFoqJidHXX3/tXKf2jz/+0LPPPqugoCDNnz/frce/3+Rbd7JquEiJEiX04osvuqwNLt0ed/355587P9dWOXv2rHPJqGLFilk6R0Civ/76S0899ZR+/PFHORwOHT58WOHh4erUqZOCgoI0cuRIS+vZunWrLl26pLp16+rMmTNq166dNm7cqKJFi2ratGnJjot2hzp16uihhx5yjo3fuXOny9h4K8ZfFy1aVG+88Ya6du0qSVq1apWaNm2qq1evpvizlZbubh22eibk+Ph4ffzxx86eBfXq1dN7770nPz8/tx/bzm7cuKE+ffpo0qRJunXrlqTbvx1ffvllDRs2zDn3hlXunKi0ZMmSlk1cFx8frw8++EBr1qzR+vXrVb58eTVq1CjJpJj9+vXTihUr3D65blhYmLZu3aocOXLct+u2w+Fw64SYdlS6dGlNnjw52cmpX3zxRe3du1erVq1Sp06dHrj04z9hl+G0knT48GH9+OOPya5+c/ey3GnO4L42bdpkXnjhBZMtWzZTpUoVM27cOHP27Fnj5eVl9u7da3k9derUMf7+/iZLliymQoUKpkKFCiZr1qwmICDAPPzwwyYwMNAEBQV5pDZP2bJli8mePbvJnz+/adWqlWnVqpUpUKCAyZEjh9m2bZvl9YSHh5slS5YYY4zJmjWrOXLkiDHGmLFjx5o2bdpYUoO/v7/zuFmzZjWRkZHGGGOOHz9ufHx8LKnBbjJnzmyOHTtmjDEme/bsZteuXcYYY/bt22fy5MljaS3R0dEmIiLCeHt7m/DwcBMeHm68vLxM+fLlzYkTJyytxQ4yZcpkDh8+nGT74cOHLX2/Xr582XTs2NF4eXkZh8NhHA6H8fLyMp06dTJxcXGW1WGMMc8//7xp1KiROXHihMtneNmyZaZkyZKW1pKQkGCioqLM1atXLT1ucgICAsyBAwec/79v3z5jjDGbN282xYoVs6SGTJkymejoaJdtPj4+6fKza4wxgwYNMhkyZDANGzY0LVq0ML6+vqZjx44erSk+Pt4cPHjQ/PTTT2bdunUuF6vFxcWZXbt2mV27dln+PWKMMadPnzZ169Y1DofDBAUFmaCgIONwOEy9evXMmTNn3H78wYMHmyZNmpibN28aY25/Vg4dOpRkv4MHD6bb3yd24evra3bv3p1k+65du4yvr68x5vbvSD8/P7fW8cgjj5j58+cbY4xp06aNeeyxx8zPP/9s2rVrZ0qVKuXWY99p8uTJJmPGjCZ37tymXLlyJiIiwnkpX768249Pd/cHqFq1qqpWraoxY8Zozpw5mjZtmnr37q2EhAStXLlSISEhlo4tSmwlnz59unPW8osXL+qFF17QI488oi5duqht27Z67bXXtHz5crfWcu3aNY0bN+6eZ5isWGpMst8Mqolrf0q3l+i5ePGipNsz8w8YMMCSGnx8fJJdZubQoUNubxW8V2+P5Fg5Q3VQUJAuXbokScqfP7/27NmjMmXKKCYmxvIJfEJCQrR9+3atXr3a2bJRokQJNWjQwNI67CIkJESrV69OMrfGqlWrFBISYlkdvXv31rp167Ro0SJnN8yff/5ZPXv21Ouvv+5cv90KK1as0PLly1WgQAGX7UWLFn3gMjlpzRijIkWKaO/evR4fZmWHsfG3bt2Sr69vkrrcvRzP/Rw8eFDjxo1z+T7p3r17kvHQ7jBr1ix9+umnSXoWTJkyxSM9CzZv3qy2bdsqKioq2bG1Vk8mmzlzZku72d+tR48eunTpkvbu3ZtkotKePXu6faLS1q1ba9GiRRo8eLAGDhyoXLlyaceOHUm+S3bs2JHsrPzpwbx58+45RNKq39KSVLFiRfXp00ezZs1y/lY8e/as3nzzTecE2YcPH3b7v8t2GU774YcfavDgwerbt69lx7wTIT2FsmTJok6dOqlTp076v/buOyqqa/0b+HeGDoOCHaRbEKRYEI29KyKoKEZjA0uuohE7GBtYsILYsYCIMSJJUMQYLKASBXsoFsACggU0YInUAPv9g5dzHYox9+ecM8jzWYu1nHMmd38v4nD2OXs/T2pqKgIDA7FhwwZ4enpi0KBBtVZE/Nw2b96Mc+fOSbUVa9iwIby8vDB48GC4u7tj5cqVvBSfmjZtGs6ePYsxY8bA1tZWkH2SQMUyzA8n6EDFNoUlS5bAxsaG9zx6enp48eIFDAwM0KpVK24/3I0bN3hb3ubo6IjVq1cjLCwMQMWFSWZmJjw8PGS+96nqXqHbt2+jtLQUpqamACpuFCgoKKBz584yzVFV7969ce7cOVhaWsLZ2Rnu7u6IiYnBuXPnMGDAAF4yFBYWIjo6GsOHD4dIJEJ0dDSKi4sBVBQqOXv2LFavXl1tAiBr0dHRiI6OrvFmW1BQkMzHX7hwIebOnYuEhASpvZvBwcHYtm2bzMev9Msvv+Dnn39G3759uWPDhg2Dmpoaxo4dy+skPT8/v8aWeHl5ebwvkxWLxWjTpg1yc3MFn6TLw954xhhcXFyk/h6Kioowc+ZMqaJPfBV8+uWXXzBu3DjY2Njgq6++AlAxUbW0tERoaKjMP/MzMzMxbNgw7vXAgQMhEonw/PnzajeZ+DBz5kzY2Njg119/hY6ODu/XJp9S8VkkEsl0T++HhC5U2q5dO8TFxWHz5s0AgBkzZuDbb7/F48ePpT7vN27c+K9u8n8uT58+xcmTJ2ucIPPxIGH79u1YtmwZXFxcEBERAVdXVzx69Ag3btzA7NmzZT7+hw4cOICRI0dCT0+Pm4hnZWXBxMQEERERAID379/LvKZQ3759uS0iQrZzfP36NZydnXkbrxqZP6v/gpWWlrLjx48zBwcH3sbU0NBgFy5cqHb8woULTCKRMMYYe/ToEdPU1JR5lgYNGrDLly/LfJx/0qxZM3bmzJlqx6OiolizZs14z+Ph4cHWrVvHGGMsNDSUKSoqstatWzNlZWXm4eHBS4Y3b96wgQMHMi0tLaagoMD09fWZkpIS69WrF3v//j0vGRhjzNfXlzk4OLC8vDzuWF5eHhsxYgTbsmULbzkYYyw3N5c9e/aMMVaxFHL9+vXMwcGBLViwQCqfLO3Zs4cNHz6cey2RSFjXrl1Z3759Wd++fVmLFi2Yn58fL1kqeXl5MbFYzGxtbdmIESPYyJEjpb74Eh4eznr06MEaNWrEGjVqxHr06MFOnDjB2/iMMaampsYtn/7QnTt3mLq6Oq9Z7Ozs2PLlyxljFT8njx8/ZmVlZczZ2ZmNHj2a1yyMMXby5EnWs2fPGpdC8unGjRssJiaGMVaxjHfIkCFMU1OTderUiSUkJPCSwcXF5ZO++GJiYsJWrFhR7fjKlSuZiYmJzMcXi8XVlk1X/swKQV1dvcbtM3yp+hn64ZeDgwNTU1NjYrGYtzwSiYT98ccf1Y7fvn2bl2vFqsrLy5mfnx9r2bIlt62oZcuWzN/fn5WXl/Oa5fz580xdXZ1ZWFgwRUVF1qFDB6alpcUaNmzI+vXrx0sGU1NT9uOPPzLGpLcnrlixgs2ePZuXDB8qKytjv/32G9u2bRvbtm0bi4qKYmVlZbyM/fLlSzZ06FCmqKjIxGIx69q1q6D/lqdOncr27Nkj2Pg0Sa9jvvnmG2ZsbMzCw8NZVlYWy8rKYuHh4czExIRNnDiRMcbY0aNHWefOnWWexczMjCUmJsp8nH/y3XffMT09PRYaGsoyMzNZZmYmO3r0KNPT02Pu7u5Cx2Px8fHM19eXnTx5kvexL1++zHbt2sU2btzIzp07x/v4urq67M6dO9WOJycnMx0dHd7zCK1nz55SPwcf/kJmjLHDhw+zbt268ZqpRYsWLCQkhNcxP/T3338zb29vudjP279/f+bs7Cy197qgoIA5OzuzAQMG8JolOTmZNWvWjA0dOpQpKyuzMWPGMDMzM9a8eXOu3gSftLS0mLKyMhOLxUxVVZXb21r5xQd52hsvT9TU1Gq8kE1LS5P53lHGGBOJRGzYsGFcTZhRo0YxRUVFNnjwYKljfOnXrx/77bffeBvvU504cYKZm5szLS0ttn79et7GdXR0ZL179+ZuUjPG2NOnT1mfPn14vRFbk3fv3rF3794JNn6XLl3YypUrGWP//X38119/MUdHR7Z7925eMqipqbGMjAzGGGNNmzblbjampaWxRo0a8ZKBMcZKSkqYgoKCoDdiXV1dWYsWLZiPjw/z8/NjpqamrG/fvoLl8fHxYU2aNGFTpkxhW7Zs4W5cVH7JGi13r2P27t2L+fPnY9y4cdxSEEVFRUyZMgVbt24FULG06MCBAzLP4uvrCw8PDwQEBAjSdqbSli1bIBKJMHny5BorqPItNzcXjRs3BlCxTOj06dMoLCzkZel9TEwM5syZg6tXr6JBgwbo0aMHt7f27du3aN++PQICAnjrPf3u3Tu8evWq2vFXr15x+8NlrbS0FGVlZVJLU3NychAQEID8/Hw4OjqiZ8+evGR5+PCh1N5EVVVVqT2btra2vC9vKykpqVbJlU+KiorYtGkTJk+eLFiGStu2bcOQIUOgp6fHVStPTEyEqqqqzGt8VGVhYYG0tDTs3LkTmpqaeP/+PZycnDB79mzo6OjwmgUA/P39eR+zKiZHe+PlSd++ffH7779Xq+lw+fJlXj7rp0yZUu3YxIkTZT5ubb777jssXLiQqw9Tta0knz3sgYql3J6enrh9+zbmzJkDT09PmfaYrmrnzp1wdHSEkZGR1BJmCwsL/PDDD7zlqInQ/eLv37/P7clXVFREYWEhJBIJVq9ejREjRmDWrFkyz9CiRQvk5eXB0NAQBgYGuHr1Kqytrble3XxRUlKCgYEB7zUbPnTu3DkEBwdjyJAhACpqOZmZmaG4uJj3bV4AsG/fPkgkEly6dKlaFw2RSCTzbk3Ugq2Oev/+PdcawsTEBBKJhPcMr169wtixYxEbGwt1dfVqvwj56Af+oYKCAjx69AgA0KpVqxr3c8pScnIyHBwckJWVhTZt2iA0NBRDhw5Ffn4+xGIx8vPz8fPPP2PkyJEyy+Do6Ih+/fpVa2VVafv27bhw4YLMW3xVmjx5Mn7//Xf4+vpyPTevXbuGxYsXo1evXjh06JDMM7i6ukJZWRl79+4FAPz1119o3749ioqKoKOjg3v37iEiIkJqT6WsqKmpISEhgdufX1VKSgo6dOiAoqIimWep5OHhAYlEwltRw5qMGDECTk5ONV7s862goABHjhxBSkoKgIoCXBMmTKj37aTkRfv27REYGIhu3boJHUVQH9bBef78OVauXImxY8dy35erV6/ip59+gre3N2bOnClUTEHUVKyusn87n4Xj7t27Bw8PD0RFRWHy5Mnw9vYWZI8+UHGD6/z581Kfa3wWKu3YseMn7yXms1BaixYtcOHCBZiZmcHc3BwbNmyAo6MjEhMT0aNHD7x//17mGaZPnw59fX2sWrUKu3btwuLFi9GjRw/cvHkTTk5OvNUuAIDAwECEh4fj8OHDgrRyVlBQwLNnz9CiRQvumIaGBu7evQsjIyPe8wiNJunkfzZw4EBkZmZi2rRpaN68ebUPYL4uuENCQtClSxepoihARSGfsLAw3p7Q2dnZQVFREZ6enjh8+DBOnTqFIUOGYP/+/QAq7u7funULV69elVkGQ0NDREVFVfteVEpJScHgwYNl2t/yQwUFBVi0aBGCgoK4yseKioqYNm0aNm/eLFVkSVbatm2LnTt3cgVydu3aBR8fH9y7dw8NGzaEh4cHrl+/jgsXLsg8S5s2bbBhw4ZaCzmFhYXh+++/x8OHD2WepZK7uztCQkJgZWUFKyurajfb+CicExAQAG9vb0yYMAGdO3eu9nPh6Ogo8wzy5N27d1xx0NOnT3MrhICKixh7e3uhogGo+GytWmDpw2KmshQZGYlNmzZhz549vBWKk0efWjVdiGrmQvun7geyXvmXlZWFlStX4ocffsDw4cPh4+NT6+/k+sLb25v7c1FREXbv3g1zc3OpQod3796Fm5sb1q9fz1uukSNHwt7eHjNmzMCiRYsQEREBFxcXhIeHQ1tbG+fPn5d5hvLycpSXl3PFj0NDQxEXF4c2bdrgP//5D5SVlWWeoVLHjh3x8OFD/P333zA0NKz2u1jWN1AUFBSQnZ0t1YWoQYMGSExM/GhP+y8VTdLroJs3b9baqoGvarJARVuR+Ph4blmoUMRiMTQ0NBAcHCw1+cnJyYGuri5vFyhNmjRBTEwMrKys8P79ezRo0AA3btzgqpinpKSgW7duePPmjcwyqKqq4s6dO9WWPVaqXG5dWFgosww1yc/Pl1rlwMfkvJKGhgbu3LnDfcA7OTlBT08P27dvB1DxtKNv3754+fKlzLO4u7vj/PnzuHXrVrUK7pVbIgYOHMhrRfN+/frVek4kEiEmJkbmGT424eBzkhETE4Pw8HBkZGRAJBLBxMQEo0ePRu/evXkZHwBOnTqFFStWcF0SNDU1uVY0QMX349ixYxgzZgxvmYCKf8MeHh4ICwtDbm5utfN8/R1pa2ujoKAApaWlUFZWrrbCge8VXIRUpa6uDpFIhDlz5nDbzWrCx83H8vJyBAcHS32uGRsbY8yYMZg0aZIgXXmmT58OHR0drFmzRur4qlWrkJWVxUtHkUqPHz/G+/fvYWVlhfz8fCxcuJCbIPv5+fGylTMzMxP6+vrV/i4YY8jKyoKBgYHMM1T68GZKTVatWiXT8cViMRo2bCj1vXjz5g0aNGggdZ3A5+e8kNX/aU96HRMaGorJkydjyJAhOHv2LAYPHoy0tDTk5ORg1KhRvGZp164d75O92nh7e2PSpElITk6Gl5eXIBny8vK4JToSiQQaGhpS+84+7NMtK5X9v2ubpCclJQmyn/XFixd48eIFevfuDTU1NW7ZIR9UVVWlfk6vXr3KtYKpPM/HkjYA+P777xEWFgZTU1PMmTMHbdu2BVDR43jnzp0oLS3F999/z0uWSnysIPgnVdu+CWHmzJnYt28ftLW10bZtWzDGEBcXh507d8LNzQ07duzgJce+ffvw3XffSR17+PAhTExMAACbNm1CUFAQ75P0JUuW4MKFC9izZw8mTZqEXbt24dmzZ9i7dy+vtT/kYW88qRvu3btX44W1rCfHlduVNm/eLPW75kN83HxkjMHR0RGnT5+GtbU1LC0twRjD/fv3uafFJ06ckGmGmvz000+4efNmteMTJ06EjY0Nb5P0srIyPH36lKtRoKGhgYCAAF7G/pCxsTFevHhRrUd8Xl4ejI2NeV0JI+tJ+D85ePCgoONXFR0dDUdHR5iYmCAlJQUWFhbIyMgAYwydOnWSfQCZl6Yjn5WlpSXbuXMnY+y/lSjLy8vZjBkzuAqVfDlz5gzr3r07u3DhAvvzzz/Z27dvpb74IhKJWE5ODouPj2ctWrRgo0ePZgUFBSw7O5vXNicikUiqDU3VFjR85JkzZw6zsLCosfpxQUEBs7CwYN99951MM3zozz//ZP3792cikYiJxWKukrmrqytbsGABLxn69+/PPD09GWOMxcbGMrFYzJ4/f86dP3v2LGvVqhUvWRhj7PHjx2zIkCFMLBZz7WfEYjEbMmSIVKV3wp/w8HCmrKzMDh48KNUCqKysjAUGBjJlZWUWERHBSxYjIyOWkpLCva7aASApKYk1bdqUlywf0tfX59p/ampqctXEQ0JCmJ2dHe95iLTr16+zjRs3soULF7L58+dLfdU3jx49YlZWVtxn64efs3xeEwgtKCiIaWpqci0LPxQdHc00NTXZoUOHeM/VvHlzdvDgwWrHDx48yHvbXBUVFcFaBVaqeu1YKSMjg/fWn4wx9vr1a7Z//37m6enJcnNzGWOM3bp1iz19+pT3LEITuvo/LXevYz4soNC4cWNcvHgRlpaWuH//Pvr3748XL17wlqVy6UlNS3T4XKKqoKDA3YXMzMyEo6MjRCIRAgIC0L17d95yiMVi2NnZcRUoIyMj0b9/f25pd3FxMaKiomSaJycnB506dYKCggLmzJnDFShLSUnBrl27UFZWhtu3b6N58+Yyy/ChyZMn4+XLlzhw4ADMzMyQmJgIExMTnDlzBgsWLMDdu3dlnuHSpUuws7ODjo4OXrx4gfHjx0sVYnFzc0N+fj4vRew+lJeXx+09b926tSBFWioJtYWmsLAQ0dHRGD58OABg6dKlKC4u5s4rKChgzZo11bYGfG6Ojo5o3759rXshPTw8kJKSgoiICJnmACpWdqSkpHBFcm7evAlra2uuVkB6ejratWsn9X3ig0Qiwb1792BgYAA9PT2Eh4fD1tYW6enpsLS05G01yoeE3BsvT3x8fLB8+XKYmppWqw/D15YVeeLg4AAFBQUcOHAAxsbGuH79OnJzc7Fw4UJs2bKFt+4mQhs8eDD69+8PT0/PGs/7+Pjg0qVLvHeu2LBhA7y9vTFjxgypgrJBQUFYsWJFrXllwcbGBhs3bsSAAQN4G7PSggULAFR0FZkxY4ZUseOysjJcu3YNCgoKuHLlCm+ZkpKSMHDgQDRs2BAZGRlITU2FiYkJli9fjszMTISEhPCWRR5oamoiISEBrVq1gra2Ni5fvoz27dsjMTERI0aMQEZGhkzHp+XudcyHS6YrlzZbWlrizZs3KCgo4DXLx5bJJicn85bjw/tMBgYGiIuLw4QJEzBo0CDeMgDVC+XV1IJG1kXsmjdvjri4OMyaNQtLly7lvjcikQhDhgzBrl27eJugA8DZs2dx5syZahVt27Rp84/FfT6XPn364NatWzh79ixatGgBZ2dnqfMdOnTgLhT41KhRI0HGrUrILTSHDh3Cr7/+yk3Sd+7cifbt23P7jFNSUqCrq1trt4LP5fbt21i+fHmt552cnGot9ve5NWrUCA8fPuQm6VVbNz548ECQGzomJiZIT0+HgYEB2rVrh7CwMNja2iIyMhJaWlq85ZCXvfHyZNu2bQgKCoKLi4vQUeRCfHw8YmJi0KRJE4jFYojFYvTs2RPr16/H3LlzuXoPX7qkpCRs2rSp1vN2dnZcbRY+eXp6wsTEBNu2beNawJmZmeHgwYMYO3Ysr1nWrl2LRYsWYc2aNTUWLZXlTb/Kn0PGGJKTk6UKxCkrK8Pa2hqLFi2S2fg1WbBgAVxcXLBp0yap9njDhg3DN998w2sWeaChocHdCNbR0cGjR4/Qvn17AMCff/4p+wAyf1ZPPqvx48czX19fxhhjq1evZk2bNmXTp09nhoaGbNSoUYJme/fuHdu7dy/r0qULr0vKvLy8WH5+frXjK1euZH379uUth7zJy8tj169fZ9euXWN5eXmCZJBIJCwtLY37c+Wy3Rs3brBGjRoJkolIE3ILTc+ePdnJkye511WXdh8+fJh169ZNphkYq1jy+OzZs1rPP336lKmqqso8B2OMff3118zBwaHW8/b29mzs2LG8ZPmQn58f27ZtG2OMsXPnzjFVVVWmoqLCxGIx8/f35y2Hm5sbMzMzYz///DNTU1NjQUFBbM2aNUxPT4/98MMPvOWQJy1atOA+ZwljWlpa3BJmExMTbrn3w4cPmZqampDReKWkpCS1tauqZ8+eMWVlZR4TyZ/KrRAfboeo3CLB13Wsi4sLr1tEP6ZBgwbs4cOHjDHp38cZGRlMRUVFyGiCGDFiBNu3bx9jjLGFCxey1q1bs7Vr17JOnTqxAQMGyHx8epJex+zcuZMrSrJs2TIoKSkhLi4Oo0eP/uiTIFmKjY1FYGAgfvnlF+jq6sLJyQm7du3ibfzaCl38U5XKL522tja6dOkiaIZevXohJCSEq+IqEolQXl6OTZs2fbSqOOHPo0ePuJZeysrKyM/Ph0gkwvz589G/f3+Z/juq7DZQSVVVVaqCq62tLWbPni2z8SuVlJRUaz33IUVFxWrLqmXFw8MDX331FZydnbFkyRKp4oIbN27E+fPnERcXx0sWoKKo3+bNm3Hy5EmUlJTg+fPnWLVqFVJSUnDr1i20bt2aK7zEh8jISISEhKBv375wdXVFr1690Lp1axgaGuLIkSOYMGECb1nkxfz587Fr1y4qqvf/WVhYcC2bunbtik2bNkFZWRn79u3jCjDWB2VlZVxbr5ooKChItXfkW0lJCV6+fFmtcCif1czloXCqPBVLU1FRwbt376odT0tLk2qLVl/4+flxW7m8vb3x/v17HDt2jKv+L2s0Sa9jPlzmKBaLed2786Hs7GwEBwcjMDAQ7969w9ixY1FcXIwTJ07A3NxckEw1VXIViURwcHAQJA+pqEQ9YMAA3Lx5EyUlJViyZAnu3r2LvLw8XvdZkdoJuYXmzZs3UnurX716JXW+vLyct73XK1askNoT+CE+txJ17NgRx44dw/Tp06vVA9DW1kZoaCg/VWX/v3Xr1sHLywsDBw6Empoatm3bhpcvXyIoKIiX9kRV5eXlcROtBg0acK14evbsiVmzZvGeRx4sWrQI9vb2aNWqFczNzavdcOKzNas8WL58Ode2cPXq1Rg+fDh69eqFxo0b49ixYwKn4w9jDC4uLlydnKr4rmtR6cGDB5g6dWq1m42M53pGQMV2OHkgL62VHR0dsXr1aoSFhQGouIbOzMyEh4cHb1u+qmIfbNvk24c39YSo/k+T9DqgprtateGjaI6DgwNiY2Nhb28Pf39/DB06FAoKCoK0rgAq+lyOGjUKycnJEIlE1f5B18c9ivLCwsICaWlp2LFjBzQ1NfH+/Xs4OTlh9uzZgrSCI9X17t0b586dg6WlJZydneHu7o6YmBicO3dO5sV09PT0cOfOHa7AYVVJSUnV6hnIQu/evZGamvqP7+HLiBEjMGjQIJw5cwYPHjwAUFHHYfDgwdX2TMpaSEgIdu/ejf/85z8AgPPnz8Pe3h4HDhz4aH97WZGXvfHyZO7cubhw4QL69euHxo0bC3IxK0+GDBnC/bl169ZISUlBXl4etLW1Bfne3Lp1C/fv3wcAmJub83aTrWqdnJrIuk5OTVxcXKCoqIhTp05BR0dH8J/XN2/eIDAwkPs7at++PaZOnYqGDRvyMr48tVb29fXFmDFj0KxZMxQWFqJPnz548eIFvvrqK6xbt47XLCEhIdi8eTP3O7Bt27ZYvHgxJk2axFuGGzduoLy8HF27dpU6XlnUr2rNmM9O5gvqyf9Z1b0yNX3xuX9GQUGBzZ8/v9oeOEVFRXb37l1eMnxo+PDhbMSIEezVq1dMIpGwe/fusd9//53Z2tqy2NhY3vMQxgIDA1lRUZHQMcgnyM3N5fZjl5WVsfXr1zMHBwe2YMECmdcymDt3LjM3N6+1ZaC5uTmbO3euTDOQj1NWVmaZmZlSx1RUVFhWVpYgeeRlb7w8kUgk7NSpU0LHIFXk5OSwfv36MZFIxLS1tZm2tjYTiUSsf//+Nbbcqi/U1dXZ/fv3hY7BGPtvfZyWLVuyUaNGsVGjRjE9PT3WuHFjduvWLV4yyFNr5Uq///4727VrF9u4cSM7f/487+P7+voydXV1tmTJEhYREcEiIiLY4sWLmbq6OvPz8+MtR5cuXdhPP/1U7fgvv/zCbG1tZT4+tWCrAy5duvRJ70tOTsacOXNknAa4evUqAgMDcezYMZiZmWHSpEkYN24cdHR0kJiYyPty9yZNmiAmJgZWVlZo2LAhrl+/DlNTU8TExGDhwoX1ppKrPPmwLR4A6OrqIi4ujqtYLSShnmrIo9LSUvz4448YMmQIr1X/K+Xk5KBDhw5QVlbGnDlzpPZf79y5E6Wlpfjjjz8EyUYqKCgoIDs7W2o/oqamJpKSkmBsbMxbjqp74wcMGIBVq1bh5cuXguyNlyeGhoY4c+YM2rVrJ3QUQTk5Of3jexQVFdGiRQsMGjRI5lvhvv76azx+/BghISEwMzMDULEtb8qUKWjdujWOHj0q0/HlVZcuXbB161b07NlT6ChcTYv9+/dz+/dLS0sxffp0PH78GLGxsTLPIA+tlePj45Gbm8t1WgEquq+sWrUKBQUFGDlyJHbs2FHr1onPzdjYGN7e3tVWehw6dAheXl5IT0/nJYdEIkFSUlK1Whbp6emwsrLitgrKCi13rwM+tmfmr7/+wtGjR3HgwAHcunWLl0l6t27d0K1bN/j7++PYsWMICgrCggULUF5ejnPnzkFfX1+qdYOslZWVceM1adIEz58/h6mpKQwNDf9xCSuRjar3/v76669qxWH49vLlS4wbNw4XL17klsW+efMG/fr1Q2hoaL0siqKoqIiZM2dyNy349mHLQE9PT6mtKoMGDcLu3btpgi4wVsO+1qKiIsycOVNq6b2s903K2954eeLl5YVVq1bh4MGDtdZVqA8+ZXlyeXk5Hjx4gAMHDmDRokVYvXq1zPJERUXh/Pnz3AQdqLgxvGvXLgwePFhm48q7jRs3YsmSJfDx8YGlpWW1Ggp8bNusdPPmTakJOlDxe3HJkiWyX8r8/8lDa+XVq1ejb9++3CQ9OTkZM2bMwJQpU2BmZobNmzdDV1cXXl5evOR58eIFunfvXu149+7deblpUUlFRQU5OTnVJukvXrz4aFHGz4Um6XWU0BXVgYq7f1OnTsXUqVORmpqKwMBAbNiwAZ6enhg0aBBOnjzJSw6q5Eo+xXfffYe//voLd+/erfZUY+7cufX2qYatrS0SEhIEm+gYGxsjKioKeXl5ePjwIYCKfaRC9AIn1dW0r3XixIm855C3vfHyZPv27Xj06BGaN28OIyOjapOe27dvC5SMX/+mSvapU6fg5uYm00l6eXl5jV0jlJSUBL9pLaSBAwcCQLWaJ0yAwnENGjRAZmZmtVUoWVlZvD1sErIuTKWEhASuCw9QsU/e1tYW+/fvBwDo6+tj1apVvE3SW7dujbCwMHz//fdSxysrq/Nl8ODBWLp0KSIiIribgG/evMH333+PQYMGyXx8mqTXIfJYUb2SqakpNm3ahPXr1yMyMhJBQUG8jU2VXOWPSCSSKgZT9bUQ6KlGzdzc3LBgwQJkZWWhc+fO1QqT8bWEuFGjRrC1teVlLPLp5KU9UGZmJoYNG8a9HjhwIEQiEZ4/f85LcUF5NnLkSKEj1Dk9e/aU+ZPS/v37w93dHUePHoWuri4A4NmzZ5g/fz5vky95JA9tzyp9/fXXmDZtGrZs2cI9ub1y5QoWLVqEcePG8ZJBHlorv379WmrV2qVLl2BnZ8e97tKlC7KysnjJAlS0O/v6668RGxuLHj16AKj4e4mOjuYqz/Nhy5Yt6N27NwwNDdGxY0cAFTc0mjdvjsOHD8t8fNqTXkd8WFF9woQJXEV1JSUlQfaByzshK7mSivaADRs25L7/b968QYMGDao98apsn8QHTU1N/P777+jQoYPU8T/++AN9+vT5V10UviQ1PYWs7JLA91MN8l+3b9+GkpIS10c+IiICBw8ehLm5Oby8vKCsrCxwQn7Jy954Qj5VVlYWHB0dcffuXejr63PHLCwscPLkyXp/c0kelJSUYPHixQgICEBpaSkYY1BWVoabmxvWrVsHNTU1oSPywtDQEIcPH0bv3r1RUlICLS0tREZGcjeTkpOT0adPH16v2W7duoWtW7dy2/HMzMywcOFCbrLMl/z8fBw5cgSJiYlQU1ODlZUVxo8fX+Mqmc+NJul1hKKiIubOnYtZs2ZJLfWgSTqRR4cOHfqk931Ki5jPZcSIEXjz5k21pxoTJkyAtrY2jh8/zlsWefLkyZOPnq9v+32FbsdTqUuXLvD09MTo0aPx+PFjtG/fHqNGjcKNGze49pf1iVgshp2dndTe+MjISPTv35/XvfGE/BuMMZw/fx4pKSkAKiYalcu9+XT48GEEBAQgPT0d8fHxMDQ0hL+/P4yNjTFixAje88jL52ylgoICPHr0CADQqlUr7NmzB5s3b0Z2drbMxnz+/Dn8/PywcuXKavvw3759i7Vr12LRokW81GWZNWsWEhMTsXHjRpw4cQKHDh3C8+fPuZvBR44cgb+/P27cuCHzLOS/aJJeR8hbRXV5UlRUhB07duDChQt4+fJltb1e9WU/Hvk4eqpB/snNmzcxZMgQqKmpcUvvb9y4gcLCQpw9e5bXTgANGzbE7du30apVK2zcuBExMTE4c+YMrly5gnHjxvG69FAeuLq6ftL75GV5Pp/KysqwdetWhIWFITMzEyUlJVLn+Xz6ReTPnj17sHLlSsybNw/r1q3DnTt3YGJiguDgYBw6dIj35efy8DlbXFwMLy8vnDt3DioqKli8eDFGjhyJgwcPYvny5VBQUMDs2bPh4eEhswyLFi3Cu3fvsG/fvhrPz5w5Ew0bNsTGjRtllqHSn3/+CScnJ1y+fBkSiQSHDh2S6tE+YMAAdOvWjfde6UDFNX7VzzQ+iws+evQI/v7+Ul2B3N3d0apVK5mPTZP0OiY/P5+rqH79+nWUlZXBz88PU6dO5bWiujyZMGECzp49izFjxqB58+bVlrivWrVKoGRE3sjLUw15dO/evRov8B0dHQVKxD95aMdTqUGDBrh16xbatGmDQYMGYfjw4XB3d0dmZiZMTU1RWFjIWxYi31auXIkDBw5g4cKFWL58OZYtW4aMjAycOHECK1euxNy5c4WOWO+Ul5cjODgY4eHhyMjIgEgkgrGxMcaMGYNJkybxuhXP3NwcPj4+GDlyJDQ1NZGYmAgTExPcuXMHffv2xZ9//slbFkA+Pmc9PDywd+9eDBw4EHFxcXj16hVcXV1x9epVfP/993B2doaCgoJMM1hYWCAgIKDWVnRxcXGYMWMG7t69K9McH3r79i0kEkm1/+95eXmQSCS8bbMqKCjAkiVLEBYWhtzc3Grn+dqGd+bMGTg6OqJDhw5Se+MTExMRGRkp++JxMu/ETmQmJSWFLV68mLVo0YKpqqoyBwcHoSMJokGDBuzy5ctCxyBy7tChQ6yoqKja8eLiYnbo0CEBEsmHR48eMSsrKyYSiZhYLGYikYj7s1gs5i3Hw4cP2Zw5c9iAAQPYgAED2HfffccePnzI2/iMMaaqqsru379f7fjdu3eZmpoar1n69evHJk+ezEJCQpiSkhJ78OABY4yxixcvMkNDQ16zEPlmYmLCTp06xRhjTCKRcP9utm3bxsaPHy9kNMGEhISw7t27Mx0dHZaRkcEYY2zr1q3sxIkTMh+7vLyc2dvbM5FIxDp06MDGjRvHvv76a+5zdsSIETLP8CFVVVXueyCRSNijR48YY4ylpaUxVVVVXrNU5hH6c9bY2JhFREQwxhhLTk5mIpGIubq6svLycl7GZ4wxdXV19uTJk1rPP3nyhKmrq/OWR2hmZmZsxYoVjDHG3NzcmJmZGfv555+ZmpoaCwoKYmvWrGF6enrshx9+4C1Thw4dmIeHR7XjHh4erGPHjjIfv373LanjKiuqP336tN62jwIq+krW11UE5NO5urri7du31Y7/9ddfn7yU9kvk7u4OY2NjvHz5Eurq6rh79y5iY2NhY2ODixcv8pLhzJkzMDc3x/Xr12FlZQUrKytcu3YN7du3x7lz53jJAPy3HU9VfLbjqeTv74/bt29jzpw5WLZsGVq3bg0A+Pnnn2vsH0vqr+zsbK7AoEQi4T7nhg8fjl9//VXIaILYs2cPFixYgGHDhuHNmzfcUzctLS1eajkEBwcjNjYW0dHR+OOPP3D06FGEhoYiMTER58+fR0xMDEJCQmSeo5KxsTESEhKqHY+KipLqdsIXeficffr0KTp37gyg4om2iooK5s+fz+sKBzU1NWRkZNR6PiMjo94UrgOA6OhoriNTZGQkdu/ejdGjR0NRURG9evXC8uXL4ePjgyNHjvCW6f79+5g2bVq141OnTsW9e/dkH0DmtwEIkbHTp0+zoUOHcneKCamJSCRiL1++rHY8ISGBaWtrC5BIPjRu3JglJiYyxipWpaSkpDDGGIuOjmYdOnTgJYPQd6srfffdd0xPT4+FhoayzMxMlpmZyY4ePcr09PSYu7s7bzk+prCwkJWUlAgdg8iRtm3bsqtXrzLGGOvRowdbv349Y4yx0NBQ1rRpUyGjCcLMzIwdP36cMSb95Dg5OZk1btxY5uMPGjSI+zuoybp169jgwYNlnqPS/v37WcuWLVloaCjT0NBgR48eZWvXruX+zLfaPmdbtmzJ5s6dy0sGsVgsdT0gkUjY48ePeRm70rBhw9j06dNrPT9t2jRmZ2fHYyJh9ezZk4WEhDDGGNPQ0OBWGbRs2ZJdu3aNMcbY48ePmYaGBm+Z9PT0WFhYWLXjx44dY/r6+jIfn/qkkzrPxsYGRUVFMDExgbq6erW2CFQ0Rz6w/1/+gu+2eB07duT6tA8YMIDbAwdU7GtKT0/H0KFDec0kT8rKyrinF02aNMHz589hamoKQ0NDpKam8pLh/v37NfY+nTp1Kq9VzLds2QKRSITJkyejtLQUQEUHjVmzZmHDhg285fgYVVVVoSMQOTNq1ChER0eja9eu+O677zBx4kQEBgYiMzMT8+fPFzoe79LT02ts06SiooL8/HyZj5+UlIRNmzbVet7Ozg7bt2+XeY5K06dPh5qaGpYvX46CggJ888030NXVxbZt23jrBf6hqp+zrErbMz4wxuDi4sJ1iygqKsLMmTOlOkUAsu0WsWjRIgwaNAgNGzbE4sWLuSruOTk52LRpE4KDg3H27FmZjS9vXr16hfj4eEyaNAkmJiZIT0+HgYEB2rVrh7CwMNja2iIyMhJaWloyz7J69WosWrQIM2bMwLfffovHjx9zK9iuXLmCjRs3YsGCBTLPQZN0UueNHz8ez549g4+PT42F44iwQkJCsHnzZjx48AAA0LZtWyxevBiTJk3iZfyRI0cCABISEjBkyBBIJBLunLKyMoyMjDB69GhessgjCwsLJCYmwtjYGF27dsWmTZugrKyMffv2wcTEhJcMTZs2RUJCglR7SaDi76xZs2a8ZAAqfh62bduG9evXS7XjUVdX5y1DJarYTT7VhzeQvv76axgYGCA+Ph5t2rSBg4ODgMmEUbm8u2r7SL6Wd+fl5X20bVbz5s3x+vVrmef40IQJEzBhwgQUFBTg/fv3vH6uVlXb5+yePXtgbGws07Znlaq2f504caLMx6yqX79+2LVrF9zd3bF161Y0aNAAIpEIb9++hZKSEnbs2IH+/fvznkso165dQ1xcHICK7YmJiYno06cPPD094eDggJ07d+Lvv/+Gn5+fzLN4e3tj5syZWLFiBTQ1NeHr64ulS5cCAHR1deHl5cVPQU6ZP6snRMbU1NRYQkKC0DFIDXx9fZm6ujpbsmQJi4iIYBEREWzx4sVMXV2d+fn58ZolODiYFRYW8jpmXRAVFcV++eUXxlhFISFTU1MmEolYkyZN2Pnz53nJ4O3tzbS0tNiGDRtYbGwsi42NZevXr2daWlps9erVvGSoydu3b9nx48fZvXv3eB97xYoVTEdHh23ZsoWpqqqyNWvWsGnTprHGjRuzbdu28Z6HkLpC6OXdVZdSV5Wdnc1rUU55UVRUxDw9PVnnzp1Z9+7duS0JQUFBTFdXl+nr67MNGzYIG1IAT58+ZX5+fszNzY3NmjWLbd26lWVlZQkdS66kp6ezX375hduaJ2sikYjl5ORIHXv37h179+4dL+NzORijFmykbuvUqRN2796Nbt26CR2FVGFsbAxvb29MnjxZ6vihQ4fg5eWF9PR0gZKRj8nLy4O2tjZvq1IYY/D394evry+eP38OoOJu9eLFizF37lzecowdOxa9e/fGnDlzUFhYCGtra2RkZIAxhtDQUF5XXLRq1Qrbt2+Hvb09NDU1kZCQwB27evUqfvzxR96yEPn34MEDXLhwAS9fvkR5ebnUuZUrVwqUSjhHjhyBl5cX96RWV1cX3t7eNRaB+tzEYjHs7Oy4pdRVFRcXIyoqSqZtpCq3eX2K27dvyyzHh+Sh7Rkhn0IsFiMnJwdNmzYVNAdN0kmdd/bsWXh7e2PdunWwtLSstie9QYMGAiUjqqqquHPnDleZutKDBw9gaWmJoqIimY7fqFEjpKWloUmTJv846axvy4enTp36Se8LCgqScRJpf/31FwAI0rGhRYsWOHPmDKytrfHjjz9i1apVSExMxKFDh7Bv3z788ccfvGXR0NDA/fv3YWBgAB0dHfz666/o1KkTHj9+jI4dO9bYqYDUT/v378esWbPQpEkTtGjRQupzTiQS8TYJk0dCLO/+1G4hBw8elFkGb29v7s9FRUXYvXs3zM3N8dVXXwEArl69irt378LNzQ3r16+XWY4PmZiYwN/fH46Ojrhz5w6srKzg4uKCwMBA2qZIAADx8fHIzc3F8OHDuWMhISFYtWoV8vPzMXLkSOzYsaPWG2Cfi1gsRsOGDf/x51LW1420J53UeZVFvwYMGCB1nDEGkUgk07vV5ONat26NsLAwfP/991LHjx07Vm3/sSxs3bqVm+zxWYCsLggODoahoSE6duwIoe/V9u/fH+Hh4dDS0pKanL979w4jR45ETEwMLznevn2LRo0aAajYvzp69Gioq6vD3t4eixcv5iVDJT09Pbx48QIGBgZo1aoVzp49i06dOuHGjRsyv0AhdcvatWuxbt06eHh4CB1Fbvz555/IyMiASCSCkZERr2PLcvL9qVatWsX9efr06Zg7dy7WrFlT7T1ZWVm8ZZKHtmdEvq1evRp9+/blJunJycmYNm0aXFxcYGZmhs2bN3N7wmXN29sbDRs2lPk4H0OTdFLnXbhwodZzycnJPCYhVXl7e+Prr79GbGwsevToAaCiMmZ0dHSN1bw/t8riMKWlpRCJRBgyZMhHC/rUJ7NmzcLRo0eRnp4OV1dXTJw4kZug8u3ixYvVCqMBFU+Afv/9d95y6OvrIz4+Ho0aNUJUVBRCQ0MBAK9fv+a9qjpV7Caf6vXr13B2dhY6hly4e/cuZs2ahStXrkgd79OnD/bs2QNTU1OBkgnnp59+ws2bN6sdnzhxImxsbHhbLVVWVgZlZWXutaKiolQhV0ISEhKkbiaFhoaia9eu2L9/P4CK39GrVq3iZZI+btw4QQssAjRJJ1+APn36SL3+66+/cPToURw4cAC3bt3CnDlzBEpGRo8ejWvXrmHr1q04ceIEAMDMzAzXr1+vsUWOrCgqKmLmzJm4f/8+b2PKu127dsHPzw/h4eEICgrC0qVLYW9vj2nTpmHw4MG8PN1ISkri/nzv3j2pqr5lZWWIiopCy5YtZZ6j0rx58zBhwgRIJBIYGhqib9++AIDY2FhYWlrylgOgit3k0zk7O+Ps2bOYOXOm0FEElZ2djT59+qBp06bw8/NDu3btwBjDvXv3sH//fvTq1Qt37twR/MKbb2pqarhy5Uq11WtXrlzh9eYjk4O2Z0S+vX79WupByqVLl2BnZ8e97tKlCy+rP+RldQftSSdfjNjYWAQGBuKXX36Brq4unJycMHr0aHTp0kXoaEQO9O3bF/PmzeNashFpT548QXBwMEJCQlBaWoq7d+/K/CmHWCzmfhnW9KtITU0NO3bs+OT985/DzZs3kZWVhUGDBnH//3/99VdoaWlxq0EIkSfr16+Hn58f7O3ta6zLwkurIDng4eGB8+fP1zj5LCwsRM+ePTF48GDe9mDLiw0bNsDb2xszZsyAra0tgIp2V0FBQVixYgU8PT15ySEPe/WJfDM0NMThw4fRu3dvlJSUQEtLC5GRkdx21uTkZPTp00fme8HFYjGys7MFv6FHk3RSp2VnZyM4OBiBgYF49+4dxo4di4CAACQmJsLc3FzoePWegoICXrx4Ue2DLjc3F82aNeO1XkBYWBiWLl2K+fPno3PnztXu3ltZWfGWRR5lZWXh4MGDCA4ORklJCVJSUmQ+SX/y5AkYYzAxMcH169elKqkqKyujWbNmglb7LSsrQ3JyMgwNDaGtrc37+FSxm3wKY2PjWs+JRCI8fvyYxzTC6dSpEzw9PTF27Ngaz4eGhmLTpk31spBeWFgYtm3bxq0mMzMzg7u7e63fK8KfsrIybN26FWFhYcjMzKy29as+FbWdNWsWEhMTsXHjRpw4cQKHDh3C8+fPuW0SR44cgb+/P27cuCFwUn7QJJ3UWQ4ODoiNjYW9vT0mTJiAoUOHQkFBAUpKSjRJlxO13Y18/vw5WrVqhcLCQl6zVCUSiep1gcHi4mJuufvly5cxfPhwuLq6YujQoTV+v7508+bNg6WlJaZNm4aysjL06dMHcXFxUFdXx6lTp7jl73ygit3kUzDGkJmZiWbNmkFNTU3oOILS0tLCzZs3q3UTqfTw4UPY2NjgzZs3/AYj5CNWrlyJAwcOYOHChVi+fDmWLVuGjIwMnDhxAitXrqw3K2GAioKPTk5OuHz5MiQSCQ4dOoRRo0Zx5wcMGIBu3bph3bp1AqbkD03SSZ2lqKiIuXPnYtasWVJ7rWiSLrzt27cDAObPn481a9ZIPZEtKytDbGwsMjIyeG1p9eTJk4+eNzQ05CmJfHBzc0NoaCj09fUxdepUTJgwAU2aNBE0071792p8kuDo6MjL+Hp6ejhx4gRsbGxw4sQJzJ49GxcuXMDhw4cRExNTrRiVLBkaGsLNzY0qdpOPKi8vh6qqKu7evctLxwx5VtvKrUo5OTlo2bIlSktLect0+PBhBAQEID09HfHx8TA0NIS/vz+MjY0xYsQI3nIAQElJSY2rcgwMDHjNQaS1atUK27dvh729PTQ1NZGQkMAdu3r1Kn788UehI/Lu7du3kEgk1VbS5eXlQSKRSBUg/JJR4ThSZ12+fBmBgYHo3LkzzMzMMGnSJIwbN07oWAQVrc+Aiqc8AQEBUh+0ysrKMDIyQkBAgEwzHDp0CN26deOq+da3Sfg/CQgIgIGBAUxMTHDp0iVcunSpxvfxUcTn8ePHGDVqFJKTk7nVDcB/i7fwtcrhzz//RIsWLQAAp0+fhrOzM9q2bYupU6di27ZtvGSoRBW7yacQi8Vo06YNcnNz6/0kHagoHFtbMbR3797x2m5yz549WLlyJebNm4d169Zxn2NaWlrw9/fnbZL+4MEDTJ06FXFxcVLH6/MqMnmSnZ3NFSaVSCR4+/YtAGD48OFYsWKFkNEEU1vrM6E60AiFJumkzurWrRu6desGf39/HDt2DEFBQViwYAHKy8tx7tw56OvrS/VcJvxJT08HAPTr1w/h4eGC7OfV0dHB4MGDcezYMXTr1g0nT5786Pv5elorLyZPniw3FUzd3d1hbGyM6OhoGBsb4/r168jNzcXChQuxZcsW3nI0b94c9+7dg46ODqKiorBnzx4AQEFBAe9746liN/lUGzZswOLFi7Fnzx5YWFgIHUcwjDG0bdv2o+f5/MzbsWMH9u/fj5EjR0p1a7CxscGiRYt4y+Hi4gJFRUWcOnUKOjo6cvO5Tyro6enhxYsXMDAwQKtWrXD27Fl06tQJN27c4Crhk/qJlruTL0pqaioCAwNx+PBhvHnzBoMGDfrHyRn5ciUmJmLSpElISkr66B5repogrCZNmiAmJgZWVlZo2LAhrl+/DlNTU8TExGDhwoW8bYvw8vKCv78/dHR0UFBQgLS0NKioqCAoKAj79+9HfHw8LzkAqthNPp22tjYKCgpQWloKZWXlanvT60vhqdpWA1VVtW2rrKipqSElJQWGhobQ1NREYmIiTExM8ODBA1hZWfFWk0VDQwO3bt1Cu3bteBmP/Duenp5o0KABvv/+exw7dgwTJ06EkZERMjMzMX/+fKkbPKR+oSfp5ItiamqKTZs2Yf369YiMjERQUJDQkeqdBQsWYM2aNdDQ0MCCBQs++l4/Pz+ZZrG2tkZsbCwAVNuHR+RHWVkZt+qlSZMmeP78OUxNTWFoaIjU1FTecnh5ecHCwgJZWVlwdnbmnmIoKCjw1qao0r59+yCRSGrciiASiWiSTjj+/v5CR5ALfE2+P5WxsTESEhKqbbWKioqCmZkZbznMzc3x559/8jYe+Xc+nIR//fXXMDQ0RFxcHNq0aQMHBwcBkxGh0SSdfJEUFBQwcuRI6oktgD/++AN///03AOD27du1Lq3ja8mdlpYWL+OQ/52FhQUSExNhbGyMrl27YtOmTVBWVsa+fftgYmLCa5YxY8ZUOzZlyhReMwD/3TJCyD8R4ueT/LMFCxZg9uzZKCoqAmMM169fx9GjR7F+/XocOHCAtxwbN27EkiVL4OPjU+OqnAYNGvCWhVQXGxuL7t27Q1GxYkpWuZWztLQUsbGx6N27t8AJiVBouTshpN6Ijo7G1q1bpXrFzps3DwMHDhQ4Wf125swZ5Ofnw8nJCQ8fPsTw4cORlpaGxo0b49ixY+jfvz9vWS5duoQtW7ZwPyPm5uZYvHgxevXqxVsGQv6tR48e4eDBg3j06BG2bduGZs2a4bfffoOBgQHat28vdLx668iRI/Dy8sKjR48AALq6uvD29sa0adN4y1C51avqjXEqHCcfautKkJubi2bNmtHfTz1Gk3RCiEz8/fffUFNTQ0JCglwUM9q9ezfc3d0xZswYfPXVVwCAq1ev4ueff8bWrVsxe/ZsgROSD+Xl5UFbW5vXIkc//PADXF1d4eTkhB49egAArly5guPHjyM4OBjffPONTMeXp60ipO64dOkS7Ozs0KNHD8TGxuL+/fswMTHBhg0bcPPmTfz8889CR6z3CgoK8P79+1rbw8nSP+3Vl7dtAvWNWCxGTk4OmjZtKnU8LS0NNjY2ePfunUDJiNBokk4IkRkTExMcP34c1tbWQkeBnp4ePD09MWfOHKnju3btgo+PD549eyZQMiIvzMzM8O2332L+/PlSx/38/LB//37u6bqs9OvXD8ePH4eWlhb69etX6/tEIhFiYmJkmoXUHV999RWcnZ2xYMECqQJl169fh5OTE54+fSp0REJIFU5OTgCAiIgIDB06VKqSe1lZGZKSkmBqaoqoqCihIhKB0SSdECIzgYGBCA8Px+HDhwXvbymRSJCQkIDWrVtLHX/w4AE6duyI9+/fC5Ss/po6deonvY+vApAqKiq4e/dutZ+Rhw8fwsLCAkVFRbzkIOTfkEgkSE5OhrGxsdQkPSMjA+3atavXP7eVNyj09PR4Ga9jx46fvPrn9u3bMk4jraCgAJmZmSgpKZE6bmVlxWsOUsHV1RUAcOjQIYwdO1aqK4OysjKMjIwwY8YMNGnSRKiIRGBUOI4QIjM7d+7Ew4cPoaurC0NDQ2hoaEid5/MixdHREcePH8fixYuljkdERGD48OG85SD/FRwcDENDQ3Ts2BHycL9YX18f0dHR1Sbp58+fh76+vkCpCPk4LS0tvHjxAsbGxlLH//jjD7Rs2VKgVMIpLy/H2rVr4evry9181dTUxMKFC7Fs2bKPtuP8v/qwWG1RURF2794Nc3NzqS1Wd+/ehZubm8wyVPXq1Su4urrit99+q/E87XkWxsGDBwEARkZGWLRoUbXrI0Jokk4IkZkRI0bwuqf4Y8zNzbFu3TpcvHhR6oLpypUrWLhwIbZv3869l9pb8WPWrFk4evQo0tPT4erqiokTJwq64mLhwoWYO3cuEhIS0L17dwAVe9KDg4Oxbds2XjLI2+oCIv/GjRsHDw8P/PTTTxCJRCgvL8eVK1ewaNEiTJ48Weh4vFu2bBkCAwOxYcMGrrbE5cuX4eXlhaKiIqxbt05mY69atYr78/Tp0zF37lysWbOm2nuysrJklqGqefPm4c2bN7h27Rr69u2L48ePIycnh7uRQYT14c8MIR+i5e6EkHqh6lOm2ohEIjx+/FjGaUil4uJihIeHIygoCHFxcbC3t8e0adMwePBgQW7wHD9+HL6+vlIdABYvXowRI0bwMr5YLP6k1QXHjx/nJQ+RfyUlJZgzZw6Cg4NRWloKRUVFlJWV4ZtvvkFwcDAUFBSEjsgrXV1dBAQEwNHRUep4REQE3NzceKs/0rBhQ9y8eRNt2rSROv7gwQPY2Njg7du3vOTQ0dFBREQEbG1t0aBBA9y8eRNt27bFyZMnsWnTJly+fJmXHKRmOTk5WLRoEaKjo/Hy5ctqn/u00qH+oifphBCZMTExwY0bN9C4cWOp42/evEGnTp14nQxT32n5pKKigvHjx2P8+PF48uQJgoOD4ebmhtLSUty9excSiYSXHKWlpfDx8cHUqVMFvWiVt9UFRH6Vl5dj8+bNOHnyJEpKSjBp0iSMHj0a79+/R8eOHatNDuuLvLw8tGvXrtrxdu3aIS8vj7ccampquHLlSrW/hytXrkBVVZW3HPn5+VxVeW1tbbx69Qpt27aFpaUl7/viSXUuLi7IzMzEihUroKOjIzerD4nwaJJOCJGZjIyMGu8CFxcXC15xuKysDMnJyTA0NIS2tragWUgFsVgMkUgExhjvTw8UFRWxadMmwZcH79q1C35+ftzqgqVLlwq+uoDIp3Xr1sHLywsDBw6EmpoafvzxRzDG6v1WCGtra+zcuVNqCxNQUSOFz04j8+bNw6xZs3D79m3Y2toCAK5du4agoCCsWLGCtxympqZITU2FkZERrK2tsXfvXhgZGSEgIAA6Ojq85SA1u3z5Mn7//Xd06NBB6ChEztByd0LIZ3fy5EkAFUV0Dh06hIYNG3LnysrKEB0djXPnziE1NZW3TPPmzYOlpSWmTZuGsrIy9O7dG/Hx8VBXV8epU6fQt29f3rKQ//pwufvly5cxfPhwuLq6YujQoTIt8FSTESNGwMnJCVOmTOF13I+pXF0QEhLC++oCIt/atGmDRYsW4T//+Q+AigKH9vb2KCws5P3fjjy5dOkS7O3tYWBgwNUfiY+PR1ZWFk6fPo1evXrxliUsLAzbtm2T2j7j7u6OsWPH8pbhhx9+QGlpKVxcXHDr1i0MHToUeXl5UFZWRnBwML7++mvespDqzM3NceTIEXTs2FHoKETO0CSdEPLZVV4gVj4V/ZCSkhKMjIzg6+vLa1V1PT09nDhxAjY2Njhx4gRmz56NCxcu4PDhw4iJicGVK1d4y0IquLm5ITQ0FPr6+pg6dSomTJggaLuZgIAAeHt7Y8KECejcuXO1artV97jyISsrCwcPHkRwcDBKSkqQkpJCk3QCoGKryMOHD6U6D6iqquLhw4e8tRyTV8+fP8euXbuQkpICoGJy7ObmBl1dXYGTCa+goAApKSkwMDCg9l5y4OzZs/D19eVWOBBSiSbphBCZMTY2xo0bN+TiQuDDi9dvv/0W6urq8Pf3R3p6OqytrfHu3TuhI9Y7YrEYBgYG/9hbODw8nLc8tRGJRLwtwZen1QVEfikoKCA7OxtNmzbljmlqaiIpKemTC2US2SspKcHLly9RXl4uddzAwEDmY//9999o164dTp06BTMzM5mPR/49bW1tFBQUoLS0FOrq6lBSUpI6z2cdBSJfaE86IURmairW9ubNG2hpafGepXnz5rh37x50dHQQFRWFPXv2AKh4qlDfqh/Li8mTJ8vVHuuqF9FCqLq64OjRo3Jxk4vIH8YYXFxcoKKiwh0rKirCzJkzpVaB8HWTS0hJSUmwsLCAWCxGUlLSR99rZWXFS6YHDx5g6tSpiIuLkzrOGOPtpp+SkhKKiopkPg753/n7+wsdgcgpepJOCJGZjRs3wsjIiNvz5uzsjF9++QU6Ojo4ffo0r0V8vLy84O/vDx0dHRQUFCAtLQ0qKioICgrC/v37ER8fz1sWQmojb6sLiPxydXX9pPcdPHhQxkmEJxaLkZ2djWbNmkkVoKyKzxUxPXr0gKKiIjw9PWus2s3X7z8fHx+kpaXhwIEDUFSkZ3OE1BU0SSeEyIyxsTGOHDmC7t2749y5cxg7diyOHTuGsLAwZGZm4uzZs7zm+fnnn5GVlQVnZ2duz+ahQ4egpaXFWx9sIn8KCwsRHR3N1UhYunQpiouLufMKCgpYs2YNL22TXFxcPml1QX2YeBHyqZ48eQIDAwOIRCI8efLko+81NDTkJZOGhgZu3bpVYzs4Po0aNQrR0dGQSCSwtLSsVmuDbvjJj6KiIpSUlEgda9CggUBpiNBokk4IkRk1NTWkpaVBX18f7u7uKCoqwt69e5GWloauXbvi9evXQkckBAEBAfj1118RGRkJoGJfb/v27aGmpgYASElJwZIlSzB//nwhYxJC/o8KCwu5f9ey1qVLF2zduhU9e/bkZbza/NOKC7rhJ6z8/Hx4eHggLCwMubm51c7z3Y6UyA9a90IIkRltbW1kZWVBX18fUVFRWLt2LQDw2gd72LBhOHr0KNcGbsOGDZg5cya3Lz43Nxe9evXCvXv3eMlD5M+RI0ewZMkSqWM//vgjTExMAFS0MNq1axdN0gmpo4qLi7Fz505s3rwZ2dnZvIy5ceNGLFmyBD4+PrC0tKxWEIyvJ6Q0CZdvS5YswYULF7Bnzx5MmjQJu3btwrNnz7B3715s2LBB6HhEQFQmlhAiM05OTvjmm28waNAg5Obmws7ODgDwxx9/oHXr1rxkOHPmjNTSZR8fH6lqqaWlpbz2ayfy5+HDh7C0tOReq6qqSlVRt7W1pZs4hMi54uJiLF26FDY2NujevTtOnDgBoGKSamxsDH9/f15vtA0cOBBXr17FgAED0KxZM2hra0NbWxtaWlrQ1tbmLQeRb5GRkdi9ezdGjx4NRUVF9OrVC8uXL4ePjw+OHDkidDwiIHqSTgiRma1bt8LIyAhZWVnYtGkT19/5xYsXcHNz4yVD1R09tMOHVPXmzRupGzmvXr2SOl9eXi51nhAif1auXIm9e/di4MCBiIuLg7OzM1xdXXH16lX4+fnB2dmZ104eFy5c4G2smjx69Ajr1q1DUFAQgIqWb+/fv+fOKygo4PLlyzA1NRUqIkFFi7XKVVsNGjTgHiL07NkTs2bNEjIaERhN0gkhMqOkpIRFixZVO07Lhok80dPTw507d2q9WE1KSuIKDRJC5NNPP/2EkJAQODo64s6dO7CyskJpaSkSExMFafXYp08f3sf80I4dO9C8eXPu9evXr7Fy5Uo0a9YMAHDs2DFs3boVAQEBQkUkAExMTJCeng4DAwO0a9cOYWFhsLW1RWRkpCDtaon8oEk6IeSzOnnyJOzs7KCkpISTJ09+9L2Ojo4yzyMSiapdoMlTb24ivGHDhmHlypWwt7evVsG9sLAQ3t7esLe3FygdIeRTPH36FJ07dwYAWFhYQEVFBfPnzxf8876goACZmZnVqnbLul97dHQ0AgMDpY6NHj2ae2prZGSE6dOnyzQD+Weurq5ITExEnz594OnpCQcHB+zcuRN///03/Pz8hI5HBETV3Qkhn1XVfrW14atfrVgshp2dHVRUVABU7P/q378/14amuLgYUVFRVEG1HsvJyUGHDh2grKyMOXPmoG3btgCA1NRU7Ny5E6Wlpfjjjz+knkoRQuSLgoICsrOz0bRpUwAVXRqSkpJgbGwsSJ5Xr17B1dUVv/32W43nZf07R1NTE/fv3+dWAc2fPx/Lly9H48aNAVS0rWvXrh0KCwtlmoP8OxkZGbh9+zZat24t8xs5RL7RJJ0Q8kX7p/YzlagCbv2Wnp6OWbNm4dy5c1zdApFIhEGDBmH37t3c0ydCiHz6pxuylfjqCz5hwgQ8efIE/v7+6Nu3L44fP46cnBysXbsWvr6+Ml+d07BhQ5w7dw62trY1nr9+/ToGDhyId+/eyTQHIeR/Q8vdCSFfNJp8k09hbGyMqKgo5OXl4eHDhwCA1q1bo1GjRgInI4R8iilTpki9njhxokBJKsTExCAiIgI2NjYQi8UwNDTEoEGD0KBBA6xfv17mk/T27dvj/PnztU7Sz5w5AwsLC5lmILWLj49Hbm4uhg8fzh0LCQnBqlWrkJ+fj5EjR2LHjh3cTSdS/9AknRAiE+Xl5QgODkZ4eDgyMjIgEolgbGyMMWPGYNKkSYLvEySkJo0aNar1opYQIr/k7YZsfn4+V6RNW1sbr169Qtu2bWFpaYnbt2/LfHxXV1fMmzcP1tbW1W4IREZGYsOGDfD395d5DlKz1atXo2/fvtwkPTk5GdOmTYOLiwvMzMywefNm6OrqwsvLS9igRDA0SSeEfHaMMTg6OuL06dOwtraGpaUlGGO4f/8+XFxcEB4ezvWwJYQQQr40pqamSE1NhZGREaytrbF3714YGRkhICAAOjo6Mh9/xowZiImJgYODA9q1a8d1r0hNTUVqaipGjx6NGTNmyDwHqVlCQgLWrFnDvQ4NDUXXrl2xf/9+AIC+vj5WrVpFk/R6jCbphJDPLjg4GLGxsYiOjka/fv2kzsXExGDkyJEICQnB5MmTBUpICCGEyI67uztevHgBAFi1ahWGDh2KI0eOQFlZGcHBwbxkOHr0KEaMGIHQ0FCkpqYCANq0aYOVK1di3LhxvGQgNXv9+rVUMdJLly7Bzs6Oe92lSxdkZWUJEY3ICSocRwj57AYPHoz+/fvD09OzxvM+Pj64dOkSzpw5w3MyQgghhH8FBQVISUmBgYEBmjRpInQcIjBDQ0McPnwYvXv3RklJCbS0tBAZGYkBAwYAqFj+3qdPH+Tl5QmclAil9v5IhBDyP0pKSsLQoUNrPW9nZ4fExEQeExFCCCH8+Pvvv9GqVSvcv3+fO6auro5OnTrRBJ0AAIYNGwZPT0/8/vvvWLp0KdTV1dGrVy/ufFJSElq1aiVgQiI0Wu5OCPns8vLyPtpTunnz5nj9+jWPiQj5NI8ePYK/vz93cW1ubg53d3e6WCKEfDIlJSUUFRUJHYPIsTVr1sDJyQl9+vSBRCLBoUOHoKyszJ0PCgrC4MGDBUxIhEbL3Qkhn52CggKys7PRtGnTGs/n5ORAV1cXZWVlPCcjpHZnzpyBo6MjOnTogB49egAArly5gsTERERGRmLQoEECJySE1BU+Pj5IS0vDgQMHoKhIz8RIzd6+fQuJRAIFBQWp43l5eZBIJFITd1K/0CSdEPLZicVi2NnZ1drfs7i4GFFRUTRJJ3KlY8eOGDJkCDZs2CB13NPTE2fPnuWlbRIh5MswatQoREdHQyKRwNLSEhoaGlLnw8PDBUpGCKkLaJJOCPnsXF1dP+l98tbXltRvqqqqSE5ORps2baSOp6WlwcrKipavEkI+2T/9HhTi99/Tp08BAHp6eryPTQj5d2j9DSHks6PJN6mLmjZtioSEhGqT9ISEBDRr1kygVISQukhefg+Wl5dj7dq18PX1xfv37wEAmpqaWLhwIZYtWwaxmGpIEyKPaJJOCCGEAJgxYwa+/fZbPH78GN27dwdQsSd948aNWLBggcDpCCHk31u2bBkCAwOxYcMGrtbG5cuX4eXlhaKiIqxbt07ghISQmtByd0IIIQQAYwz+/v7w9fXF8+fPAQC6urpYvHgx5s6dC5FIJHBCQoi8e/ToEdatW4egoCAAgIGBAfcEG6gorHr58mWYmprykkdXVxcBAQFwdHSUOh4REQE3Nzc8e/aMlxyEkH+HJumEEEJIFX/99ReAimWhhBDyqebNmwc1NTWsX78eQMVnyMqVK7ktM8eOHYOBgQECAgJ4yaOqqoqkpCS0bdtW6nhqaio6dOiAwsJCXnIQQv4d2ohCCCGEAOjfvz/evHkDoOLCunKC/u7dO/Tv31/AZISQuiI6OhqjRo2SOjZ69GhMmTIFU6ZMgYeHB6Kjo3nLY21tjZ07d1Y7vnPnTlhbW/OWgxDy79CedEIIIQTAxYsXUVJSUu14UVERfv/9dwESEULqmoyMDOjq6nKvp0+fjoYNG3KvjYyMuCrrfNi0aRPs7e1x/vx5fPXVVwCA+Ph4ZGVl4fTp07zlIIT8OzRJJ4QQUq8lJSVxf7537x6ys7O512VlZYiKikLLli2FiEYIqWPEYjGeP3/OtTnbunWr1PmcnBwoKSnxlqdPnz5IS0vDrl27kJKSAgBwcnKCm5ub1M0EQoh8oUk6IYSQeq1Dhw4QiUQQiUQ1LmtXU1PDjh07BEhGCKlr2rdvj/Pnz8PW1rbG82fOnIGFhQWvmXR1damKOyF1DE3SCSGE1Gvp6elgjMHExATXr19H06ZNuXPKyspo1qwZFBQUBExICKkrXF1dMW/ePFhbW8Pe3l7qXGRkJDZs2AB/f3+ZZkhKSoKFhQXEYrHUSqGaWFlZyTQLIeR/Q9XdCSGEEEII+UzGjx+PY8eOoV27dlyrtdTUVKSmpmL06NEICwuT6fhisRjZ2dlo1qwZxGIxRCIRarrcF4lEKCsrk2kWQsj/hibphBBCyAfu3buHzMzMakXkqvYZJoSQ2oSGhiI0NBRpaWkAgDZt2mD8+PEYN26czMd+8uQJDAwMIBKJ8OTJk4++19DQUOZ5CCH/Hk3SCSGEEACPHz/GqFGjkJycLPXkSSQSAQA9cSKEfFEKCwuhpqYmdAxCSA2oTzohhBACwN3dHcbGxnj58iXU1dVx9+5dxMbGwsbGBhcvXhQ6HiGEfBbFxcXw9fWFsbGx0FEIIbWgSTohhBCCit7Bq1evRpMmTSAWiyEWi9GzZ0+sX78ec+fOFToeIYR8suLiYixduhQ2Njbo3r07Tpw4AQA4ePAgjI2N4e/vj/nz5wsbkhBSK6ruTgghhKBiObumpiYAoEmTJnj+/DlMTU1haGiI1NRUgdMRQsinW7lyJfbu3YuBAwciLi4Ozs7OcHV1xdWrV+Hn5wdnZ2fqWkGIHKNJOiGEEALAwsICiYmJMDY2RteuXbFp0yYoKytj3759MDExEToeIYR8sp9++gkhISFwdHTEnTt3YGVlhdLSUiQmJnJ1Nggh8osKxxFCCCEAzpw5g/z8fDg5OeHhw4cYPnw40tLS0LhxYxw7dgz9+/cXOiIhpA56+vQpAEBPT4+3MZWVlZGeno6WLVsCANTU1HD9+nVYWlryloEQ8r+jSTohhBBSi7y8PGhra9OTJ0LIv1JeXo61a9fC19cX79+/BwBoampi4cKFWLZsGcRi2ZaFUlBQQHZ2Npo2bcqNnZSURMXiCKkjaLk7IYQQUotGjRoJHYEQUgctW7YMgYGB2LBhA3r06AEAuHz5Mry8vFBUVIR169bJdHzGGFxcXKCiogIAKCoqwsyZM6GhoSH1vvDwcJnmIIT8b+hJOiGEkHpt6tSpn/S+oKAgGSchhHwpdHV1ERAQAEdHR6njERERcHNzw7Nnz2Q6vqur6ye97+DBgzLNQQj539AknRBCSL0mFothaGiIjh074mO/Eo8fP85jKkJIXaaqqoqkpCS0bdtW6nhqaio6dOiAwsJCgZIRQuoCWu5OCCGkXps1axaOHj2K9PR0uLq6YuLEibTMnRDyf2JtbY2dO3di+/btUsd37twJa2trgVIRQuoKepJOCCGk3isuLkZ4eDiCgoIQFxcHe3t7TJs2DYMHD6aicYSQf+3SpUuwt7eHgYEBvvrqKwBAfHw8srKycPr0afTq1UvghIQQeUaTdEIIIeQDT548QXBwMEJCQlBaWoq7d+9CIpEIHYsQUsc8f/4cu3btQkpKCgDAzMwMbm5u0NXVFTgZIUTe0XJ3Qggh5ANisRgikQiMMZSVlQkdhxBSR+nq6sq8ijsh5MtET9IJIYTUex8ud798+TKGDx8OV1dXDB06VOb9jAkhX4akpCRYWFhALBYjKSnpo++1srLiKRUhpC6iSTohhJB6zc3NDaGhodDX18fUqVMxYcIENGnSROhYhJA6RiwWIzs7G82aNZNakVOVSCSiVTqEkI+iSTohhJB6TSwWw8DAAB07dvxokbjw8HAeUxFC6ponT57AwMAAIpEIT548+eh7DQ0NeUpFCKmLaE86IYSQem3y5MlUwZ0Q8n/24cT7Y5Nw6pFOCPkn9CSdEEIIIYQQGSsuLsbOnTuxefNmZGdnCx2HECLHqBoOIYQQQgghn0FxcTGWLl0KGxsbdO/eHSdOnAAAHDx4EMbGxvD398f8+fOFDUkIkXv0JJ0QQgghhJDPwMPDA3v37sXAgQMRFxeHV69ewdXVFVevXsX3338PZ2dnKCgoCB2TECLnaE86IYQQQgghn8FPP/2EkJAQODo64s6dO7CyskJpaSkSExOp9gUh5JPRk3RCCCGEEEI+A2VlZaSnp6Nly5YAADU1NVy/fh2WlpYCJyOE1CW0J50QQgghhJDPoKysDMrKytxrRUVFSCQSARMRQuoiWu5OCCGEEELIZ8AYg4uLC1RUVAAARUVFmDlzJjQ0NKTeFx4eLkQ8QkgdQZN0QgghhBBCPoMpU6ZIvZ44caJASQghdRntSSeEEEIIIYQQQuQE7UknhBBCCCGEEELkBE3SCSGEEEIIIYQQOUGTdEIIIYQQQgghRE7QJJ0QQgghhBBCCJETNEknhBBCCCGEEELkBE3SCSGEEPLZ9O3bF/PmzRM6BiGEEFJn0SSdEEII+QK4uLhAJBJV+xo6dOg//rdGRkbw9/eXfUhCCCGE/CNFoQMQQggh5PMYOnQoDh48KHVMRUVFoDSEEEII+V/Qk3RCCCHkC6GiooIWLVpIfWlra4MxBi8vLxgYGEBFRQW6urqYO3cugIrl6U+ePMH8+fO5p+8AkJubi/Hjx6Nly5ZQV1eHpaUljh49KjVefn4+Jk+eDIlEAh0dHfj6+lbL9Pr1a0yePBna2tpQV1eHnZ0dHjx4wJ1/8uQJHBwcoK2tDQ0NDbRv3x6nT5+W4XeJEEIIkW80SSeEEEK+cL/88gu2bt2KvXv34sGDBzhx4gQsLS0BAOHh4dDT08Pq1avx4sULvHjxAgBQVFSEzp0749dff8WdO3fw7bffYtKkSbh+/Tr3v7t48WJcunQJEREROHv2LC5evIjbt29Lje3i4oKbN2/i5MmTiI+PB2MMw4YNw99//w0AmD17NoqLixEbG4vk5GRs3LgREomEp+8MIYQQIn9ouTshhBDyhTh16lS1Ce73338PVVVVtGjRAgMHDoSSkhIMDAxga2sLAGjUqBEUFBSgqamJFi1acP9dy5YtsWjRIu71d999hzNnziAsLAy2trZ4//49AgMD8cMPP2DAgAEAgEOHDkFPT4/7bx48eICTJ0/iypUr6N69OwDgyJEj0NfXx4kTJ+Ds7IzMzEyMHj2au2lgYmIim28OIYQQUkfQJJ0QQgj5QvTr1w979uyROtaoUSPk5+fD398fJiYmGDp0KIYNGwYHBwcoKtZ+GVBWVgYfHx+EhYXh2bNnKCkpQXFxMdTV1QEAjx49QklJCbp27So1lqmpKff6/v37UFRUlHpP48aNYWpqivv37wMA5s6di1mzZuHs2bMYOHAgRo8eDSsrq8/y/SCEEELqIlruTgghhHwhNDQ00Lp1a6mvRo0aQV9fH6mpqdi9ezfU1NTg5uaG3r17c0vOa7J582Zs27YNHh4euHDhAhISEjBkyBCUlJR81szTp0/H48ePMWnSJCQnJ8PGxgY7duz4rGMQQgghdQlN0gkhhJB6QE1NDQ4ODti+fTsuXryI+Ph4JCcnAwCUlZVRVlYm9f4rV65gxIgRmDhxIqytrWFiYoK0tDTufKtWraCkpIRr165xx16/fi31HjMzM5SWlkq9Jzc3F6mpqTA3N+eO6evrY+bMmQgPD8fChQuxf//+z/7/nxBCCKkraLk7IYQQ8oUoLi5Gdna21DFFRUWcOnUKZWVl6Nq1K9TV1fHDDz9ATU0NhoaGACr6pMfGxmLcuHFQUVFBkyZN0KZNG/z888+Ii4uDtrY2/Pz8kJOTw02uJRIJpk2bhsWLF6Nx48Zo1qwZli1bBrH4v/f/27RpgxEjRmDGjBnYu3cvNDU14enpiZYtW2LEiBEAgHnz5sHOzg5t27bF69evceHCBZiZmfH0HSOEEELkDz1JJ4QQQr4QUVFR0NHRkfrq2bMntLS0sH//fvTo0QNWVlY4f/48IiMj0bhxYwDA6tWrkZGRgVatWqFp06YAgOXLl6NTp04YMmQI+vbtixYtWmDkyJFS423evBm9evWCg4MDBg4ciJ49e6Jz585S7zl48CA6d+6M4cOH46uvvgJjDKdPn4aSkhKAir3vs2fPhpmZGYYOHYq2bdti9+7dsv9mEUIIIXJKxBhjQocghBBCCCGEEEIIPUknhBBCCCGEEELkBk3SCSGEEEIIIYQQOUGTdEIIIYQQQgghRE7QJJ0QQgghhBBCCJETNEknhBBCCCGEEELkBE3SCSGEEEIIIYQQOUGTdEIIIYQQQgghRE7QJJ0QQgghhBBCCJETNEknhBBCCCGEEELkBE3SCSGEEEIIIYQQOUGTdEIIIYQQQgghRE78PwY8sZa1xOeRAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"estado\"])[\"casos_dengue\"].sum().plot(kind='bar')\n",
+ "plt.title(\"Estados do Brasil e seus caos de Dengue\")\n",
+ "plt.xlabel(\"Estados\")\n",
+ "plt.ylabel(\"Casos de Dengue\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Aqui observamos um recorte por Estados, onde os da região Sudeste apresentam o maior número de casos. Especialmente o Estado de São Paulo, onde tem a maior densidade de pessoas."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Casos')"
+ ]
+ },
+ "execution_count": 22,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+kAAAK+CAYAAADewV+EAAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAACmUElEQVR4nOzdd5hU9fXH8c8CsigKaiiKIqixFyAmGiwxRgQblsTEqPmpWGIsMUrUSKxEI4mKmkTEgArYYhcbCoIg0usqne29953dnXp/fywzsmyd3Zm57f16nn0evXtn5uzszjDnfs/3nCTDMAwBAAAAAADT9TA7AAAAAAAA0IQkHQAAAAAAiyBJBwAAAADAIkjSAQAAAACwCJJ0AAAAAAAsgiQdAAAAAACLIEkHAAAAAMAiSNIBAAAAALAIknQAABAXZWVlevTRR7V69WqzQwEAwDZI0gHAhZKSkvToo4+aHYZrDR8+XNdff33k/5csWaKkpCQtWbIk7o/96KOPKikpqdmxpKQk3XHHHTF/rDvvvFPvv/++Tj755DbPmT17tpKSkpSVlRXzxzdTVlaWkpKSNHv2bLNDidr111+v4cOHmx0GALgWSToA7JKenq5bbrlFRxxxhPr06aN+/frpjDPO0L/+9S81NDSYHZ6lDR8+XElJSUpKSlKPHj20//7766STTtLvf/97VlHj6IknntDcuXPNDqNVn376qT755BO999572nvvvc0OByZatGiRbrjhBh199NHaZ599dMQRR+imm25SYWFhq+evWLFCZ555pvbZZx8ddNBBuvPOO1VXV5fgqAHAPL3MDgAArOCzzz7Tr3/9ayUnJ+vaa6/ViSeeKJ/Pp2XLlunee+/Vli1bNGPGDLPDtLSRI0fqz3/+sySptrZW27Zt07vvvquZM2fq7rvv1jPPPGNyhNb1s5/9TA0NDerdu3dUt3viiSd0xRVX6LLLLuv0bR588EHdf//9UUYYndraWt16662aMWOGjjnmmLg+FqzvL3/5iyoqKvTrX/9aRx11lDIyMvT888/r008/VUpKig466KDIuSkpKTr33HN13HHH6ZlnnlFeXp6efvpppaam6vPPPzfxpwCAxCFJB+B6mZmZ+u1vf6thw4bpq6++0sEHHxz53u233660tDR99tlnJkZoD4cccoh+97vfNTv2z3/+U1dffbWeffZZHXXUUbr11ltNis7aevTooT59+sT1MTwej/r27atevXqpV6/4/vO/3377KTc3N66PAft45plndOaZZ6pHj+8LOM8//3ydffbZev755/X4449Hjv/1r3/VAQccoCVLlqhfv36Smip1br75Zi1YsEBjx45NePwAkGiUuwNwvSeffFJ1dXV6+eWXmyXoYT/84Q/1pz/9KfL/s2bN0i9+8QsNGjRIycnJOv744zV9+vQWt1u3bp3GjRunAQMGaO+999bhhx+uG264odk5Ho9Hf/7znzV06FAlJyfrmGOO0dNPPy3DMJqd9+WXX+rMM8/U/vvvr3333VfHHHOM/vrXv3b4s3m9Xt19990aOHCg9ttvP11yySXKy8tr9dz8/HzdcMMNGjx4sJKTk3XCCSfolVde6fAx2rP33nvrtdde04EHHqi///3vzX6uUCik5557TieccIL69OmjwYMH65ZbblFlZWWz+xg+fLguvvhiLVu2TKeeeqr69OmjI444Qq+++mqLx/vuu+909tlna++999ahhx6qxx9/XLNmzWqx57mtPfl77hWXpKqqKt11112R39EPf/hD/fOf/1QoFOrw5zcMQ48//rgOPfRQ7bPPPjrnnHO0ZcuWFue1tic9NTVVv/rVr3TQQQepT58+OvTQQ/Xb3/5W1dXVkZ/B4/Fozpw5ka0G4djD+863bt2qq6++WgcccIDOPPPMZt9rzRtvvKFjjjlGffr00SmnnKKlS5c2+35be5Vbu8/WnsstW7boF7/4RbPfT1vP4wsvvKATTjhBycnJGjJkiG6//XZVVVU1O6ej56gt33zzjX7961/rsMMOU3JysoYOHaq777671W0tX331lc466yz17dtX+++/vy699FJt27at3ftvT2fvb8mSJfrxj3+sPn366Mgjj9R///vfVp/nQCCgxx57TEceeaSSk5M1fPhw/fWvf5XX6+1UPHPnztWJJ56oPn366MQTT9SHH37Y6nmdfb225mc/+1mzBD187MADD2z2s9fU1OjLL7/U7373u0iCLknXXnut9t13X73zzjvtPo7P59PDDz+sU045Rf3791ffvn111llnafHixc3OC/cLePrppzVjxozIc/eTn/xEa9eubXG/nfmd1dbW6q677tLw4cOVnJysQYMG6bzzztOGDRs6fH4AYE+spANwvU8++URHHHGETj/99E6dP336dJ1wwgm65JJL1KtXL33yySe67bbbFAqFdPvtt0uSSkpKNHbsWA0cOFD333+/9t9/f2VlZemDDz6I3I9hGLrkkku0ePFi3XjjjRo5cqTmz5+ve++9V/n5+Xr22WclNSU2F198sU4++WT97W9/U3JystLS0rR8+fIOY73pppv0+uuv6+qrr9bpp5+ur776ShdddFGL84qLi/XTn/400kBs4MCB+vzzz3XjjTeqpqZGd911V6eem9bsu+++uvzyy/Xyyy9r69atOuGEEyRJt9xyi2bPnq0JEybozjvvVGZmpp5//nlt3LhRy5cv11577RW5j7S0NF1xxRW68cYbdd111+mVV17R9ddfr1NOOSVyf/n5+TrnnHOUlJSkSZMmqW/fvnrppZeUnJzc5djr6+t19tlnKz8/X7fccosOO+wwrVixQpMmTVJhYaGee+65dm//8MMP6/HHH9eFF16oCy+8UBs2bNDYsWPl8/navZ3P59O4cePk9Xr1xz/+UQcddJDy8/P16aefqqqqSv3799drr72mm266Saeeeqp+//vfS5KOPPLIZvcTLi9+4oknWlz42dPXX3+tt99+W3feeaeSk5P1wgsv6Pzzz9eaNWt04okndvxkdaCoqEjnnHOOAoGA7r//fvXt21czZsxodb/6o48+qsmTJ2vMmDG69dZbtWPHDk2fPl1r166N/G105jlqy7vvvqv6+nrdeuut+sEPfqA1a9boP//5j/Ly8vTuu+9Gzlu4cKEuuOACHXHEEXr00UfV0NCg//znPzrjjDO0YcOGqJurdfb+Nm7cqPPPP18HH3ywJk+erGAwqL/97W8aOHBgi/u86aabNGfOHF1xxRX685//rNWrV2vKlCnatm1bmwl32IIFC/SrX/1Kxx9/vKZMmaLy8nJNmDBBhx56aItzo3m9dkZdXZ3q6uo0YMCAyLFNmzYpEAjoxz/+cbNze/furZEjR2rjxo3t3mdNTY1eeuklXXXVVbr55ptVW1url19+WePGjdOaNWs0cuTIZue/+eabqq2t1S233KKkpCQ9+eST+uUvf6mMjIzIz9PZ39kf/vAHvffee7rjjjt0/PHHq7y8XMuWLdO2bdv0ox/9KKrnBgBkAICLVVdXG5KMSy+9tNO3qa+vb3Fs3LhxxhFHHBH5/w8//NCQZKxdu7bN+5k7d64hyXj88cebHb/iiiuMpKQkIy0tzTAMw3j22WcNSUZpaWmnYzQMw0hJSTEkGbfddluz41dffbUhyXjkkUcix2688Ubj4IMPNsrKypqd+9vf/tbo379/qz/z7oYNG2ZcdNFFbX4//DN89NFHhmEYxjfffGNIMt54441m533xxRctjg8bNsyQZCxdujRyrKSkxEhOTjb+/Oc/R4798Y9/NJKSkoyNGzdGjpWXlxsHHnigIcnIzMyMHN/z59/9sa677rrI/z/22GNG3759jZ07dzY77/777zd69uxp5OTktPkzl5SUGL179zYuuugiIxQKRY7/9a9/NSQ1e5zFixcbkozFixcbhmEYGzduNCQZ7777bpv3bxiG0bdv32b3E/bII48Ykoyrrrqqze/tTpIhyVi3bl3kWHZ2ttGnTx/j8ssvjxy77rrrjGHDhnXqPvd8Lu+66y5DkrF69erIsZKSEqN///7Nfj/h523s2LFGMBiMnPv8888bkoxXXnnFMIzOP0etae3vecqUKUZSUpKRnZ0dOTZy5Ehj0KBBRnl5eeTYt99+a/To0cO49tpr232MzMxMQ5Ixa9asqO9v/Pjxxj777GPk5+dHjqWmphq9evVq9jyHX+M33XRTs8e+5557DEnGV1991W6MI0eONA4++GCjqqoqcmzBggWGpGa/52her5312GOPGZKMRYsWRY69++67LV7rYb/+9a+Ngw46qN37DAQChtfrbXassrLSGDx4sHHDDTdEjoV/Nz/4wQ+MioqKyPGPPvrIkGR88sknkWOd/Z3179/fuP322zvxkwNAxyh3B+BqNTU1kpr20HbW7it/1dXVKisr09lnn62MjIxIme3+++8vqanDtd/vb/V+5s2bp549e+rOO+9sdvzPf/6zDMOINEkK39dHH33UqRLr3e9fUov733NV3DAMvf/++xo/frwMw1BZWVnka9y4caquru52yea+++4rqakkVGpayezfv7/OO++8Zo93yimnaN99921Rnnr88cfrrLPOivz/wIEDdcwxxygjIyNy7IsvvtDo0aObrZYdeOCBuuaaa7oc97vvvquzzjpLBxxwQLM4x4wZo2Aw2KIcfHcLFy6Uz+fTH//4x2Ylyp2pSgivAs+fP1/19fVdjv8Pf/hDp88dPXq0TjnllMj/H3bYYbr00ks1f/58BYPBLscQNm/ePP30pz/VqaeeGjk2cODAFr+f8PN21113NSuRvvnmm9WvX79If4juPEe7v4Y9Ho/Kysp0+umnyzCMyGptYWGhUlJSdP311+vAAw+MnH/yySfrvPPOi7y+Oquz9xcMBrVw4UJddtllGjJkSOS8H/7wh7rgggua3Wf4NhMnTmx2PNzAsb1eGuF4rrvuumZVB+edd56OP/74ZudG+3rtyNKlSzV58mT95je/0S9+8YvI8fB2g9aqX/r06dPhlI2ePXtGmi+GQiFVVFREVuZbew+78sordcABB0T+P/weE35fieZvYP/999fq1atVUFDQ4c8PAB0hSQfgauF9j+HksTOWL1+uMWPGRPYnDhw4MLI/PJykn3322frVr36lyZMna8CAAbr00ks1a9asZvtEs7OzNWTIkBYXCI477rjI96WmD5JnnHGGbrrpJg0ePFi//e1v9c4773SYsGdnZ6tHjx4tSqD37LZdWlqqqqoqzZgxQwMHDmz2NWHCBElN5fvdER6fFP5ZU1NTVV1drUGDBrV4zLq6uhaPd9hhh7W4zwMOOKDZftjs7Gz98Ic/bHFea8c6KzU1VV988UWLGMeMGSOp/ecl/Ps76qijmh0fOHBgs8SgNYcffrgmTpyol156SQMGDNC4ceM0bdq0Dvdat3Y/nbVnnJJ09NFHq76+XqWlpVE9bmuys7NbfYw9/x7Dz9uex3v37q0jjjgi8v3uPEc5OTmRxGvffffVwIEDdfbZZ0v6/jXcVhxS02u0rKxMHo+nw8fq6Ofa8/5KSkrU0NDQqb/l8Gt8z+MHHXSQ9t9//8hjthdPZ34n0b5e27N9+3ZdfvnlOvHEE/XSSy81+1744klr++kbGxs7Ncpvzpw5Ovnkk9WnTx/94Ac/0MCBA/XZZ5+1+nex5/tK+HUZfl+J5m/gySef1ObNmzV06FCdeuqpevTRR5tdRASAaLh6T/rSpUv11FNPaf369SosLNSHH34Y1RgbqWkFaurUqZoxY4ays7M1YMAA3XbbbXrggQfiEzSAmOrXr5+GDBmizZs3d+r89PR0nXvuuTr22GP1zDPPaOjQoerdu7fmzZunZ599NpI4JyUl6b333tOqVav0ySefaP78+brhhhs0depUrVq1KrKy3Bl77723li5dqsWLF+uzzz7TF198obffflu/+MUvtGDBAvXs2bNLP3tYOObf/e53uu6661o95+STT+7WY4Sf33AyEQqFNGjQIL3xxhutnr/n3tu2fkajg33W0dpzxTgUCum8887Tfffd1+r5Rx99dEwff3dTp07V9ddfr48++kgLFizQnXfeqSlTpmjVqlWt7hluTaznk7fVcC4WK+1d0ZXnKBgM6rzzzlNFRYX+8pe/6Nhjj1Xfvn2Vn5+v66+/PqpqFato6/cSK9G+XtuSm5ursWPHqn///po3b16LC5Thxp2tzU8vLCxsVlnQmtdff13XX3+9LrvsMt17770aNGiQevbsqSlTpig9Pb3F+bF8X/nNb36js846Sx9++KEWLFigp556Sv/85z/1wQcftKiAAICOuDpJ93g8GjFihG644Qb98pe/7NJ9/OlPf9KCBQv09NNP66STTlJFRYUqKipiHCmAeLr44os1Y8YMrVy5UqNHj2733E8++URer1cff/xxs1WYtso9f/rTn+qnP/2p/v73v+vNN9/UNddco7feeks33XSThg0bpoULF6q2trbZh9Xt27dLkoYNGxY51qNHD5177rk699xz9cwzz+iJJ57QAw88oMWLF0dWdfc0bNgwhUIhpaenN1sJ2rFjR7Pzwp3fg8Fgm/fVHXV1dfrwww81dOjQSJXAkUceqYULF+qMM86IWSI5bNgwpaWltTje2rEDDjigRadwn8/XIjk48sgjVVdX16XnJfz7S01N1RFHHBE5Xlpa2qmO2JJ00kkn6aSTTtKDDz6oFStW6IwzztCLL74YGVkVy+QsNTW1xbGdO3dqn332iSRhrT1vktpdsQ0bNmxYq4+x599j+HnbsWNHs+fN5/MpMzOzxe+io+doT5s2bdLOnTs1Z84cXXvttZHjX375ZZtx7Gn79u0aMGCA+vbt296P3KX769Onj/r06dOpv+Xwazw1NTXy2pKaGkFWVVU1ew9pK57O/E5i8XotLy/X2LFj5fV6tWjRolYnaZx44onq1auX1q1bp9/85jeR4z6fTykpKc2Otea9997TEUccoQ8++KDZa+ORRx7pUszR/g0cfPDBuu2223TbbbeppKREP/rRj/T3v/+dJB1A1Fxd7n7BBRfo8ccf1+WXX97q971er+655x4dcsgh6tu3r0477bRm43G2bdum6dOn66OPPtIll1yiww8/XKeccorOO++8BP0EAGLhvvvuU9++fXXTTTepuLi4xffT09P1r3/9S9L3Ky+7r7RUV1dr1qxZzW5TWVnZYjUmvFc6XMp54YUXKhgM6vnnn2923rPPPqukpKTIB7vWLvzteV+tCd/+3//+d7Pje3Yk79mzp371q1/p/fffb7WioDulzg0NDfq///s/VVRU6IEHHoh8cP7Nb36jYDCoxx57rMVtAoFAq4lgR8aNG6eVK1cqJSUlcqyioqLV1b8jjzyyxX7yGTNmtFgR/s1vfqOVK1dq/vz5Le6jqqpKgUCgzXjGjBmjvfbaS//5z3+a/S101BFeauqVsOd9n3TSSerRo0ez33nfvn279Fy1ZuXKlc327ebm5uqjjz7S2LFjI3/3Rx55pKqrq/Xdd99FzgtXonXkwgsv1KpVq7RmzZrIsdLS0ha/nzFjxqh3797697//3ex5e/nll1VdXR2ZTtDZ52hPrb2GDcOIvMbDDj74YI0cOVJz5sxp9hxv3rxZCxYs0IUXXtjhz9yV++vZs6fGjBmjuXPnNtvfnJaWFulTERa+zZ5/U88884wktTrJobV4di8F//LLL7V169Zm53b39erxeHThhRcqPz9f8+bNa7XEXmrqMzBmzBi9/vrrzbYgvfbaa6qrq9Ovf/3rdh+ntd/t6tWrtXLlynZv15bO/s6CwWCLcvpBgwZpyJAhnR6FBwC7c/VKekfuuOMObd26VW+99ZaGDBmiDz/8UOeff742bdqko446KjK26dNPP9X5558vwzA0ZswYPfnkk80ajACwtiOPPFJvvvmmrrzySh133HG69tprdeKJJ8rn82nFihV69913I/Oex44dq969e2v8+PG65ZZbVFdXp5kzZ2rQoEHNVmHnzJmjF154QZdffrmOPPJI1dbWaubMmerXr1/kg9348eN1zjnn6IEHHlBWVpZGjBihBQsW6KOPPtJdd90V2Uv+t7/9TUuXLtVFF12kYcOGqaSkRC+88IIOPfTQyOzr1owcOVJXXXWVXnjhBVVXV+v000/XokWLWl2h+8c//qHFixfrtNNO080336zjjz9eFRUV2rBhgxYuXNipCqH8/Hy9/vrrkppWz7du3ap3331XRUVF+vOf/6xbbrklcu7ZZ5+tW265RVOmTFFKSorGjh2rvfbaS6mpqXr33Xf1r3/9S1dccUXHv7zd3HfffXr99dd13nnn6Y9//GNkBNthhx2mioqKZitrN910k/7whz/oV7/6lc477zx9++23mj9/frNxUJJ077336uOPP9bFF18cGfnm8Xi0adMmvffee8rKympxm7CBAwfqnnvu0ZQpU3TxxRfrwgsv1MaNG/X555+3eZuwr776SnfccYd+/etf6+ijj1YgENBrr70WuaASdsopp2jhwoV65plnNGTIEB1++OE67bTTonrewk488USNGzeu2Qg2SZo8eXLknN/+9rf6y1/+ossvv1x33nmn6uvrNX36dB199NEdNhe877779Nprr+n888/Xn/70p8gItmHDhjVL+gcOHKhJkyZp8uTJOv/883XJJZdox44deuGFF/STn/xEv/vd76J6jvZ07LHH6sgjj9Q999yj/Px89evXT++//36r1Q1PPfWULrjgAo0ePVo33nhjZPxW//799eijj0bz9EZ1f48++qgWLFigM844Q7feemvkYt6JJ57Y7CLUiBEjdN1112nGjBmqqqrS2WefrTVr1mjOnDm67LLLdM4557Qbz5QpU3TRRRfpzDPP1A033KCKigr95z//0QknnBDpIyF1//V6zTXXaM2aNbrhhhu0bdu2ZjPG991332ZbDf/+97/r9NNP19lnn63f//73ysvL09SpUzV27Fidf/757f48F198sT744ANdfvnluuiii5SZmakXX3xRxx9/fLOfJxqd+Z3V1tbq0EMP1RVXXKERI0Zo33331cKFC7V27VpNnTq1S48LwOVM6ChvSZKMDz/8MPL/2dnZRs+ePZuNPzEMwzj33HONSZMmGYZhGLfccouRnJxsnHbaacbSpUuNxYsXGyNHjjTOOeecRIYOIEZ27txp3Hzzzcbw4cON3r17G/vtt59xxhlnGP/5z3+MxsbGyHkff/yxcfLJJxt9+vQxhg8fbvzzn/80XnnllWZjpDZs2GBcddVVxmGHHWYkJycbgwYNMi6++OJmI64MwzBqa2uNu+++2xgyZIix1157GUcddZTx1FNPNRvZtWjRIuPSSy81hgwZYvTu3dsYMmSIcdVVV7UYC9aahoYG48477zR+8IMfGH379jXGjx9v5ObmtjqCrLi42Lj99tuNoUOHGnvttZdx0EEHGeeee64xY8aMDh8nPCZNkpGUlGT069fPOOGEE4ybb7652citPc2YMcM45ZRTjL333tvYb7/9jJNOOsm47777jIKCgmb33dp4t7PPPts4++yzmx3buHGjcdZZZxnJycnGoYceakyZMsX497//bUgyioqKIucFg0HjL3/5izFgwABjn332McaNG2ekpaW1GBtmGE2/o0mTJhk//OEPjd69exsDBgwwTj/9dOPpp582fD5fu89LMBg0Jk+ebBx88MHG3nvvbfz85z83Nm/e3OJx9hzBlpGRYdxwww3GkUceafTp08c48MADjXPOOcdYuHBhs/vfvn278bOf/czYe++9m411C49Ea21sX1sj2G6//Xbj9ddfN4466igjOTnZGDVqVCSe3S1YsMA48cQTjd69exvHHHOM8frrr3dqBJthGMZ3331nnH322UafPn2MQw45xHjssceMl19+ucWIPMNoGrl27LHHGnvttZcxePBg49ZbbzUqKysj3+/sc9SarVu3GmPGjDH23XdfY8CAAcbNN99sfPvtty1GphmGYSxcuNA444wzjL333tvo16+fMX78eGPr1q0dPkZrI9iiub9FixYZo0aNMnr37m0ceeSRxksvvWT8+c9/Nvr06dPsPL/fb0yePNk4/PDDjb322ssYOnSoMWnSpGbvWe15//33jeOOO85ITk42jj/+eOODDz5oc9ReZ16vrdn9/WHPr9Ye55tvvjFOP/10o0+fPsbAgQON22+/3aipqenwZwmFQsYTTzxhDBs2LPI3/Omnn7b4ecK/m6eeeqrFfbT23tjR78zr9Rr33nuvMWLECGO//fYz+vbta4wYMcJ44YUXOowZAFqTZBgx7rpjU0lJSc0ax3322We6+OKLW+w383q9+uUvf6m3335bv//97zVz5kzt2LEj0jxow4YNOuWUU7R9+/ZWu4ECABLrrrvu0n//+1/V1dV1u8keYKbLLrtMW7ZsaXUfOQDAOSh3b0P4w9z69etbfKgLd2U++OCD1atXr2bdfcONW3JyckjSASDBGhoamjW2Ki8v12uvvaYzzzyTBB22suffcmpqqubNm9fmBAYAgHOQpLdh1KhRCgaDKikp0VlnndXqOWeccYYCgYDS09Mje0d37twpSe12VAUAxMfo0aP185//XMcdd5yKi4v18ssvq6amRg899JDZoQFROeKII3T99ddHZsNPnz5dvXv3bnMcIADAOVxd7l5XVxdpoDRq1Cg988wzOuecc3TggQfqsMMO0+9+9zstX75cU6dO1ahRo1RaWqpFixbp5JNP1kUXXaRQKKSf/OQn2nffffXcc88pFArp9ttvV79+/bRgwQKTfzoAcJ+//vWveu+995SXl6ekpCT96Ec/0iOPPBKX0XJAPE2YMEGLFy9WUVGRkpOTNXr0aD3xxBP60Y9+ZHZoAIA4c3WSvmTJklY7n1533XWaPXu2/H6/Hn/8cb366qvKz8/XgAED9NOf/lSTJ0/WSSedJEkqKCjQH//4Ry1YsEB9+/bVBRdcoKlTp9LdHQAAAAAQNVcn6QAAAAAAWEkPswMAAAAAAABNSNIBAAAAALAI13V3D4VCKigo0H777aekpCSzwwEAAAAAOJxhGKqtrdWQIUPUo0f7a+WuS9ILCgo0dOhQs8MAAAAAALhMbm6uDj300HbPcV2Svt9++0lqenL69etncjQAAAAAAKerqanR0KFDI/loe1yXpIdL3Pv160eSDgAAAABImM5suaZxHAAAAAAAFkGSDgAAAACARZCkAwAAAABgESTpAAAAAABYBEk6AAAAAAAWQZIOAAAAAIBFkKQDAAAAAGARJOkAAAAAAFgESToAAAAAABZBkg4AAAAAgEWQpAMAAAAAYBEk6QAAAAAAWARJOgAAAAAAFkGSDgAAAACARZCkAwAAAABgESTpAAAAAABYBEk6AAAAAAAWQZIOAAAAAIBFkKQDAAAAAGARJOkAAAAAAFgESToAAAAAABZBkg4AAAAAgEWQpAMAAAAAYBEk6QAAAAAAWARJOgAAAAAAFkGSDgAAADjIfxal6uynFmt7YY3ZoQDoApJ0AAAAwEHe35Cn7PJ6/XbGKjX4gmaHAyBKJOkAAACAQ4RChvKrGiRJVQ1+/f7VdSZHBCBaJOkAAACAQ5TWeeUPGpH//yatTK+uzDIvIABRI0kHAAAAHCKvsqHFsUc/3qKM0joTogHQFSTpAAAAgEPkVda3OBYypKtmrpIvEDIhIgDRIkkHAAAAHCK8Hz0pqfnx4hqvJr6TkviAAESNJB0AAABwiHC5u2G0/N6n3xXqk28LEhwRgGiRpAMAAAAOkd/KnvTdTXwnRcXV7Z8DwFwk6QAAAIBDtLYnfXf+oKErZ6xSKNTKUjsASyBJBwAAABzAMIwOV9IlKau8Xo98vCUBEQHoCpJ0AAAAwAHKPT41drKD+2ursvXNztI4RwSgK0jSAQAAAAfozCr67n7/2npV1fviFA2AriJJBwAAABwgL8okvcEf1O9eXi2jtVbwAExDkg4AAAA4QH5VU9O4pA7O293m/Bo9tzA1PgEB6BKSdAAAAMABIjPSo7zdvxel6tvcqpjHA6BrSNIBAAAAB4h2T3qYIenaV9ao3heIbUAAuoQkHQAAAHCAaPek7666wa+b56yLYTQAuookHQAAALA5wzCUt2tPelctTy/XrOWZMYoIQFeRpAMAAAA2V93gl8cb7Pb9PPbpVqWX1MYgIgBdRZIOAAAA2Fx3St13FzKkq2auli8Qisn9AYgeSToAAABgc7FK0iWppNaru9/eGLP7AxAdknQAAADA5vKrmpL0aGakt+ezTUX6KCU/RvcGIBok6QAAAIDN5VU2NY2LdkZ6e+5591sVVsVuhR5A55CkAwAAADbX1Rnp7fEHDV01c5WCoVim/gA6QpIOAAAA2Fws96TvLqu8Xg9/tDku9w2gdSTpAAAAgM3lx7Es/Y3VOVqyoyRu9w+gOZJ0AAAAwMZqG/2qbvDH9TH+8Pp6VXq8cX0MAE1I0gEAAAAbi+cqelijP6TfvbxGhsH+dCDeSNIBAAAAG8urSEwH9i0FNXrmy50JeSzAzUjSAQAAABuL9Yz09jz/VZpScioT8EiAe5mapC9dulTjx4/XkCFDlJSUpLlz53Z4G6/XqwceeEDDhg1TcnKyhg8frldeeSX+wQIAAAAWlIhy9zBD0rWvrFG9L5CwxwTcxtQk3ePxaMSIEZo2bVqnb/Ob3/xGixYt0ssvv6wdO3bof//7n4455pg4RgkAAABYV15lvaSmBDoRahoDunH2ugQ9GuA+vcx88AsuuEAXXHBBp8//4osv9PXXXysjI0MHHnigJGn48OFxig4AAACwvvw4zUhvz8qMcr2yLEM3nHlEwh8bcDpb7Un/+OOP9eMf/1hPPvmkDjnkEB199NG655571NCQ+DcmAAAAwApyTUjSJenxz7YpraTWlMcGnMzUlfRoZWRkaNmyZerTp48+/PBDlZWV6bbbblN5eblmzZrV6m28Xq+83u9nOtbU1CQqXAAAACCuGnxBVXh8pjx2yJCumrFKy+7/hZJ79TQlBsCJbLWSHgqFlJSUpDfeeEOnnnqqLrzwQj3zzDOaM2dOm6vpU6ZMUf/+/SNfQ4cOTXDUAAAAQHzkV9Wb+vildT796X8ppsYAOI2tkvSDDz5YhxxyiPr37x85dtxxx8kwDOXl5bV6m0mTJqm6ujrylZubm6hwAQAAgLjKM6nUfXdfbCnShxvyzQ4DcAxbJelnnHGGCgoKVFdXFzm2c+dO9ejRQ4ceemirt0lOTla/fv2afQEAAABOEE7SEzEjvT33vvetCixwwQBwAlOT9Lq6OqWkpCglJUWSlJmZqZSUFOXk5EhqWgW/9tprI+dfffXV+sEPfqAJEyZo69atWrp0qe69917dcMMN2nvvvc34EQAAAADTJHJGensCIUO/nblKwVCiBsEBzmVqkr5u3TqNGjVKo0aNkiRNnDhRo0aN0sMPPyxJKiwsjCTskrTvvvvqyy+/VFVVlX784x/rmmuu0fjx4/Xvf//blPgBAAAAM4VX0q2QGudU1OvBuZvMDgOwvSTDMKzwmk6Ympoa9e/fX9XV1ZS+AwAAwNZ++cJybcipMjuMZmZN+InOOWaQ2WEAlhJNHmqrPekAAAAAvmeFxnF7uvX19aqo83Z8IoBWkaQDAAAANuQNBFVSa71kuNEf0jUvr5bLCnaBmCFJBwAAAGyooKrR7BDatK2wVk8v2GF2GIAtkaQDAAAANpRvwVL33U1bnK6NOZVmhwHYDkk6AAAAYEN5lfVmh9Cha19ZI483YHYYgK2QpAMAAAA2FJ6RnmRyHO2pbQzohtlrzQ4DsBWSdAAAAMCGrDQjvT2rMys085sMs8OAQ5XUNsoXCJkdRkyRpAMAAAA2ZPU96bubMm+bdhbXmh0GHOiXL6zQ0Q9+rg3Zzul/QJIOAAAA2FCuDfakh4UM6eqZq+QNBM0OBQ5iGIaKa5qmHORW2Of10BGSdAAAAMBm/MFQJDmxi7I6n/745kazw4CDVNb75Q82bfjoYeXmDFEiSQcAAABspqi6USGrb0ZvxYKtxXp/fa7ZYcAhiqq/v1DVq6dzUlvn/CQAAACAS+TZaD/6nv7y/ibl26hUH9Zlt2qSziJJBwAAAGzGDjPS2xIIGfrtjFUK2rEUAJZSRJIOAAAAwArsMCO9PbmVDfrrh5vMDgM2t3u5u5OQpAMAAAA2Y5cZ6e15e22uFm0rNjsM2Bjl7gAAAAAswU4z0ttz2xsbVF7nNTsM2BTl7gAAAAAswc570nfnDYR0zUurZRh2rgmAWSh3BwAAAGC6YMhQoYOSk+1FtfrnFzvMDgM2xEo6AAAAANMV1zQq4LDO6C9+na51WRVmhwEbafQHVVXvNzuMuCBJBwAAAGwk3NndaSbMWqs6b8DsMGATJTXO7WVAkg4AAADYiFP2o++p1hvQDbPWmB0GbMKppe4SSToAAABgK+HO7nadkd6eNVmVmrk0w+wwYAMk6QAAAAAswQkz0tsz5fNtyndotQBip9hBzRP3RJIOAAAA2IhT96SHhQzpv6ymowOspAMAAACwhPBKupNllnnMDgEWR5IOAAAAwHShkBHZk+5kxQ7u3I3YoNwdAAAAgOnK6rzyBUNmhxF3lR6SdLSPlXQAAAAApstz+H70sJpG5qWjbYZhqJgkHQAAAIDZ3LAfXZJ8AedXC6DrKjw++YNOnW9Akg4AAADYhpNnpO/OkFTT4DM7DFiUk0vdJZJ0AAAAwDbyds0Pd+4a4vfSS+vMDgEWVeLwxoIk6QAAAIBNOH1G+u62F5Kko3XhlXSnVpSQpAMAAAA24ZY96ZKUxko62lDk4PFrEkk6AAAAYAuG4Y4Z6WF5FfVmhwCLCnd2d+q2D5J0AAAAwAYqPD41+INmh5EwhQ5fLUXX0TgOAAAAgOnctB9dksrqnN0cDF1HuTsAAAAA07lpP7okVTf6zQ4BFsVKOgAAAADTuWVGeliDzz2l/ei8Rn9QVfXOvoBDkg4AAADYgJtmpEtSyJB8gZDZYcBinD4jXSJJBwAAAGzBbXvSJSmnwmN2CLAYp5e6SyTpAAAAgC24bU+6JG0vrDU7BFgMSToAAAAA0xmG4cokPa20zuwQYDHFuzq7O7k3A0k6AAAAYHE1DQHVeQNmh5FwWWWUu6O58Eq6k3szkKQDAAAAFpdXVW92CKYocOE+fLSPcncAAAAApnNjqbskldQ5v5M3ohMud3cyknQAAADA4tw2Iz2s0uPsediIHivpAAAAAEwXXkl38j7c1nhcuA8fbTMMQ8Uk6QAAAADMlu/SPemBkKFQyG2XJtCWCo9P/qDz/x5I0gEAAACLc+uedEkqZV86dnFDqbtEkg4AAABYXr6Lk/QdRbVmhwCLcEOpu0SSDgAAgDhJya3SlM+3qcEXNDsUW6vzBlTV4N4GaiTpCCuuaaqqcHoDxV5mBwAAAABnmjJvm1ZnVsgwpL9eeJzZ4diWm1fRJSmjzGN2CLCIIheMX5NYSQcAAECc7CxuWgH9ekepyZHYW16lO5vGheW7/OfH98Ll7k5vHUeSDgAAgJir8PhUWd9Uol1Q7e6V4O7Kr3LnjPSw4loax6EJjeMAAACALkorqYv8d11jQIbh9LWv+HF7uXsF3d2xC+XuAAAAQBftnqQbknIrKFnuqvD4Nbde5qhpDJgdAiyClXQAAACgi3ZP0iVpWWqZSZHYX16Vu1fSfYGQ2SHAAhr9QVXVu2PKAUk6AAAAYi6ttHmSvj6n0qRI7C/P5VUIhqTaRnckZ2hbSY17tj2YmqQvXbpU48eP15AhQ5SUlKS5c+d2+rbLly9Xr169NHLkyLjFBwAAgK5JK2k+23pHMbOuu6LRH1S5x2d2GKZLL2EMm9u5pdRdMjlJ93g8GjFihKZNmxbV7aqqqnTttdfq3HPPjVNkAAAA6CqPN6CCquYfqPNc3vysq3jemmwrrDE7BJjMTUl6LzMf/IILLtAFF1wQ9e3+8Ic/6Oqrr1bPnj2jWn0HAABA/GWUtlz1rGmgXLkr8l2+Hz0so6yu45PgaMW7OrsnyflNFG23J33WrFnKyMjQI488YnYoAAAAaEVaacvS9pAhlbhoJSxW8iqb9qO7dUZ6WI7L9+Xj+5V0pyfokskr6dFKTU3V/fffr2+++Ua9enUudK/XK6/3+yYDNTWUygAAAMRTuLP7nitey9LK9MsfHWpKTHbl9hnpYYUumY+Ntrmp3N02K+nBYFBXX321Jk+erKOPPrrTt5syZYr69+8f+Ro6dGgcowQAAEA4Sd9zxWtdNh3eo+X2Gelh5XXu6eyN1hW76EKNbZL02tparVu3TnfccYd69eqlXr166W9/+5u+/fZb9erVS1999VWrt5s0aZKqq6sjX7m5uQmOHAAAwF32nJEetq2AisZosSe9SRU9DVzPTSvptil379evnzZt2tTs2AsvvKCvvvpK7733ng4//PBWb5ecnKzk5OREhAgAAOB6/mBI2eWt7x/OrWRfcbTyeM4kSQ2+oNkhwESGYaiYJD0x6urqlJaWFvn/zMxMpaSk6MADD9Rhhx2mSZMmKT8/X6+++qp69OihE088sdntBw0apD59+rQ4DgAAAHNkl3sUCLVenF1Zz2poNLyBoEpqKPOWmhoP+gIh9e5lm0JgxFCFxyd/0D2bPkz9K1+3bp1GjRqlUaNGSZImTpyoUaNG6eGHH5YkFRYWKicnx8wQAQAAEIW2St0lKRgyVE3ZcqcVVjW6fi/67nIrW472gzu4qdRdMnkl/ec//7kMo+23ntmzZ7d7+0cffVSPPvpobIMCAABAl7XV2T1sZVqZzj/p4ITGZFfsR29ue2Gtjhy4n9lhwARuKnWXbNQ4DgAAANbXVmf3sDVZFYkLxubYj95cajtVGnC2ouqmbR9JJseRKCTpAAAAiJm00vYTqS10eO+08Ix0tyQmHckqo9zdrdxW7k6SDgAAgJgIhQyll7SfSOVUsDrcWcxIb66gyl2JGr5XsitJd8trgSQdAAAAMVFQ3aAGf/ujssrq6FbeWXnsSW+mtI4k3a1YSQcAAAC6oL3O7mH+oKEGXyAB0dgfe9Kbq/AwGcCtiqpJ0gEAAICo7d7ZvT1rsyrjH4zNBYIhFVdTdbC7ei7uuBYr6QAAAEAXpJe239k9bGVGefyDsbnC6kYF2xlV7Eb+oKFQiOfEbRr9QVXVu6uKgiQdAAAAMdGZcndJ2pxfHedI7I8Z6a0rpaeB65TUuO93TpIOAACAmOhsks4orY6FO7ujuR1FtWaHgARzW6m7RJIOAACAGKjw+FTZyZLUklr3rYxFixnprdtJku46JOkAAABAF3R2FV2SvIGQ/IH2R7W5XbizOzuwm8ugCsN1ind1dnfTBSuSdAAAAHRbNEm6JH3LvvR2sSe9dflVjKVzm/BKupsuWJGkAwAAoNs6O34tbHkqHd7bw5701hW5sImY21HuDgAAAHRBWifHr4Vtyq+KWyx2FwwZKmAlvVUVdHd3nXC5u5uQpAMAAKDb0kqia+iVXsre4raU1DYqwDzwVtU2BswOAQnGSjoAAAAQJY83oIKq6D5IF7vwg3dn5VPq3iZvIGR2CEggwzBc+V5Bkg4AAIBuyejCqni9L6gQq8WtYj962wxJtY2dG/UH+6vw+OQPuu99giQdAAAA3ZJW2rXZ1duLamIciTOEO7u7aeRUNNgq4R5uLHWXSNIBAADQTdF2dg9bnkaH99YwI719O7i44xpuLHWXSNIBAADQTeEkPdqkcmNuZeyDcQDK3duXVsJKulsUVTd183dbVQlJOgAAALolnKQn6nZOR+O49uVW1JsdAhKEcncAAAAgSv5gSNnlXUuaCqPsCO8GhmFE9qSjdYXVPD9uEZ6R7ratHyTpAAAA6LLsck+XZ3rXeQMyDLd9/G5faZ2XMWMdKKvzmh0CEoSVdAAAACBK3SlZN6Qur8I7FaXuHatqYASbW9A4DgAAAIhSVzu7hy1LK4tdMA5A07iONfqCZoeABGElHQAAAIhSVzu7h63ProhdMA7AjPSOBQ3Jx5YAx2v0B1VV786qCZJ0AAAAdFlaafc6tKcW0+F9d8xI75zcSsawOV1JjXt7D5CkAwAAoEtCIUPp3ZxZnUcn82bYk94524tqzQ4BcebWUneJJB0AAABdVFDdoAZ/9/YH19AErBn2pHdOWjEr6U5Hkg4AAABEqTud3cNCxvezkN3OMAwqCzopq5xtEk4Xfl9wY38GknQAAAB0SXc7u4ctS6fDuyRV1vvVQOfyTimo4sKO04VX0t3Yn4EkHQAAAF2SXtq9zu5h67Iqux+MA7AfvfNKat3bVMwtKHcHAAAAohSLcndJ2lZYE5P7sbtwZ3d0rNLjMzsExJmbt8GQpAMAAKBLYpWkk5w2YUZ653l8AbNDQJyxkg4AAABEocLjU2V9bDqzx+p+7C7c2d2Ne3Cj5Q8aMgyeKacyDEPFJOkAAABA58VqFV2SgiFDlR72GDN+LTpldfzNOFWFxyd/0L0XYUjSAQAAELVYJumStDKjIqb3Z0eU/Udne2Gt2SEgTtxc6i6RpAMAAKALYjV+LWxtFkl6PjPSo7KzmCTdqdxc6i6RpAMAAKAL0mI0fi1sS4G7O7xXN/hV20gztGhklHnMDgFxUlTdtJXBrU0USdIBAAAQtbSS2K5i5pS7u9SbGenRYw+/c1HuDgAAAETB4w2ooCq2H6LLXd44jv3o0XN7SbSThWeku7V1HEk6AAAAopJRGvsyY3/QUIOLZ18zIz165XU+s0NAnLCSDgAAAEQhrTQ+DbtWZ7q3eRyl29GrbfSbHQLixO1VEiTpAAAAiEqsO7uHrcooj/E92kd4T7pby3u7whsImR0C4qSomiQdAAAA6LRwkh7rhHJLvns7vOdVsSc9WoakOlbTHafRH1RVg7t/ryTpAAAAiEo4SY+1zHL3jtSi3L1r0hnD5jglNe5uIimRpAMAACAK/mBI2XEal1Za684P5x5vQFX17l457Krthe6tvnAqtzeNk0jSAQAAEIXsco8CofjsnPYGQvIFgnG5bysLd3ZH9NJLWEl3GpJ0knQAAABEIV6l7mHf5lbH9f6tiBnpXZfDc+c44Rnpbh5HSJIOAACATotXZ/ewFellcbpn6wp3dndzUtJVhVQhOE54Jd3Nkw5I0gEAANBp8ersHvZdnhtX0kk0u6qszmd2CIgxyt1J0gEAABCFtNL4lrtnlMX3/q0or4oZ6V1V1UCS7jTFLp+RLpGkAwAAoJNCISPujbqKXTh+KZ+V9C5r9Lmv0aDTsZJOkg4AAIBOKqhuUIM/vklRvS+oUJy6x1sVjeO6Lmg0jQWEMxiGoWKSdJJ0AAAAdE68O7uHbS9yz+zrRn+QfdXdxJ5+56jw+OQPuusiXWtI0gEAANAp8e7sHrYszT0d3pmR3n3bCt1zUcfpKHVvQpIOAACATkkvjW9n97CNOVVxfgTrYD9696UWu6/ZoFNR6t6EJB0AAACdkqhy9/QEPY4V5DEjvduyyuPbzBCJU1Td1DjS7a8HU5P0pUuXavz48RoyZIiSkpI0d+7cds//4IMPdN5552ngwIHq16+fRo8erfnz5ycmWAAAAJdLVJJe4KIRTPlVNI3rrgK2DDgG5e5NTE3SPR6PRowYoWnTpnXq/KVLl+q8887TvHnztH79ep1zzjkaP368Nm7cGOdIAQAA3K28zqvKen9CHsvjDcgw3NE8KryS7o6fNj5Kat03ts+pwjPS3f566GXmg19wwQW64IILOn3+c8891+z/n3jiCX300Uf65JNPNGrUqBhHBwAAgLD00sSVFBuSMss8OmLgvgl7TLOwJ737Kuvpju8UrKQ3sfWe9FAopNraWh144IFmhwIAAOBoiSp1D1ueVp7QxzML48O6z+MNmB0CYoTGcU1snaQ//fTTqqur029+85s2z/F6vaqpqWn2BQAAgOgkavxa2PrsigQ9knl8gRBJSQz4g4Zrtkc4XZGL+lG0x7ZJ+ptvvqnJkyfrnXfe0aBBg9o8b8qUKerfv3/ka+jQoQmMEgAAwBnSEjR+LSzVBR3eC6sbXL/3NlbK6tiXbneN/qCqGhLT98LqbJmkv/XWW7rpppv0zjvvaMyYMe2eO2nSJFVXV0e+cnNzExQlAACAc6SV1Cb08dywV9sNP2OibC9K7N8nYo+qku+Z2jiuK/73v//phhtu0FtvvaWLLrqow/OTk5OVnJycgMgAAACcyeMNqKAqsR+gaxqdv6LGfvTYSS2u1VlHDTQ7DHRDcQ3VEGGmJul1dXVKS0uL/H9mZqZSUlJ04IEH6rDDDtOkSZOUn5+vV199VVJTift1112nf/3rXzrttNNUVFQkSdp7773Vv39/U34GAAAAp8tIYGf3sJDRtD/1oP59Ev7YiZK3a753khg51V0ZZYn/G0Vs0dn9e6aWu69bt06jRo2KjE+bOHGiRo0apYcffliSVFhYqJycnMj5M2bMUCAQ0O23366DDz448vWnP/3JlPgBAADcIK3UnFLiZamlpjxuouRV1ksiQY+FvAqqEuwuPCM9Uc0prczUlfSf//zn7XZinD17drP/X7JkSXwDAgAAQAu7d3ZPZEK5LrtSV/zYuU1/2ZMeO6zC2l/4d8hFK5s2jgMAAEDihJP0RH943lbo7NG57EmPnQqPz+wQ0E1caPkeSToAAADalWbSODQnJ7GBYIiZ0DHkhkaDTlfM6yGCJB0AAABt8gdDyi6vN+Wxq+qdm3gV1TQq2M62T0TH6w+ZHQK6iZX075GkAwAAoE3Z5R4FQuYkk0HDUKXHmWOZ2I8eW4aaRgXCngzDYE76bkjSAQAA0CazSt3DlqeXm/r48eLkUn6zpJea+7eKrqvw+OQPUlkSRpIOAACANu3e2d0Ma7MqTHrk+MrfbUY6YmO7wxsNOhml7s2RpAMAAKBNZnV2D9tW4MzEixnpsZdW6jE7BHQRpe7NkaQDAACgTWkmlxBnV5jTtC7ewivpiJ1ch/6tuEFRdVPvCSpLmpCkAwAAoFWhkKH0EnNXJ506/zqvgiQ91gqreU7tinL35kjSAQAA0KqC6gY1+IOmxuAPGqp3WNfuUMhgJT0OymqdeUHHDcIz0tn+0YQkHQAAAK0yu7N72OpMZ3V4L6n1mjbWzsmqGkjS7YqV9OZI0gEAANAqszu7h63KcFaH9/wq9k7HQ4PP3KoPdB2N45ojSQcAAECrwnOnzV7z3VJQbXIEscWM9PgIGpI/GDI7DHRBUTVJ+u5I0gEAANAqq5S7Z5Y5a7RWOEk3u0LBifK5AGI7jf6gqhr8ZodhKSTpAAAAaJVVkvSyOmftNQ4n6WZXKDjRtsIas0NAlCh1b4kkHQAAAC2U13lVWW+N1S1vICRfwDn7jensHj+pFrmwhM6j1L0lknQAAAC0kF5qrRLzlNwqs0OImbxKGsfFS1a5tf5u0bHiWq/ZIVgOSToAAABasEqpe9jyNGeMYTMMg33TcVRAlYLthGek06PheyTpAAAAaMEq49fCNuU7o8N7WZ1P3gAdyOOlpIZVWbsJz0inR8P3SNIBAADQQppFxq+FZZRaa2W/q9iPHl8V9c5qMugGRTSOa4EkHQAAAC2kldSaHUIzxQ5ZIWU/enx5vAGzQ0CUimkc1wJJOgAAAJrxeAMqqLLWB+cGf1DBkFXW9bsunxnpceUPGjIM+/+duAkr6S2RpAMAAKCZDIt1dg/bVmD/GdjMSI+/cg8l73ZhGAZz0ltBkg4AAIBm0kqtVeoetiy91OwQuo096fG3vcj+F3PcosLjkz/IJas9kaQDAACgGat1dg9LybV/h3f2pMdfarE1LzKhJUrdW0eSDgAAgGbCSbrV1rfSLTa7PVqGYUTK3RE/GaVcCLELSt1bR5IOAACAZtIsmgwXVts7wa2q96veFzQ7DMfLrSBJt4ui6qapDVar2jEbSToAAAAi/MGQssutmeR4vEFbd+5mP3pisDprH5S7t44kHQAAABHZ5R4FLDrqzJCUUWbNVf7OYD96YtDd3T7CM9Kt+Y5jHpJ0AAAARFi11D1sWWqZ2SF0WR4z0hOiptFvdgjoJFbSW0eSDgAAgAirdnYP25BTZXYIXcaM9MTw+kNmh4BOYmtC60jSAQAAEGHVzu5hqcXWXulvD3vSE8OQVO8LmB0GOqGomiS9NSTpAAAAiEgrtXYSnF9l333djF9LHLuP63ODRn9QVQ1sTWgNSToAAAAkSaGQofQSj9lhtKu20b4rpPk0jkuY7YW1ZoeADlDq3jaSdAAAAEiSCqob1OC39hzvkCEV2HA1vabRrxobX2Cwm3QbTwFwC0rd20aSDgAAAEnW7+wetjyt3OwQopZPqXtCZZfb70KO29DZvW0k6QAAAJBk/c7uYeuyKs0OIWrsR0+sQlZpLS9c7m719xszkKQDAABAkpReau3O7mHbi2rMDiFq4f3oJCSJUVbnNTsEdKC4pul3ZPX3GzOQpAMAAECSfcrd7bgqbceY7ayq3md2COgA5e5tI0kHAACAJPsk6VX19hvbFJ6RzqphYjT4QmaHgA4UsyWhTSTpAAAAUHmdV5U2SX6DhqEKj73KmVlJT6ygYcgfJFG3MlbS20aSDgAAANusoofZrcN7HjPSE66gigsjVmUYBnPS20GSDgAAAKWXeswOISprsyrMDqHT6n0B21QpOMm2Qvs1GHSLCo9P/iCbP9pCkg4AAADbjF8Ls1MCxox0c6QW26s6xE0odW8fSToAAACUZpPxa2E5FfYpH2c/ujmyyu1VHeImlLq3jyQdAAAASiupNTuEqJTX2WfEVt6uvdF2qVJwinz2pFtWUXVT40deE60jSQcAAHA5jzeggip7rWwFQoY8jQGzw+gUmsaZo6TWXhMA3IRy9/aRpAMAALhchs2axoWtyrRHh/fwnnS7bCVwikqPfaot3CY8I53XROtI0gEAAFwurdRepe5hqzPt0eGdsmtz1HntUWnhRqykt48kHQAAwOXs1tk9bEt+tdkhdAqN48zhDxoyDNZqrYjGce0jSQcAAHC5cJJut3TGDt27G/1BlbI32jTllLxbUlE1SXp7SNIBAABcLpyk202pDTq8F1DqbqqdRfbcyuFkjf6gqhr8ZodhaSTpAAAALuYPhpRdbs/u475ASF5/0Oww2sV+dHPtKCZJtxpK3TtGkg4AAOBi2eUeBUJ2K3T/3sacSrNDaBf70c1l18kFTkape8dI0gEAAFzMrqXuYSsyrD2GLTx+zW5N+Zwilxn1lkNn946RpAMAALiYXTu7h23Ks3aH97xdSaJ9axXsjdJq6wn/Tuz6npMIJOkAAAAuZtfO7mEZZdYuZ2ZPurkqbNBc0G2KqpumHdj1PScRSNIBAABcLK3U3uXuJTXWHm/GnnRz1TTSRdxqqG7omKlJ+tKlSzV+/HgNGTJESUlJmjt3boe3WbJkiX70ox8pOTlZP/zhDzV79uy4xwkAAOBEoZCh9BJrr0R3pMEfVNCije98gRAJicka/SGzQ8AeeE10zNQk3ePxaMSIEZo2bVqnzs/MzNRFF12kc845RykpKbrrrrt00003af78+XGOFAAAwHkKqhvUYPERZp2xpcCa+9KLqhtl0esHrmFIqvcFzA4Du6FxXMd6mfngF1xwgS644IJOn//iiy/q8MMP19SpUyVJxx13nJYtW6Znn31W48aNi1eYAAAAjmT3zu5hy1PLdPKh+5sdRgt5VXQWt4KM0jqdeMj+ZocBSYZhsJLeCbbak75y5UqNGTOm2bFx48Zp5cqVJkUEAABgX3bv7B6WYtEO7+xHt4ZtRbVmh4BdKjw++YOUl3TE1JX0aBUVFWnw4MHNjg0ePFg1NTVqaGjQ3nvv3eI2Xq9XXu/3DUVqamriHicAAIAdpJfau7N7WLpFm9/tPiPd7s+xnaU7pGLECSh17xxbraR3xZQpU9S/f//I19ChQ80OCQAAwBKcUu5eWG3NFevwSjoJurlyKth2YBWUuneOrZL0gw46SMXFxc2OFRcXq1+/fq2uokvSpEmTVF1dHfnKzc1NRKgAAACW55Qk3eMNyjCslwrnsyfdEgqrSAytIjwj3e5bbOLNVuXuo0eP1rx585od+/LLLzV69Og2b5OcnKzk5OR4hwYAAGAr5XVeVdY7Z4Z0Wkmdjhq8n9lhNMOedGsorfN2fBISgnL3zjF1Jb2urk4pKSlKSUmR1DRiLSUlRTk5OZKaVsGvvfbayPl/+MMflJGRofvuu0/bt2/XCy+8oHfeeUd33323GeEDAOAq9b6AVmeUW3LFEtFzyip62PK0MrNDaCYQDKmwmoTECqocdDHK7op3vSb4V6R9pibp69at06hRozRq1ChJ0sSJEzVq1Cg9/PDDkqTCwsJIwi5Jhx9+uD777DN9+eWXGjFihKZOnaqXXnqJ8WsAACTAPz/fritnrNKUedvNDgUxkF7qMTuEmNqQU2V2CM0U13oVZEi6JTT4g2aHgF1YSe8cU8vdf/7zn7d7NX727Nmt3mbjxo1xjAoAALRm8Y5SSdIryzM1cexR6rOXrXbNYQ+7j19zQiqZarHKgHxK3S0jGDIUCIbUq6et2nE5Eo3jOoe/VAAA0KHimsZIh+RAyNDUBTtNjgjdleaQ8WthBRZr0pZXaa143K7AohMA3IYtIJ1Dkg4AADq0Nqui2f+/vipHIUp5bS2tpNbsEGKqpjFgqX4Ju89Ih/m2FtaYHYLrNfqDqm6gP0BnkKQDAIAOrc1sStLDCUeDP6jZK7JMiwfd4/EGVOCwsVSGYa3VUmakW0tasbW2Q7gRpe6dR5IOAAA6tCarUlLzhOP5xWnmBINuy3BY07iwZanW6fCeX2WdCwaQMsuc+TdvJ0WUuncaSToAAGhXTaNf21spFa3w+PTF5kITIkJ3pZU6q9Q9bF12pdkhRLAn3VoKuGhiOjq7dx5JOgAAaNf67Mo2S3YZx2ZPu3d2d5Idhda4+BAKGaykW0xJrdfsEFwvXO7utPedeCBJBwAA7dpzP/rusivqlZJjndVLdE44SXfafuk8iyTGpXVe+YNOe3btrcLjMzsE1yuqbrpQwiujYyTpAACgXeHO7m19sHrooy2JCwYxkWaxmeKxUl1vjc7RecxItxyPN2B2CK5H47jOI0kHAABtavQHlZJb1e45m/Kr2X9rI/5gSNnlzvx9BQ1DZXXmlzXzerAeX9Cw1Ig+N2JPeueRpAMAgDZtyq/uVNnuAx9uTkA0iIXsco8CDp5xvzzN/A7v4f3o7L21FkrezUV3984jSQcAAG1as2s/ekeWppaqpsEapcZon1NL3cPWZ5nfI4EZ6da0s9gajQXdyDAMyt2jQJIOAADaFN6P3hHDkB77dGuco0EsOLWze9jWVsYFJlo+e9ItaUcRSbpZKjw+R1fwxFqXkvSGhgbV13+/1yY7O1vPPfecFixYELPAAACAuYIhQ+ujmDs9NyVfvkAwjhEhFpza2T0sp8L8/eDsSbemjDKP2SG4FvvRo9OlJP3SSy/Vq6++KkmqqqrSaaedpqlTp+rSSy/V9OnTYxogAAAwx46iWtU2dr4jsj9o6N9fpcUxIsRCWqmzy93N3ndsGAYr6RaVa4ELOG5FqXt0upSkb9iwQWeddZYk6b333tPgwYOVnZ2tV199Vf/+979jGiAAADBHZ0vddzdreSYdlC0sFDKUXuLs1cRAyFBdo3n9Eco9PjUGQqY9PtpWXGN+53+3Cs9Id+o2m1jrUpJeX1+v/fbbT5K0YMEC/fKXv1SPHj3005/+VNnZ2TENEAAAmGPNriQ9mg9VHm9Q/1ubE5+A0G0F1Q1q8Dt/S8KqjOgvMMUKq+jWVW6B8XxuRbl7dLqUpP/whz/U3LlzlZubq/nz52vs2LGSpJKSEvXr1y+mAQIAgMQzDEPrdiXp0a6LP/dlauwDQkw4vbN7WGenEsRDHkm6ZdWYWGHhdsW7xq9RZ9U5XUrSH374Yd1zzz0aPny4Tj31VI0ePVpS06r6qFGjYhogAABIvNyKhi6XhpbUerVkR0mMI0IsOL2ze9jmgmrTHju/qmnfs9OfYztiG4J5WEmPTq+u3OiKK67QmWeeqcLCQo0YMSJy/Nxzz9Xll18es+AAAIA51nRhP/ruHvt0q35+zKAYRYNYSS91dmf3sKxy8/bdMyPdugxDavAFtXfvnmaH4jo0jotOl5J0STrooIN00EEHKS8vT5J06KGH6tRTT41ZYAAAwDxrM7/fj96VZCO91KOthdU6/uD+MY0L3eOWcveyWvP2HrMn3doyyup0whDelxKtsJokPRpdKncPhUL629/+pv79+2vYsGEaNmyY9t9/fz322GMKhSgjAQDA7tZmd20/+u4emrslNsEgZtySpPuChrwmNchjT7q1bSusNTsE12n0B1XdQD+AaHRpJf2BBx7Qyy+/rH/84x8644wzJEnLli3To48+qsbGRv3973+PaZAAACBxyuq8yijtfrnw+uxKFdU06KB+e8cgKnRXeZ1XlfXu+aC8IadSo48ckNDHNAxDeVXM4ray9FKS9ESj1D16XVpJnzNnjl566SXdeuutOvnkk3XyySfrtttu08yZMzV79uwYhwgAABJpXTf3o+/uYVbTLcMtq+hhK9LLE/6Y1Q1+ebzOH3FnZ9nlVDokWhGl7lHrUpJeUVGhY489tsXxY489VhUV5o28AAAA3bc2q1JSbLpTL9xWrHpvIAb3hO5KK3VXkr4pL/Ed3il1t77CKn5HiUZn9+h1KUkfMWKEnn/++RbHn3/++Wbd3gEAgP2s7eJ89NaEDOnv87bF4J7QXeklTVsY3DIaLLMs8R3eSdKtr6zOvKaCbhUud3fLe08sdGlP+pNPPqmLLrpICxcujMxIX7lypXJzczVv3ryYBggAABLH4w1oS35NTO/zvfV5+tulJ6pnDz6imSnNJePXwoprE796l79rlbarUxEQf5U0MEu4ouqmCyO8JjqvSyvpZ599tnbu3KnLL79cVVVVqqqq0i9/+Uvt2LFDZ511VqxjBAAACbIhp1JBI7YfpbyBkKYvSYvpfSJ6aSXuapjV6A8pGEpsWpBX2dQ0jmTEuhp89AxINBrHRa/Lc9KHDBlCF3cAABxm9/3osUw0ZizN0O3n/FBJSaymm8HjDaigyn0flDflVWnkYQck7PGYkW59wZChQDCkXj27tFaJLmBPevS69Nf5xRdfaNmyZZH/nzZtmkaOHKmrr75alZWVMQsOAAAk1trM2O1H311NY0BzN+bH+F7RWbEYqWdHyxPc4Z096fZQWM3vKZHo7h69LiXp9957r2pqmvarbdq0SRMnTtSFF16ozMxMTZw4MaYBAgCAxPAFQtqYG7+L7U/N3xG3+0b70lw6G/q73KqEPl4+ncNtYVuhO18PZgiFDMrdu6BLSXpmZqaOP/54SdL777+v8ePH64knntC0adP0+eefxzRAAACQGJsLqtXoD8Xt/guqG7XShNnV+H5Guts2GyRy7Fxto1/VNCWzhZ3FJOmJUlHvUyDBvSGcoEtJeu/evVVf39QYY+HChRo7dqwk6cADD4yssAMAAHtZt2v0WjxN/mRL3B8DLYWTdLd9VE5kmS2r6PaRVV5vdgiuwSp613SpcdyZZ56piRMn6owzztCaNWv09ttvS5J27typQw89NKYBAgCAxFiTGf++MtuLapVeUqcjB+0b98fC98JJutt4fEEZhpGQhoV5FSTpdpFfRZKeKCTpXdOllfTnn39evXr10nvvvafp06frkEMOkSR9/vnnOv/882MaIAAAiL9QyEjISrokPTB3U0IeB038wZCyXbxymJqgCxS7z0iHtZXUeM0OwTXCM9J5XUSnSyvphx12mD799NMWx5999tluBwQAABIvrbROVQnaT7s6o0LldV79YN/khDye22WXe1y9J3RZWpmOHrxf3B8nPCMd1ldZ7zM7BNdg/FrXdHtAYGNjo2pqapp9AQAAe1mboFV0qWlf9CMfszc9Udxa6h62MTsx44HDK+nuvRxiH3WNAbNDcI3iXX0heF1Ep0tJusfj0R133KFBgwapb9++OuCAA5p9AQAAewnPR09USeLnm4vU6OeDciK4tbN7WKI6vDMj3T58QUOGQdqYCKykd02XkvT77rtPX331laZPn67k5GS99NJLmjx5soYMGaJXX3011jECAIA4W7NrJT1RH1uDIUNPzd+ZoEdzN7d2dg/LT1DyTJJuL1WUvCcEjeO6pktJ+ieffKIXXnhBv/rVr9SrVy+dddZZevDBB/XEE0/ojTfeiHWMAAAgjvKrGlRQlfgPUm+szlHIxXulEyWRs8KtqLYxEPdV03pfQBUekj472V7ErPREKEzgGEQn6VKSXlFRoSOOOEKS1K9fP1VUNF19P/PMM7V06dLYRQcAAOIuUV3d99ToD2rWikxTHtstQiFD6SUes8MwlaH4r3IXMCPddnYWu/viVSI0+oOqTlBDUqfpUpJ+xBFHKDOz6R/VY489Vu+8846kphX2/fffP2bBAQCA+FuT4P3ou5v2VZoJj+oeBdUNavAHzQ7DdMvTyuJ6/7mUuttOussrTBKBUveu61KSPmHCBH377beSpPvvv1/Tpk1Tnz59dNddd+nee++NaYAAACC+1iZ4P/ruKur9+nxToQmP7A5u7+wetj7OHd7D+97d2pzPjvIquLASb0WUundZl+ak33333ZH/HjNmjLZv367169frqKOO0kknnRSz4AAAQHxVenyml31O+Xy7LjjpYFNjcKrdO7u7efd/vPcf0zTOfug6Hn88x10X1Ur6V199peOPP77FLPRhw4bp3HPP1W9/+1t98803MQ0QAADET7xXGDsjp6JeGywQhxOFS3rdnKBLUn5lfXzvnxnptlPu8ZodguOFy92pMIleVEn6c889p5tvvln9+vVr8b3+/fvrlltu0TPPPBOz4AAAQHyFS93N/hD18MdbTI7AmSh3b1IV5+ZV8b4IgNiroaFZ3BVVN10I4eJV9KJK0r/99ludf/75bX5/7NixWr9+fbeDAgAAiZHo+eht2ZxfrdwKEp1YI0lvEjKkstr4rZxS7m4/3kDI7BAcj8ZxXRdVkl5cXKy99tqrze/36tVLpaWl3Q4KAADEX4MvqE151WaHEfHA3M1mh+Ao5XVeVdazWhi2PD0+n1G9gaBK4ngBAPERMpreAxE/7EnvuqiS9EMOOUSbN7f9D+h3332ngw+m8QsAAHaQklulQMjsNfTvfZNaykzdGGIVvbl1WfHpe1BQRSJiV5llvEbiie7uXRdVkn7hhRfqoYceUmNjyye8oaFBjzzyiC6++OKYBQcAAOLHKvvRwwxDeuzTrWaH4RhpzIFuZmtBTccndUE+pe62ta0wvl3/3SwUMih374aoRrA9+OCD+uCDD3T00Ufrjjvu0DHHHCNJ2r59u6ZNm6ZgMKgHHnggLoECAIDYMnM+els+SsnXE5efqN69epodiu2ll3gkMX4tLCdOyXQeTeNsK50LWXFTUe+zVKWW3USVpA8ePFgrVqzQrbfeqkmTJskwmp74pKQkjRs3TtOmTdPgwYPjEigAAIidQDBkifFre/IHDf1rUaruHXes2aHYXhrj15qp9Pjicr/h8WtcDLGf7HIusMQLpe7dE1WSLjXNRJ83b54qKyuVlpYmwzB01FFH6YADDohHfAAAIA62Fdaq3qJNk2Yvz9I9Y49RUpJVCvHtKa2EUt7dBUKGahv92q9P202QuyLc2Z0E3X4Kq9mqEC+UundPVHvSd3fAAQfoJz/5iU499VQSdAAAbCY8es2KPL6g3lydY3YYtubxBmho1opV6bH/u2dPun2V0pU/boprmp5bLrV2TZeTdAAAYF9rM63VNG5Pzy1KNTsEW8so9ZgdgiWtziqP+X3msifdtqqYJhE3jF/rHpJ0AABcxjAMSzaN211prVeLtxebHYZtpZVS6t6aLfnVMb0/fzBEWa+NWXXLjxMU79qTbtV/Y6yOJB0AAJfJLPOoPE5NtGLpsU+3mR2CbYVnpFu1UsIsWTFuFFZU3SgaWNtXMGQoEAyZHYYjsZLePSTpAAC4zFoL70ffXUaZR1sKYrvy6RbhJJ38sbnyutjuQc5jP7rt0YU8Pqgw6R6SdAAAXGZNZtPoNTussj40d7PZIdhSOElHc76goUZ/IGb3x4x0+9taWGN2CI5UyMWPbrFEkj5t2jQNHz5cffr00WmnnaY1a9a0e/5zzz2nY445RnvvvbeGDh2qu+++W42N/CEAANAZ6yy+H313G3KqGJMUJX8wxPzndqzProrZfe0+Ix32xKjC2Gv0B1VNU75uMT1Jf/vttzVx4kQ98sgj2rBhg0aMGKFx48appKSk1fPffPNN3X///XrkkUe0bds2vfzyy3r77bf117/+NcGRAwBgPyU1jcqusFcC9/DcLWaHYCvZ5R4F2CjdphXpZTG7L2ak219mmb3eD+2AUvfuMz1Jf+aZZ3TzzTdrwoQJOv744/Xiiy9qn3320SuvvNLq+StWrNAZZ5yhq6++WsOHD9fYsWN11VVXdbj6DgAArD0fvS2LthfL0xi7EmWno9S9fZvzY1fezIx0+8ur4ncYa+zz7z5Tk3Sfz6f169drzJgxkWM9evTQmDFjtHLlylZvc/rpp2v9+vWRpDwjI0Pz5s3ThRdemJCYAQCwM6vPR29NyJD+Po9O751FZ/f2ZZbFboY8e9Ltr5RV35ijs3v39TLzwcvKyhQMBjV48OBmxwcPHqzt27e3epurr75aZWVlOvPMM2UYhgKBgP7whz+0We7u9Xrl9X7fybOmhuYQAAD3WpvV1DTObuW5723I02OXnaiePUg9O0Jn9/aV1MYmgQiGDJpjOUBFvfXHUdpNuNw9SbwPdZXp5e7RWrJkiZ544gm98MIL2rBhgz744AN99tlneuyxx1o9f8qUKerfv3/ka+jQoQmOGAAAa6hp9GubTTsZ+wIhvbAkzewwbCGtlHL39jT6QzGZjV1c08jefweoawyaHYLjFFU3LZDy6ug6U5P0AQMGqGfPniouLm52vLi4WAcddFCrt3nooYf0f//3f7rpppt00kkn6fLLL9cTTzyhKVOmKBRq+YY7adIkVVdXR75yc3Pj8rMAAGB167Mrbf2haebSDBmGnX+C+AuFDKWXxK6c26k25Vd3+z7y2cvsCL5giPeVGKNxXPeZmqT37t1bp5xyihYtWhQ5FgqFtGjRIo0ePbrV29TX16tHj+Zh9+zZU5JafYElJyerX79+zb4AAHAjO+5H311NY0AfbMw3OwxLK6huUIOflcGOLE/rfod39qM7RxUl7zHFnvTuM73cfeLEiZo5c6bmzJmjbdu26dZbb5XH49GECRMkSddee60mTZoUOX/8+PGaPn263nrrLWVmZurLL7/UQw89pPHjx0eSdQAA0NI6m+5H393T83eYHYKl0dm9c77Li8FKeiUz0p1iJ6+bmKK7e/eZ2jhOkq688kqVlpbq4YcfVlFRkUaOHKkvvvgi0kwuJyen2cr5gw8+qKSkJD344IPKz8/XwIEDNX78eP39738360cAAMDyvIGgUvKqzA6j2wqrG7UivUynHznA7FAsaffO7na+GBNv6THYt8+MdOfYXlir0w7/gdlhOEIoZFDuHgOmJ+mSdMcdd+iOO+5o9XtLlixp9v+9evXSI488okceeSQBkQEA4Azf5VXLF+h+sywrmPzJFs2/62yzw7CkcPJJ4ti+WKz0sSfdOTJpthgzFfU+GirGgOnl7gAAIP7W7NqP7gQ7iuqUWlJrdhiWRLl753h8QYW6mUiEV9JhfzkV/C5jhVL32CBJBwDABdZlOSdJl6SH5m42OwRLIknvvJ3duNATChmRPemwv+JaEstYodQ9NkjSAQBwuGDI0LrsSrPDiKnVGRUqr/OaHYallNd5VVnvNzsM2+hOh/eyOq98MZi1Dmsor6O7e6yEO7vTULF7SNIBAHC4HUW1qm0MmB1GTBmSHv6Y1fTdsYoenY05VV2+bR770R2luoGLW7FSXMPF01ggSQcAwOHWZTur1D3si83FavQ76+JDd6TR/Coq3bmowX50Z/EGgmaH4BjFu/ak0zque0jSAQBwuHDTOKeVHwZDhp6cv9PsMCwjvcQjyXm/53gp6MZqODPSnSVkSI1+EvVYKGJPekyQpAMA4GCGYWjtrqZxTlzZeHN1dre7dDtFGuPXolLbGJBhdO3Zyqusl8Rz7SQZVKLEBI3jYoMkHQAAB8utaHD0HsFGf0gvL8s0OwxLSGMsXVQMSbm7ku1oMSPdebYX8fqJhUJGsMUESToAAA621mGj11rzwpI0s0MwnccbUEEVH46jtayLHd7Zk+48NF7svkZ/kCZ8MUKSDgCAg4WTdCfvna2s9+uzbwvMDsNUGaUes0OwpQ1dGE1oGMxId6Kciq5VVeB7lLrHDkk6AAAOtsbB+9F3948vtpsdgqnSSinV7YqulDhXeHxqoMmY43SnkSCaFFHqHjMk6QAAOFRZndc1K6y5lQ1a34VVUacIl+o6uWIiHrqyIs5+dGcqq3Nu745EobN77JCkAwDgUOuy3JW0PvLRZrNDME04SXd6xUSsdWX/LPvRnamynr3U3RUud+diYfeRpAMA4FBu2I++u80FNcoud0flwJ5oetU1IUMqrY1u9Y8Z6c5U72MLQ3cVVTdVI3CxsPtI0gEAcCgnz0dvy0Nz3bea7g+GlF1O06uuWpYaXYd3ZqQ7UzBkKBAMmR2GrdE4LnZI0gEAcCCPN6At+TVmh5Fw36SWuW4EUHa5R4EQKWNXrYuylwF70p2Lxmfdw5702CFJBwDAgTbmVClouC9xMyRN/niL2WEkFKXu3bOtMLqLWexJd65tXej2j+9xkSN2SNIBAHCgNS7bj767j78tkC/gnv2ldHbvntyKzifdhmGQpDtYajFJeleFQgbl7jFEkg4AgAOtzXTffvSwQMjQcwtTzQ4jYejs3j2V9b5On1vTEFCdNxDHaGCmzDJ3Np6MhYp6H9tuYogkHQAAh/EFQtqY667xa3uasyJLhkvK/dNKKXfvjkDIUE0n+xjkVdGgz8noN9B1lLrHFkk6AAAOs6WgWo1+d3cp9viCemN1ttlhxF0oZCi9hNW/7lqZ0bkO75S6O1sJ5dpdRql7bJGkAwDgMOHRa273LxeUvBdUN6jB75799/GyJrNzlSfMSHe2iii2PqC5cGd3XhuxQZIOAIDDdDbhcLrSOp8WbSs2O4y4orN7bGwpqO7UeeGVdHdspHCfukYueHVVMeXuMUWSDgCAg4RChtaxkh7x+GfbzA4hrujsHhvZ5Z3ba57PnnRH8wVDrullEWvhlXSevdggSQcAwEHSS+tU1ckmWG6QWebp9CqpHaWX0tk9FsrqvJ06jz3pzlddz/tnVxTXdO41hM4hSQcAwEHWsIrewoNzN5sdQtxQ7h4b/qChBl/Ho9XySdIdb0cJs9K7gsZxsUWSjpgLhgzN3ZhPh0wAMEF4Pjrlz9/bmFOlwmpnJlck6bGzLrv9Xg513gBVKi6wo4gkvSsK2ZMeUyTpiLmXl2XorrdTdN2sNWaHAgCuE15Jp/y5uYccuJpeXudVJaW5MbMyvbzd77OK7g4ZXPiKWqM/qGouYMUUSTpiKhAMafbyLEnStsJaFVbxDxoAJEp+VYMKqljNaM1X20vkaey4nNlOWEWPrc357fcuyKukaZwb5HIxJmqUusceSTpi6sutxSrYrdzlxa/TTYwGANyFru5tCxnS4/O2mh1GTKWVkqTHUma5p93v51cxI90NSDijV0Spe8yRpCOmZu1aRQ+bv6XInEAAwIXWsB+9Xe+vz1cgGDI7jJhh/FpslXbQnZrO7u5QVuczOwTbKeLCRsyRpCNmNudXt+gqXFTjVYWHkQwAkAjrspoaX7EfvXW+YEh3/m+jYxL19NKmlV9+37HRGAi1+7cR3pPO8+1sNeytjlq4+oALhrFDko6Ymb0iq9XjM7/JTGwgAOBCVfU+7SimK3FH5m0u0qXTlqu8k3OxrSyNUVEx911eVZvfY0+6OzQGgmaHYDtF1U3vp1zAih2SdMREWZ1XH6Xkt/q9T78rSHA0AOA+4VV0dGxLQY1+MfVrpeTY9znzeAM0CYyD5e10eKfc3R1CRlO3cnQe+/hjjyQdMfG/1TnyB1u/fpZb0aA6L6VDABBPa7PYjx6N6ga/fjl9hV5flW12KF2SUdp+kzN0zXd5rXd4b/AFVe5hr7JbZJXx+ooGe9JjjyQd3eYPhvRaBx9y5qyw54cgALCLtcxHj1rIkB6cu1l3/m+jvDYrcU0rpdQ9HtLb6Jifz0hZV9laWGN2CLZCd/fYI0lHt32+uUglte3v7ftgQ16CogEA92n0B/VdBzOe0baPvy3QBc99o8Jq+yRidHaPj7aSDfaju0sG4w07LRQyKHePA5J0dNus5U2N4ZLa+aSQUeqRj/09ABAXG3OqFGhjyxE6J6PMo3Onfq2V6WVmh9Ip4SSd33ps1fuCCoVaPqvMSHeXrHIuynRWRb1PgVZeM+geknR0S0pulTbmVEmSjHZen4akN9bkJCQmAHAb9qPHRr0vqKtnrta0xWky2vtHzQLCSTpir7UpCTSNc5cCtjd0GqXu8UGSjm6ZHV5F78S5767LjW8wAOBS7EePHUPSU/N36IbZa1XvC5gdTqv8wZCyWemLm+VpLaspmJHuLmV1NAnsLErd44MkHV1WUtOoTzcVSurcP1rbi2oVDIbiGxQAuEwgGNKGbPuOErOqxTtKdd4zS5Vdbr0uz9nlHspL4yhcIbg79qS7S2U9SXpnhTu7U8kVWyTp6LLXV+dEtQcyZEgfbGx9ljoAoGu2FdbK46PnRzzkVzVo7LNLtXBbsdmhNEOpe3y19vzS3d1dGnhP7bRiyt3jgiQdXeINBPXG6ujHqr25mn3pABBLa3aVuiM+vIGQbpqzTv/4fFurDcXMQGf3+CrYo8u/NxBUSU37U2zgLIGQoaBFXu9WF15J59mKLZJ0dMmn3xaqvAv7dTblV1u+GQ8A2Mk6msYlxItfZ+jKGStV3eA3OxQ6u8dZXWOg2WeVwqpGnmsXKrLRSEYzFXEBKy5I0hE1wzA0e0WWpPbHrrUmEDI0f0tR7IMCABcyDENrMmkalyhrsyp17tQl2lHUsvt3IqUxwzmuDEm5Fd/vQafU3Z22FZr7OrcLyt3jgyQdUVufXalN+dWS2h+71pbZy7NiGxAAuFRmmUflHhocJVJZnU8X/fsbzTWpx0ooZCi9xHrN7JxmWer3Hd5pGudOO1sZxYeWiujuHhck6YjarPAqehdvvyG3KlahAICrrWU/uikCIUN3vZ2iBz/cpECCp5YUVDeowU9Tq3hbn/P9xITw+DW2lLgLYw471ugPWmILkBORpCMqBVUN+mJTU7l6V0srfYGQlqWWxi4oAHCptVlNiQTJgzleX52jy6YtV3ld4vZk0tk9MXbstoqax4x0V8qlgqJDzEiPH5J0ROX1VdkKxqDx20vfZMYgGgBwt/BKOsmDeTYX1OgXU79WSk5iZtXT2T0xwqvnkpTHnnRXKq2lIVpHitiPHjck6ei0Rn9Q/1sTmxFqqzMp0QSA7iipaaQc0yKqG/z65fQVen1V9KNJo5VeSmf3RNi9hJc96e5U7iFJ7wj70eOHJB2d9lFKvirrY7PvpMEfVEpuYlYdAMCJmI9uLSFDenDuZt35v43yBuK3Z5xy98QIGU0XwgLBkIqrSdbcqM5L74eOhMvdo532hI6RpKNTDMPQrF1d2WP1Qvzv1+mxuSMAcKF17Ee3pI+/LdAF//pGhXGasUySnjjL0spUWN0Yk21+sB9fICSD3327inZdwOJpij2SdHTKqowKbd81FzZWL8RlaeWxuSMAcCHmo1tXRqlH5079WivTyzo+OQrldd6YVbShY+uyK5mR7nLVvN7aReO4+CFJR6fMXtHU6C2WKza1jQGlMoMSAKJW0+jXtsIas8NAO+p9QV09c7VeWJwWs9U4VtETa1tBTaSzO9wplddcu9iTHj8k6ehQbkW9vtxaLCn2KzYvLKHkHQCitT67khV0GzAkPTl/h26YvU71vkC37y+tlIQhkXIr65mR7nLbirgY2h66u8cPSTo69NqqbIXi9GlwyY6S+NwxADjYul1N40gc7GHxjhKd98xSZZd7unU/jF9LrMp6f6SzOxfF3CmTC2NtCoUMyt3jiCQd7ar3BfRWjMautaay3q+8CkabAEA01mY2NY0jcbCP/KoGjX12qRZuK+7yfaSXNiX5/N4TIxgylNnNCyuwt1y2O7Spot6nQLxW8UCSjvZ9sCFfNY3dL9Frz3S6vANAp3kDQaXkVZkdBrrAGwjppjnr9M/PtyvUhQ+3aSX0cUm0b3OrzA4BJqKcu208N/FliSR92rRpGj58uPr06aPTTjtNa9asaff8qqoq3X777Tr44IOVnJyso48+WvPmzUtQtO5hGIZmr8iSFN/SuvB+dwBAxzblVcsXCJkdBrph+tfp+u3MVapu6HznaI83oIIqPhQnmj/ISqGbldX5zA7Bsih1jy/Tk/S3335bEydO1COPPKINGzZoxIgRGjdunEpKWt+r7PP5dN555ykrK0vvvfeeduzYoZkzZ+qQQw5JcOTOtyytLLL/LZ7/RJXUelVW543jIwCAc6zZtR8d9rYms0Jjpi7RjqLOrY5nlFJ2DSRaTRQX0twm3NmdHhnxYXqS/swzz+jmm2/WhAkTdPzxx+vFF1/UPvvso1deeaXV81955RVVVFRo7ty5OuOMMzR8+HCdffbZGjFiRIIjd75Zy7MkJebF9yIl7wDQKWszSdKdorTOp4v+/Y3mbszv8Ny0UkrdgURrDATNDsGyiil3jytTk3Sfz6f169drzJgxkWM9evTQmDFjtHLlylZv8/HHH2v06NG6/fbbNXjwYJ144ol64oknFAzyIoqlzDKPvtreVM2QiEKvzzcVJeBRAMDegiFD67IrzQ4DMRQIGbrr7RQ9+OEmBYJtb2OgszuQeCFDavSTY7QmvJLOhpD4MDVJLysrUzAY1ODBg5sdHzx4sIqKWk/aMjIy9N577ykYDGrevHl66KGHNHXqVD3++OOtnu/1elVTU9PsCx2bs2sveqLkVzWolpIiAGjXzuJa1ca5mSfM8frqHF02bbnK29j+lYjtZ2gdF0bcrbujE52qqIatqvFkerl7tEKhkAYNGqQZM2bolFNO0ZVXXqkHHnhAL774YqvnT5kyRf379498DR06NMER209to1/vrs9N+OO+tDwz4Y8JAHaylv3ojra5oEa/mPq1UnJaVkuEk3QkHhdG3G1bIQt8raHcPb5MTdIHDBignj17qri4eXfv4uJiHXTQQa3e5uCDD9bRRx+tnj17Ro4dd9xxKioqks/XsgPjpEmTVF1dHfnKzU188mk376/Pk8eb+NKej1MKEv6YAGAna3btR2dlz7mqG/z65fQVen1VduSYPxhSdnm9iVEB7sUFstYV0d09rkxN0nv37q1TTjlFixYtihwLhUJatGiRRo8e3eptzjjjDKWlpSkU+n7f1s6dO3XwwQerd+/eLc5PTk5Wv379mn2hbaGQoTkrmz4YJPpDYFaZh30/ANAGwzAiK+ms7DlbyJAenLtZf/rfRnkDQWWXexTowlx1AN3HBbKWGv3BqEZIInqml7tPnDhRM2fO1Jw5c7Rt2zbdeuut8ng8mjBhgiTp2muv1aRJkyLn33rrraqoqNCf/vQn7dy5U5999pmeeOIJ3X777Wb9CI7y9c5SZZY17b1J9McBQ9JrK7MS/KgAYA95lQ0qZg+gq3z0bYEu/Nc3WpZaZnYogGsVUNbdAjPS46+X2QFceeWVKi0t1cMPP6yioiKNHDlSX3zxRaSZXE5Ojnr0+P5awtChQzV//nzdfffdOvnkk3XIIYfoT3/6k/7yl7+Y9SM4yiu79oUnyZyVmnfX5+nmnx1pwiMDgLWtYfSaK6WXevToJ1slmfdvM+BmZbVcHN1TERcu4s70JF2S7rjjDt1xxx2tfm/JkiUtjo0ePVqrVq2Kc1Tuk1ZSq292Xa0360NAakmdAsGQevU0vcgDACwlXOpOouZe/N6BxKusb9nzyu3Yjx5/ZEKImJ3gsWutMQzp3XV5ZocBAJazhv3oAJBw9T76Je0pXO6eRBfTuCFJh6SmbrLvr883OwxJ0ptrcswOAQAspbzOq4xSZvUCQKIFQoaCNG5spqi6aQuAwdMSNyTpkCS9szZXDRbprL61oKZZ934AcLu1WS3nZgMAEqOopsHsECyFxnHxR5IOBUOG5uzqqm6FqpWgYejTTYVmhwEAlrH7fnQAQGJtL6w1OwRLYU96/JGkQwu3FSuvsukKoVWqVl7bNasdACDmowOAiVKL68wOwVLo7h5/JOnQ7OVZkqy1QpOSWyWDjS4A2mAYhup9AbPDSAiPN6At+TVmhwEArpVZRk+QsFDIoNw9AUjSXW5bYY1WZpRLstYKjT9oaPGOUrPDAGAxgWBIn31XqMtfWKETHp6vqQt2mB1S3G3MqVKQi5YAYJq8qnqzQ7CMinqfAjTSiztLzEmHeeZYYOxaW2Ytz9Qvjh1kdhgALKDOG9A7a3P1yvLMyPYcSfrPV2nar08v/f5nR5oYXXytYT46AJiqpMZrdgiWQal7YpCku1iFx6cPN1pj7Fpr1mZWmB0CAJMVVTdq9oosvbE6W7WN35e3756wPjFvuwb366NLRx5iSozxFn4vJEEHAHNUeHxmh2AZlLonBkm6i721NkfegHVHnTUGQlqTWa5TD/+B2aEASLCtBTV66ZsMffxtQbOyunByvmfCetfbKfpB394686iBiQwz7vzBkDbmMn4NAMxU63VHD5TOCHd2p7orvtiT7lKBYCjSQd1KDeP2NPObDLNDAJAghmFoyY4SXfPSKl3472/0wcb8Fvve2vpAYBjS9bPWamtBdfwDTaDN+dVq9Fv3YioAuIEvEKKh8S7FlLsnBCvpLjV/S7EKd73IrPyWsyK93OwQAMSZNxDURxsL9NKyDO3sxpibQMjQr6av0IK7f6ahB/aNYYTmCY9eAwCYq7rBr/336W12GKYLr6RbOX9wAlbSXWr2ikxJ1l5FlySPN+i4lTEATSo9Pv1nUarO+MdXuu/97yIJenfelxr8IY1/frnK65zR5GdNJqXuAGAFzEpvUkQTvYQgSXehzfnVWpvV9MHPDlfBpn+dbnYIAGIoq8yjh+Zu1uh/LNLUL3eqrK6pIU84Oe/u+1JVvV+XPL9cHpvvIQyFDK3PZiUdAKxge3Gt2SFYAuXuiUG5uwvNWp5ldghRWbqzzOwQAHSTYRhan12pGUsz9OXW4lYT8VheNMyvatAVL67QR7efqd697Hk9Or20TpX1frPDAABIyixlJV36vtwd8UWS7jKltV59/K11x661prrBr8wyjw4f4Iw9poCbBIIhzd9SrJnfZCgltyqhj72tsFbXz1qj1288TT16WH1zT0tr2I8OAJaRU1Fvdgima/QHVd3AxeNEsOfyArrsf2ty5A/aoci9uRe/TjM7BABRqPMG9MqyTP386SW6/c0NkQQ90anyivRy3f1Oii278q7LYj86AFhFEWXePAcJxEq6i/gCIb22KtvsMLpk0dYS6VdmRwGgI0XVjZq9IktvrM5WbeP3e8Lbmm+eCB+lFOigfn006cLjTHj0rluTyUo6AFhFuH+Km1Hqnjgk6S7y+eZCldbasyNjmcen4poGDe63t9mhAGjF1oIavfRNhj7+tqDZbHMzk/Pd/Xdphgb166Mbzzzc5Eg6p6CqQflVDWaHAQDYpaaRMu9ikvSEIUl3kVd2NYxLSpJsWPmpF5dk6JFLTjA7DAC7GIahr3eWauY3GVqeVt76OQmOqT2PfbpVg/brrfEjDjE7lA4xHx0ArKXRHzQ7BNOFk3S75hJ2QpLuEhtzKvXtrj2hdn1Rfb65iCQdsABvIKiPNhbopWUZkdnmdnHnWyn6wb7JOv3IAWaH0q5wkh6uRAAAmCtkNCXqffbqaXYopimqbqrItWsuYSck6S4RHrtm5w98RTWNqqr3af99epsdCuBKlR6f3lidrdkrsprtzbPT+4phSNe+vEaf/PFMHXdwP7PDadPazKamcXZ5XgHADXLK63X0QfuZHYZpKHdPHLq7u0BxTaPmbSqUZP8PfDO/yTA7BMB1sso8emjuZo3+xyI9vWBnJEEPd2q32/tKIGToV9NXKK/SmuN0qup92lFca3YYAIA9bC2sNjsEU9E4LnFI0l3gjVXZzRo52dkn3xaaHQLgCoZhaF1WhX7/6jqd8/QSvbYqW43+UPNzTIotFup9QV3y/HJVeKzXrZfRawBgTWkl9triFWuMYEscyt0drtEf1Burc8wOI2ZyKupV7w1on2T+dIF4CARDmr+lWDO/yYjMNneqCo9Plz6/TPPv/pn26W2d95S12exHBwAryi63ZgVWIoRCBuXuCcRKusN9+l2hyi24UtQds1dkmR0C4Dh13oBeWZapnz+9RLe/uSGSoCe1fzPby61s0K9fXCl/MNTxyQmydtd8dBJ0ALCWAhevJFfU+xxTmWsHJOkOZhiGZi3PlNQ0KsEpPtiYb3YIgGMUVTfqH59v1+gpi/S3T7cqr7JpNrdd95t3xZaCGk2YtVYhC3z4aPQH9V2+u/c8AoBVldV5zQ7BNJS6JxZJuoOty67UloIaSc4alZBeUid/wDqrXoBdfb6pUGc++ZVe/DpdtY0BSe5Kzne3LK1M97z7rdlhaGNOlQJBtz37AGAPlQ6rTo0Gpe6JRZLuYJFVdJPjiDVD0ptrnLPPHjBDTaNfD360uUVC6Ob08ION+frn59tNjWHdbvPRAQDWUu8Lmh2CacKd3fn3KTFI0h0qv6pB8zcXS3Lmh+531uWaHQJga/9ZlKryOveuCLRl+tfpmr0i07THX5PFfnQAsKpAyFDQAlujzFBMuXtCkaQ71GsrsxV0Uo37HrYV1ihooUZPgJ2kl9Zp1vIss8OwrEc/3qrPNiV+3GMgGNKGbMavAYCVFdc0mB2CKcIr6c7NLqyFJN2BGnxBveXwcvCQIc39tsDsMABbeuzTrXRo7cAf39ygVRllCX3MbYW18ri4lBIA7GBHUa3ZIZiiqMa9TfPMQJLuQHNT8lXV4Dc7jLh7Y1W22SEAtvPV9mIt2VFqdhiWFzKk/3t5jXYU1iTsMdfuKnUHAFjXjqI6s0MwBeXuiUWS7jCGYWj2rjJWpzd2+C6vWoaDS/qBWPMFQnrs022SnP/+EAv+oKHLp69QfmV9Qh5vLU3jAMDysso9ZodgiiK6uycUSbrDrEwv147ipjIcp6evgZChL7cWmx0GYBuzlmcqs6zpw4XT3x9ipd4X1CXPL1dVfXyb7BmGoTWZNI0DAKvLTdCFWytp9AdV7YIqXSshSXeYWSuyJLlnJSb88wJoX0lto/79Vaok97w/xEq5x6dLnl+uhjjuF88s86jcxfN3AcAuSl24N7uIUveEI0l3kJzyei3c6tyxa62hEzLQOU9+sUMeb1OS6Zb3h1jKqajXb/67Uv44TZVYl8V7GQDYQYULL6hS6p54JOkO8urKLNd9+PYGQlqeltgOzIDdpORW6b31eWaHYXub8qt105x1cemFsYb96ABgC7XegNkhJFwxSXrCkaQ7hMcb0Nvrcs0OwxQvfZNhdgiAZYVChh79eIvZYTjG1ztLdd9738X8fsNN49x2oRUA7MYXCLmucXE4SU/iSnLCkKQ7xAcb8lTb6L4re5K0OpOxRUBb5qbkKyW3yuwwHOXd9Xl6av72mN1fSU2jssvd14gIAOzIkFzXRK2oumkfvsuuTZiKJN0BQiFDs13WMG539b6gviMJAVqo8wb0j8+bkkmufsfWtMXpem1lVkzuay370QHAVtJK3TUrnXL3xCNJd4Bv0sqUXurusUovLk03OwTAcqYtTlNJLVe/4+Whj7boi82F3b4f5qMDgL3sKKw1O4SEonFc4pGkO8Ds5ZmS3P0B75tUmscBu8sq89CvIQFue2OD1nZzyw3z0QHAXtJdtpLOCLbEI0m3uYzSOi3eUSrJ3R/wahsDSi9x11VNoD2Pf7ZN/qCb3xUSI2RIV7+0SqlFXXv/qWn0a3tRTYyjAgDEU25Fg9khJEwoZFDubgKSdJt7dWW22SFYxrQllLwDkrR0Z6kWbis2OwzX8AcNXTZ9uQqrov/QtiG7UiGupQCArRRWuydJr6j3KcA/VAlHkm5jNY1+vevSsWutWbKrogBwM38wpL99ulWSu7fAJJrHG9T455eruj66jr/sRwcA+yn3+MwOIWEodTcHSbqNvbcuTx5f0OwwLKPC41N+F1ayACd5dWW20kqa9spx3Tuxyuq8unTaMjX6O/++vDazqbM7vysAsA83jWCj1N0cJOk2FQwZmrNr/A8rMN+bviTN7BAA05TXefXcwp2SeF8wS1Z5va7870oFgqEOz/UGgkrJq4p/UACAmIrmYqzdhTu787kisUjSbWrJjhJll9dLYgVmd19uZR8u3OvpBTtU2xiQxPuCmb7Nq9bvX1sno4O5d5vyquULdJzMAwCsJWS4J1EvptzdFCTpNjVreZYkrmrtqbjGq/I6r9lhAAm3Ob9ab62hR4VVfLW9VJM+2NTuOWuyuje6DQBgntxdi2VOF15J5+J/YpGk21Bqca2WpTXNBecF09KMpcyGhrsYhqHJn2zh/cBi3lqbq2e/3Nnm97s7Xx0AYJ5tLhmfWVTD4pcZSNJtaNaKLLNDsLTPvis0OwQgoT75rlBrsyrNDgOt+NeiVP1vdU6L46GQoXXZ/M4AwK5SdzVpdTrK3c1Bkm4z1fV+fbAhz+wwLC2vqkF1je7pugl3q/cFNGXeNklSEvtfLOmvH27Swq1FzY7tKK6N9A8AANhPdrnH7BASooju7qYgSbeZt9flqNFPo6GOvLI80+wQgIR4cUm6Cndd5e6gTxlMYkj6/WvrtT77+/L2texHBwBbK6hyfvLa6A+6atyclZCk20ggGNKcFdmSaBjXkbkbC8wOAYi73Ip6/XdXDwbeE6wtZEhXzVittJJaSdKaXfvR+b0BgD2VuqBRcRGl7qYhSbeRhdtKlF/VIImGcR3JLPO4ZjQG3OuJedvk3TXCi/cE6/MFQ7ps2goV1zRGVtL5vQGAPVXW+8wOIe4odTcPSbqNzNpVws3KS8cMSW+satmsCXCKFell+nxzUccnwlLqvAGd/9xSFdMtFwBsrd7r/MWgYpJ005Ck28TWghqtzmTlJRrvrmdmNJwpEAxp8sdbJXHRzo4q69nfBwB2FwgZCoWc/ak8XO5OY9rEs0SSPm3aNA0fPlx9+vTRaaedpjVr1nTqdm+99ZaSkpJ02WWXxTdAC5i9gkZo0dpZXKtgkCZ7cJ431+RoR3HT3mZnfzxwNj7zAIC9FdU2mB1CXIXL3WlMm3imJ+lvv/22Jk6cqEceeUQbNmzQiBEjNG7cOJWUlLR7u6ysLN1zzz0666yzEhSpeSo8Ps1NoRFatEKG9C7j6uAwlR6fpi7YKYkr23bHZx4AsLcdhbVmhxBXJWzNMo3pSfozzzyjm2++WRMmTNDxxx+vF198Ufvss49eeeWVNm8TDAZ1zTXXaPLkyTriiCMSGK05/rcmR74AK8Jd8b/V7EuHszy7cGdkHApXtgEAMM/O4jqzQ4grGseZx9Qk3efzaf369RozZkzkWI8ePTRmzBitXLmyzdv97W9/06BBg3TjjTcmIkxT+YMhvbYy2+wwbGtzQY1CIS5wwBm2F9Xo9VW8HwAAYAWZZR6zQ4grRrCZp5eZD15WVqZgMKjBgwc3Oz548GBt37691dssW7ZML7/8slJSUjr1GF6vV17v96UaNTU1XY7XDF9sLuIqVjcEQ4Y+31yki04eYnYoQLcYhqHJH2+Vw3vUAABgG3mVzt2THgoZdHc3kenl7tGora3V//3f/2nmzJkaMGBAp24zZcoU9e/fP/I1dOjQOEcZW7NXZEmiwVB3zFnByiPs74vNRVqZUW52GAAAYJeSWucmsRX1PgVYGTCNqSvpAwYMUM+ePVVcXNzseHFxsQ466KAW56enpysrK0vjx4+PHAuXMvfq1Us7duzQkUce2ew2kyZN0sSJEyP/X1NTY5tE/bu8Kq3PrpREg6Hu2JhbaXYIQLc0+oN6/LNtkpou2PF+AACA+So8PrNDiBtK3c1l6kp67969dcopp2jRokWRY6FQSIsWLdLo0aNbnH/sscdq06ZNSklJiXxdcsklOuecc5SSktJq8p2cnKx+/fo1+7KL2cuzJLGK3l3+oKGvd7Y/LQCwshlLM5Rf1VRSR4IOAIA11DYGzA4hbih1N5epK+mSNHHiRF133XX68Y9/rFNPPVXPPfecPB6PJkyYIEm69tprdcghh2jKlCnq06ePTjzxxGa333///SWpxXG7K6lt1CffNY1d40N59738TabOPnqQ2WEAUSuoatALS9IksYoOAICV+AIhGYahJAfORA33xOKzhzlMT9KvvPJKlZaW6uGHH1ZRUZFGjhypL774ItJMLicnRz162GrrfEz8b3Wu/EFeErGyJqvC7BCALpny+XY1+pu29fCOAACAdRiSahr96r93b7NDibliyt1NZXqSLkl33HGH7rjjjla/t2TJknZvO3v27NgHZAHX/PQwrUgv09qsCro5x0CjP6T12RU6ZdiBZocCdNqazAp98m2B2WEAAIA2pJXUOfLzZXglnTTEHO5boraJAfsm68fDD1BPB5bPmOW/X2eYHQLQacGQoUc/3iKJvhQAAFjV9sJas0OIi6Iab8cnIW5I0uEaK9IZXwX7eHttrrYW1kjiKjYAAFaVUeYxO4S4oNzdXCTpcI06b0DbdyU9gJVVN/j19PwdkiSKaQAAsK6c8nqzQ4iLIrq7m4okHa7y4tfpZocAdOhfC1NVUd80e9VgGR0AAMtyYjLb6A+qusFvdhiuRpIOV1mys9TsEIB2pZXU6tWVWWaHAQAAOqGsznl7t4sodTcdSTpcparer5wKZ+4dgv0ZhqHJn2xVgJEOAADYghNXnJ1YHWA3JOlwnemLKXmHNS3cVqJvUsvMDgMAAHRSoz9odggxV0ySbjqSdLjOwm3FZocAtOANBPX4Z1slMXINAAC7CBlN/4Y7Sbjcnea15iFJh+uU1vlUyuxHWMzLyzKVvatDLMXuAADYR67DOryHy91pXmseknS40otfp5kdAhBRXNOo579q+pvkojUAAPaytbDW7BBiinJ385Gkw5U+31xkdghAxD8/3656X1OpHBetAQCwl9RSZyXpdHc3H0k6XKmgulHVDT6zwwC0IadSH2zMNzsMAADQRTllzip3L2ZbqOlI0uFaL32TaXYIcLlQyNDkj7dIoswdAAC7yq9qMDuEmAmFDMrdLYAkHa71ybcFZocAl3t/Q56+zauWRJk7AAB2VVbnnJXninqfAiE+lZiNJB2ulVVer3pvwOww4FK1jX7984vtkhhxAgCAnVXWO2cLJfvRrYEkHa726spss0OASz3/VZrK6pr+UWfECQAA9uXxOmdOOqXu1kCSDlf7YEOe2SHAhTJK6/TycnoiAADgBIGQoZBDSsTDM9Ip8jMXSTpcLbW0Tv5AyOww4DKPf7ZNgaAz/jEHAABSca0zVqCLKXe3BJJ0uJphSG+tyzE7DLjI4h0l+mp7idlhAACAGNpR6IxZ6eGVdJYSzEWSDtd7e02u2SHAJXyBkB77ZKskysgAAHCSncVOSdKd06nezkjS4XrbCmsVClHyjvibsyJLGWUeSVyhBgDASTJ3/ftud5S7WwNJOlwvaBj6KKXQ7DDgcKW1Xv1rUaokVtEBAHCavKoGs0OIiSK6u1sCSTog6fXVjGJDfD01f7vqvAFJrKIDAOA0Thhd1ugPqrrBb3YYEEk6IEn6NrdKBsOqESff5VXp3XWM+wMAwKkqPD6zQ+i2IkrdLYMkHVDTfMuF24rNDgMOZBiGHv14C6vnAAA4WG1jwOwQuo1Sd+sgSQd2mb0iy+wQ4EAfpRRoQ06V2WEAAIA48gVCtq/KdELJvlOQpAO7rMuqNDsEOIzHG9CUz7dJkpLoFgcAgGMZkmoa7b2fO1zuzmcW85GkA7t4AyGtyig3Oww4yAtL0lS8a96ozS+uAwCADqSX1JkdQreEy935zGI+knRgNzOXZpgdAhwip7xeM7/JNDsMAACQINuLas0OoVsod7cOknRgNytZSUeMPP7ZVvkCIbPDAAAACZJe6jE7hG6hu7t1kKQDu6n3BbUpv9rsMGBzy1LLtGAr0wIAAHCT3Ip6s0PoFrq7WwdJOrCHF79ONzsE2Jg/GNLkT7ZIkui7AgCAexTaeCU6FDIifXRgPpJ0YA/f7Cw1OwTY2OurspW6q3EMfVcAAHCP8jr7JrkV9T4FQ3xysQqSdGAPNY0BZZTauzsnzFFe59WzX+6UxCo6AABuU91g3xFs7Ee3FpJ0oBXTl1DyjuhN/XKnahoDklhFBwDAbRr8QbND6DI6u1sLSTrQik+/K1Sjjd9okXhbCqr1v9U5ZocBAABMEjIkb8Cenx/DTeOoBLQGknSgFQ3+oO5+O8XsMGAThmFo8idbWT0HAMDl7NrhvZhyd0shSQfa8PnmIi1PKzM7DNjAZ5sKtSazwuwwAACAybYV1podQpeEV9JZcLAGknSgHbe+vt62ZUtIjAZfUE98tk2SlESNGAAArpZWYs/mw0WMX7OUXmYHAFhZTWNA9733nf7121FmhwILqvcFdNdbKSrYVSJmcPkZAABXyyrzmB1Ch3yBkLLLPUotqVNaSZ1SS+q0PouKQCshSQc68FFKgX7302H6yfADzQ4FFlJc06ib5qzTpvxqSU2NVsjRAQBwt4LqBrNDiGj0B5Ve2pSIp5XUKbW4Tqkltcour1eAmeiWRpIOdMLvX12n1X8do9692CECaXN+tW6asy6yf0siQQcAAFJpbeLLxuu8AaXvWhFPLalt+u/iOuVU1Hf4+YRFBmsiSQc6obLerwc+3KSnfj3C7FBgsi+3FutPb21UvY9eBQAAoLnKen/c7ru63q/UktpmZeppxbWRbXftaSsZJ0G3JpJ0oJPeXZ+na356mEYOPcDsUGACwzD00jeZemLeNv5BAwAArfJ4A926vWEYKqvzfb8ivmtVPK20rlOr9CTjzkCSDkThxtnrtPqv56pXT8re3cQfDOnhj7bof2tyJFEaBgAAWhcIGQqFDPXo0f7IF8MwVFTTuGufeJ3SSmoj+8arGjpejScZdzaSdCAK5R6fHvl4i/5++Ulmh4IEqa7367Y312t5WrmkpjFrdHEHAABtKan16qD+fSRJoZChvMoGpYaT8JLvk3KPt+OtcyTj7kSSDkTpjdU5uua0w3T8kP5mh4I4yy736IbZa5Ve2jROJUkk6AAAoH1Pz98hfyiktJI6pZfWqdEfavf89ir0+NjhTiTpQBdMmL1WK+4/Vz07KGWCfa3JrNAtr61r1gCGfygBAEBH3tuQ1+pxVsXRWWysBbqguMarv3+21ewwECcfbMjTNS+timuHVgAA4ExtLeGQjKOzSNKBLpq1PEs7i2vMDgMxFAoZenr+Dk1851v5g/xTCgAAoscnCHQXSTrQRYak62etVSjEW7ETNPqD+uNbG/X84jRJbV8FBwAAAOKJJB3ohoKqRj05f7vZYaCbSmobdeWMVfrsu0JJjFgDAACAeUjSgW7679IMpZfUmR0Gumh7UY0um7Zc3+ZWRY6RoAMAAMAsJOlANxlGU7d3g9lctrN4e4l+9cIKFVQ1mh0KAAAAIIkkHYiJnIp6Pbdwp9lhIAqzl2fqxjlr5fEFzQ4FAAAAiCBJB2LkP1+lKafcY3YY6EAgGNLDH23Wo59sVcigQRwAAACshSQdiJGQ0dTtnbJ366pp9OuGOev06spsSVJSEvvPAQAAYC0k6UAMZZR5NH1JutlhoBW5FfX61QsrtHRnqaRdHdzJ0AEAAGAxlkjSp02bpuHDh6tPnz467bTTtGbNmjbPnTlzps466ywdcMABOuCAAzRmzJh2zwcSbeqCHSqsajA7DOxmfXalLpu2XKm7deEnPwcAAIAVmZ6kv/3225o4caIeeeQRbdiwQSNGjNC4ceNUUlLS6vlLlizRVVddpcWLF2vlypUaOnSoxo4dq/z8/ARHDrQuaEjXzVpD2btFfJSSr6tmrlK5x2d2KAAAAECHTE/Sn3nmGd18882aMGGCjj/+eL344ovaZ5999Morr7R6/htvvKHbbrtNI0eO1LHHHquXXnpJoVBIixYtSnDkQNt2FtfplWWZZofhaoZh6LmFO/Wnt1LkC4TMDgcAAADoFFOTdJ/Pp/Xr12vMmDGRYz169NCYMWO0cuXKTt1HfX29/H6/DjzwwHiFCXTJlM+3q6SG+dtmaPQHddfbKXpuYaokOrgDAADAPkxN0svKyhQMBjV48OBmxwcPHqyioqJO3cdf/vIXDRkypFmivzuv16uamppmX0AiBEKGJsxea3YYrlNW59U1L63WRykFkujgDgAAAHsxvdy9O/7xj3/orbfe0ocffqg+ffq0es6UKVPUv3//yNfQoUMTHCXcbEtBjV5bmWV2GK6RWlyry6Yt1/rsysgxWgMAAADATkxN0gcMGKCePXuquLi42fHi4mIddNBB7d726aef1j/+8Q8tWLBAJ598cpvnTZo0SdXV1ZGv3NzcmMQOdNbfPt2qijqv2WE43tKdpbr8hRXKq6SzPgAAAOzL1CS9d+/eOuWUU5o1fQs3gRs9enSbt3vyySf12GOP6YsvvtCPf/zjdh8jOTlZ/fr1a/YFJJI/aOiGOevMDsPRXluVrQmz1qrOGzA7FAAAAKBbTC93nzhxombOnKk5c+Zo27ZtuvXWW+XxeDRhwgRJ0rXXXqtJkyZFzv/nP/+phx56SK+88oqGDx+uoqIiFRUVqa6urq2HAEyXkluld9ZSxRFrwZChyZ9s0UNzNytoGDSIAwAAgO31MjuAK6+8UqWlpXr44YdVVFSkkSNH6osvvog0k8vJyVGPHt9fS5g+fbp8Pp+uuOKKZvfzyCOP6NFHH01k6EBUHpy7WeNOGKz++/Q2OxRHqPMGdOf/Nuqr7SWSdjWIY/85AAAAbM70JF2S7rjjDt1xxx2tfm/JkiXN/j8rKyv+AQFx4AuGdNOr6/TuH043OxTby69q0I2z12p7Ua2kppKgEAk6AAAAHMD0cnfATdZmVeqjlHyzw7C1lNwqXfr8skiCLkkhE+MBAAAAYokkHUiw+977TjUNPrPDsKV5mwp15X9XqqyO5w8AAADORJIOJJg3ENIfXt9gdhi2YhiGpi1O021vbJA3wLo5AAAAnIskHTDBivRyfb6p0OwwbMEbCOqed7/TU/N3SBId3AEAAOBoJOmASSa+8608zPVuV4XHp/97aY3e35AnaVcHd5NjAgAAAOKJJB0wSYM/qDvepOy9Lemldbr8heVak1UROcaINQAAADgdSTpgosU7SvXVtmKzw7CcFWllunzacmWX15sdCgAAAJBQJOmAyf741kY1+IJmh2EZb63J0bWvrFFNI1sBAAAA4D4k6YDJPN6g7npro9lhmC4YMvTEvG26/4NNCoSoawcAAIA7kaQDFjB/a7G+SS01OwzT1DT69YfX12vG0gxJTQ3iAAAAADciSQcs4rY3NqjR766y92DI0FtrcnTOU0v05damvflJokEcAAAA3IskHbCI2saA7n33W7PDSJg1mRW65Plluv+DTSr3+CLHyc8BAADgZr3MDgDA9z75rlDX/LRcPz3iB2aHEjf5VQ2aMm+bPv2uMHIsKYnVcwAAAEBiJR2wnD+8tl6+QMjsMGKuwRfUs1/u1LlTl0QS9PDWcxJ0AAAAoAlJOmAxVQ1+TfrgO7PDiBnDMPTxtwU6d+oS/WtRqhr931+AIDcHAAAAmqPcHbCg9zfk65rThulHww4wO5Ru2ZRXrcmfbNG67MrIsSSRnAMAAABtYSUdsKibX12nQNCeZe+ltV795b3vdMnzyyIJenisGgk6AAAA0DaSdMCiyj2+/2/v3oOjqs8/jn8SgYRAw1VCkEs7TA0EkGgQJkRLpAFqU20qFX52BIzYWoURxTItVkH010GEiFRUCOSC/rgPBAUBhZAEhSgGEyE2pqBQcCDEC5AQJOTy/f3hZOuSJQmbvZzdvF8zmWHP+Z5znrNPnhOeOd89q2fe+szbYVyTyzV1Stn7heIWZWt9/km7hpzPnQMAAABNY7o7YGFrD5zQH4b31ZDenbwdSqOMMdrzeZn+951iHfum0tvhAAAAAD6LO+mAxU1d9bFq66x7G/poWYWmpH+sqavybQ16QBPbAAAAAHCMJh2wuLKKKj2/zXrT3s9frNa8rZ9p3Mvva++/v5b0o69U815YAAAAgE9jujvgA1bt/4/+Z3hfDegZ6u1QVFtntPbACSW/V6KzF6vt1tGcAwAAAC3DnXTABxhJSekfq87L0973f/GNEv75vp7eUtSgQQcAAADQcjTpgI84ff6SXtjxuVeOffK7i3rk/w7qDys+0uelFZL43DkAAADgDkx3B3zIive/1MRb+6h/j44eOV5lVY1ez/lCKe9/qcs1P3xne4B+uLPP1HYAAADA9biTDvgQI+mB9AMybv7S8bo6o8yCrzQ6OUdLs4/aGvT6GAAAAAC4B0064GNOnv1eL+36t9v2X3jynMYv268n1n+qM+VVbjsOAAAAgIaY7g74oFezj+r30b3Vr1sHl+2zrPySFuws0aZPvrItCwiQ3HzTHgAAAMCPcCcd8EF1RpqS5ppp75eqa/VazlHdsSjHrkGXaNABAAAAT6NJB3zU8W8vamn2Uae3N8bo3c9KNXbxXr24s0SVl2tdGB0AAAAAZzDdHfBhi3f9W+Nv6a1endtf03YlpRV6bttn2nf0W9uy+qe2AwAAAPAe7qQDPuxap72frbysOW8V6c4le20Nev33ndOgAwAAAN5Hkw74uCNlF7Ty/S8bHVNdW6eMfccUtyhHb+T9R3U/6shpzgEAAADrYLo74Ade2Fmiu4feoLBOwQ3WvX/kaz239V86UnbBC5EBAAAAuBbcSQf8QG2d0QMZB+yWHf+mUg+tytek1AO2Bj3A0cYAAAAALIM76YCfKD5doTf2H9c90b21dM9RpX7wpaprf5jMXv9QOKa2AwAAANZGkw74kee2/UuvZB/V1xVVdstpzgEAAADfwHR3wI/U1JkGDToAAAAA30GTDviZAD54DgAAAPgsmnTAzzTzK9MBAAAAWBBNOgAAAAAAFkGTDgAAAACARdCkAwAAAABgETTpAAAAAABYBE06AAAAAAAWQZMOAAAAAIBF0KQDAAAAAGARNOkAAAAAAFgETToAAAAAABZBkw4AAAAAgEXQpAMAAAAAYBE06QAAAAAAWARNOgAAAAAAFkGTDgAAAACARdCkAwAAAABgETTpAAAAAABYBE06AAAAAAAWQZMOAAAAAIBFWKJJf/XVV/XTn/5UwcHBGjFihA4cONDo+I0bN2rAgAEKDg7WkCFDtH37dg9FCgAAAACA+3i9SV+/fr1mzpypuXPn6pNPPtHQoUM1btw4lZWVORy/f/9+3XfffZo6daoKCgqUmJioxMREFRUVeThyAAAAAABcy+tN+ksvvaQ//vGPSkpKUmRkpJYtW6aQkBClpaU5HL9kyRL96le/0qxZszRw4EA9//zzuuWWW7R06VIPRw4AAAAAgGt5tUm/fPmyDh48qPj4eNuywMBAxcfHKy8vz+E2eXl5duMlady4cVcdDwAAAACAr2jjzYN/8803qq2tVVhYmN3ysLAwff755w63KS0tdTi+tLTU4fiqqipVVVXZXp8/f16SVF5e3pLQPeJS5QVVX6pUnfF2JAAAAABgXRcvVKi8vIO3w7iq+v7TmKabO6826Z4wf/58zZs3r8HyPn36eCEaAAAAAICr/f5lb0fQPBUVFerUqVOjY7zapHfv3l3XXXedzpw5Y7f8zJkz6tmzp8NtevbseU3jZ8+erZkzZ9pe19XV6bvvvlO3bt0UEBDQwjOAN5SXl6tPnz46efKkQkNDvR0OXIS8+h9y6n/IqX8ir/6HnPon8urbjDGqqKhQr169mhzr1Sa9Xbt2io6OVlZWlhITEyX90ERnZWVp+vTpDreJiYlRVlaWHn/8cduyXbt2KSYmxuH4oKAgBQUF2S3r3LmzK8KHl4WGhnKB8kPk1f+QU/9DTv0TefU/5NQ/kVff1dQd9Hpen+4+c+ZMTZkyRcOGDdPw4cP18ssvq7KyUklJSZKkyZMn64YbbtD8+fMlSTNmzNCoUaOUnJyshIQErVu3Tvn5+UpJSfHmaQAAAAAA0GJeb9InTpyor7/+WnPmzFFpaamioqK0c+dO28PhTpw4ocDA/z6EfuTIkVqzZo2efvppPfXUU/r5z3+uLVu2aPDgwd46BQAAAAAAXMLrTbokTZ8+/arT23Nychosu/fee3Xvvfe6OSpYVVBQkObOndvgYwzwbeTV/5BT/0NO/RN59T/k1D+R19YjwDTnGfAAAAAAAMDtApseAgAAAAAAPIEmHQAAAAAAi6BJBwAAAADAImjSAQAAAACwCJp0uM38+fN166236ic/+Yl69OihxMRElZSU2I25dOmSpk2bpm7duqljx44aP368zpw5YzfmxIkTSkhIUEhIiHr06KFZs2appqbGtn7z5s0aM2aMrr/+eoWGhiomJkbvvvtuo7EdP35cAQEBDX4+/PBD170BfshTOc3JyXGYn9LS0kbjO3TokG6//XYFBwerT58+evHFF1138n7MU3l94IEHHOZ10KBBV42NWnWOq3L62GOPKTo6WkFBQYqKinJ4LGfqrqnfFTjmqbzm5OTot7/9rcLDw9WhQwdFRUVp9erVTcbnqFbXrVvXonP2d57KqbPXUmrVOZ7K67PPPuswrx06dGg0PmrV+mjS4Ta5ubmaNm2aPvzwQ+3atUvV1dUaO3asKisrbWOeeOIJbd26VRs3blRubq5OnTqle+65x7a+trZWCQkJunz5svbv369Vq1YpIyNDc+bMsY3Zu3evxowZo+3bt+vgwYO64447dNddd6mgoKDJGHfv3q3Tp0/bfqKjo137JvgZT+W0XklJiV1+evTocdXYysvLNXbsWPXr108HDx7UwoUL9eyzzyolJcW1b4If8lRelyxZYpfPkydPqmvXrs36Sk1q9dq4Iqf1HnzwQU2cONHhcZypu2u5BsCep/K6f/9+3XTTTdq0aZMOHTqkpKQkTZ48Wdu2bWsyxvT0dLtaTUxMdPp8WwNP5bTetVxLqVXneSqvf/nLX+zyefr0aUVGRjbr7yq1anEG8JCysjIjyeTm5hpjjDl37pxp27at2bhxo21McXGxkWTy8vKMMcZs377dBAYGmtLSUtuY119/3YSGhpqqqqqrHisyMtLMmzfvquuPHTtmJJmCgoIWnlXr5q6cZmdnG0nm7NmzzY7ltddeM126dLH7vfjrX/9qIiIiWnKKrZKnajUzM9MEBASY48ePXzUWatU1nMnpj82dO9cMHTq0wXJn6s7Z6zoacldeHfn1r39tkpKSGh0jyWRmZjY7fjTkrpw6cy2lVl3HU7VaWFhoJJm9e/c2Oo5atT7upMNjzp8/L0nq2rWrJOngwYOqrq5WfHy8bcyAAQPUt29f5eXlSZLy8vI0ZMgQhYWF2caMGzdO5eXl+uyzzxwep66uThUVFbbjNObuu+9Wjx49dNttt+ntt992+txaK3fnNCoqSuHh4RozZoz27dvXaCx5eXn6xS9+oXbt2tntt6SkRGfPnm3ZibYynqrV1NRUxcfHq1+/fk3GRK22jDM5bQ5n6s6Z3xU45q68Xu1Yzfm7Om3aNHXv3l3Dhw9XWlqajDEtOm5r4+6cXsu1lFp1HU/V6sqVK3XjjTfq9ttvb3IstWptbbwdAFqHuro6Pf7444qNjdXgwYMlSaWlpWrXrp06d+5sNzYsLMz22ePS0lK7Pw716+vXObJo0SJduHBBEyZMuGo8HTt2VHJysmJjYxUYGKhNmzYpMTFRW7Zs0d133+3sabYq7sxpeHi4li1bpmHDhqmqqkorV65UXFycPvroI91yyy0O4yktLdXPfvazq+63S5cuLTvhVsJTtXrq1Cnt2LFDa9asaTQearXlnM1pczhTd85c19GQO/N6pQ0bNujjjz/W8uXLGx333HPPafTo0QoJCdF7772nRx99VBcuXNBjjz3m9LFbE3fm1JlrKbXqGp6q1UuXLmn16tX629/+1uRYatX6aNLhEdOmTVNRUZE++OADtx5nzZo1mjdvnt56661GP7/cvXt3zZw50/b61ltv1alTp7Rw4UL+499M7sxpRESEIiIibK9HjhypL774QosXL9abb77p8uPhvzxVq6tWrVLnzp2b/AwctdpynsopPMtTec3OzlZSUpJWrFjR6EMeJemZZ56x/fvmm29WZWWlFi5cyH/8m8mdOeVa6j2eqtXMzExVVFRoypQpTY6lVq2P6e5wu+nTp2vbtm3Kzs5W7969bct79uypy5cv69y5c3bjz5w5o549e9rGXPmky/rX9WPqrVu3Tg899JA2bNhgN32ouUaMGKGjR49e83atkady+mPDhw9vND/O7hf/5am8GmOUlpamSZMm2U2Tbi5qtflaktPmcKbuqNWWc3de6+Xm5uquu+7S4sWLNXny5GvefsSIEfrqq69UVVV1zdu2Np7K6Y81dS2lVlvOk3lduXKlfvOb3zSY/dAc1Kr10KTDbYwxmj59ujIzM7Vnz54GUyKjo6PVtm1bZWVl2ZaVlJToxIkTiomJkSTFxMTo8OHDKisrs43ZtWuXQkNDFRkZaVu2du1aJSUlae3atUpISHAq3sLCQoWHhzu1bWvhyZxeqan8xMTEaO/evaqurrbbb0REBFPdm+DpvObm5uro0aOaOnWqU/FSq01zRU6bw5m6c/YaAM/lVfrha9gSEhK0YMEC/elPf3Iq3sLCQnXp0kVBQUFObd8aeDKnV2rO31Vq1TmezuuxY8eUnZ3dor+r1KrFeOuJdfB/jzzyiOnUqZPJyckxp0+ftv1cvHjRNubPf/6z6du3r9mzZ4/Jz883MTExJiYmxra+pqbGDB482IwdO9YUFhaanTt3muuvv97Mnj3bNmb16tWmTZs25tVXX7U7zrlz52xjXnnlFTN69Gjb64yMDLNmzRpTXFxsiouLzT/+8Q8TGBho0tLS3Pyu+DZP5XTx4sVmy5Yt5siRI+bw4cNmxowZJjAw0Ozevds25sqcnjt3zoSFhZlJkyaZoqIis27dOhMSEmKWL1/u5nfF93kqr/Xuv/9+M2LECIexUKuu4YqcGmPMkSNHTEFBgXn44YfNjTfeaAoKCkxBQYHtyc7NqbvNmzfbPe39Wn5XYM9Ted2zZ48JCQkxs2fPtjvOt99+a9vHlXl9++23zYoVK8zhw4fNkSNHzGuvvWZCQkLMnDlz3Pyu+DZP5bQ511Jq1XU8ldd6Tz/9tOnVq5epqalpEAu16pto0uE2khz+pKen28Z8//335tFHHzVdunQxISEh5ne/+505ffq03X6OHz9u7rzzTtO+fXvTvXt38+STT5rq6mrb+lGjRjk8zpQpU2xj5s6da/r162d7nZGRYQYOHGhCQkJMaGioGT58uN3XYMAxT+V0wYIFpn///iY4ONh07drVxMXFmT179tjt48qcGmPMp59+am677TYTFBRkbrjhBvPCCy+4/D3wR57KqzE/NHXt27c3KSkpDmOhVl3DVTm92vX12LFjtjFN1V16erq58p5Ac35X0JCn8jplyhSH60eNGmXbx5V53bFjh4mKijIdO3Y0HTp0MEOHDjXLli0ztbW17nxLfJ6nctqcaym16jqevAbX1taa3r17m6eeesphLNSqbwowhuftAwAAAABgBXwmHQAAAAAAi6BJBwAAAADAImjSAQAAAACwCJp0AAAAAAAsgiYdAAAAAACLoEkHAAAAAMAiaNIBAAAAALAImnQAAAAAACyCJh0AACgvL0/XXXedEhISvB0KAACtWoAxxng7CAAA4F0PPfSQOnbsqNTUVJWUlKhXr17eDgkAgFaJO+kAALRyFy5c0Pr16/XII48oISFBGRkZtnU5OTkKCAhQVlaWhg0bppCQEI0cOVIlJSV2+3j99dfVv39/tWvXThEREXrzzTc9fBYAAPgHmnQAAFq5DRs2aMCAAYqIiND999+vtLQ0XTnR7u9//7uSk5OVn5+vNm3a6MEHH7Sty8zM1IwZM/Tkk0+qqKhIDz/8sJKSkpSdne3pUwEAwOcx3R0AgFYuNjZWEyZM0IwZM1RTU6Pw8HBt3LhRcXFxysnJ0R133KHdu3frl7/8pSRp+/btSkhI0Pfff6/g4GDFxsZq0KBBSklJse1zwoQJqqys1DvvvOOt0wIAwCdxJx0AgFaspKREBw4c0H333SdJatOmjSZOnKjU1FS7cTfddJPt3+Hh4ZKksrIySVJxcbFiY2PtxsfGxqq4uNidoQMA4JfaeDsAAADgPampqaqpqbF7UJwxRkFBQVq6dKltWdu2bW3/DggIkCTV1dV5LlAAAFoJ7qQDANBK1dTU6I033lBycrIKCwttP59++ql69eqltWvXNms/AwcO1L59++yW7du3T5GRke4IGwAAv8addAAAWqlt27bp7Nmzmjp1qjp16mS3bvz48UpNTdXChQub3M+sWbM0YcIE3XzzzYqPj9fWrVu1efNm7d69212hAwDgt7iTDgBAK5Wamqr4+PgGDbr0Q5Oen5+vQ4cONbmfxMRELVmyRIsWLdKgQYO0fPlypaenKy4uzg1RAwDg33i6OwAAAAAAFsGddAAAAAAALIImHQAAAAAAi6BJBwAAAADAImjSAQAAAACwCJp0AAAAAAAsgiYdAAAAAACLoEkHAAAAAMAiaNIBAAAAALAImnQAAAAAACyCJh0AAAAAAIugSQcAAAAAwCJo0gEAAAAAsIj/B3xpz/myuQLXAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"ano\"])[\"casos_dengue\"].sum().plot(kind='area')\n",
+ "plt.title(\"Casos de Dengue distribuídos ao logo de 20 anos\")\n",
+ "plt.xlabel(\"Ano\")\n",
+ "plt.ylabel(\"Casos\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Nessa análise durantes os anos observamos um padrão de picos de casos da doença com período de 2 anos, onde há um aumento e dimunuição quase periódica. Vale ressaltar que esses picos vem aumentando em relação aos anos."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Casos')"
+ ]
+ },
+ "execution_count": 23,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+kAAAK+CAYAAADewV+EAAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAB8pElEQVR4nO3dd3hUZeL28Tu0hBaK1AACIooUAbEBKrgiqChi19Wfil1hFevK7toLlsVKE0RQkVcpUkR67zWEHkhICOmF9J7MnPcPzCxDEkhCkmfK93NduSBnzszcU1LuPM95jo9lWZYAAAAAAIBxNUwHAAAAAAAAp1DSAQAAAABwEZR0AAAAAABcBCUdAAAAAAAXQUkHAAAAAMBFUNIBAAAAAHARlHQAAAAAAFwEJR0AAAAAABdBSQcAeL2kpCS9++672r59u+koAADAy1HSAbg0Hx8fvfvuu6ZjeK0OHTro8ccfd3y+bt06+fj4aN26dVV+3++++658fHyctvn4+GjUqFGVfl8vvvii5s2bp8svv7zUfWbMmCEfHx8dP3680u+/Op35mqJ6DBw4UAMHDjQdw61V5/efysbrD6A8KOmAGzp27JieffZZXXTRRfLz85O/v7/69++vr7/+Wjk5OabjubQOHTrIx8dHPj4+qlGjhho3bqwePXromWeeYRS1Cn388cdasGCB6RglWrx4sf744w/NnTtXdevWNR0HAM7p999/1wMPPKCLLrpI9erV06WXXqpXX31VqampJe6/aNEiXXHFFfLz89OFF16od955R4WFhdUbGkCZ1TIdAED5/Pnnn7rvvvvk6+urRx99VN27d1d+fr42bdqk119/XQcPHtSUKVNMx3RpvXr10quvvipJysjI0OHDhzVnzhxNnTpVL7/8sr744gvDCV3XDTfcoJycHNWpU6dc1/v444917733avjw4WW+zn/+8x+9+eab5UxYPhkZGXr++ec1ZcoUXXrppVV6XwBQWZ555hkFBATokUce0YUXXqj9+/dr/PjxWrJkiQIDA53+4Lh06VINHz5cAwcO1Lfffqv9+/frww8/VEJCgiZNmmTwUQAoDSUdcCPh4eF68MEH1b59e61Zs0atW7d2XDZy5EiFhobqzz//NJjQPbRp00aPPPKI07ZPP/1Uf//73/Xll1+qc+fOev755w2lc201atSQn59fld5HVlaW6tevr1q1aqlWrar9MdWwYUNFRkZW6X0AQGWbO3dusenzffr00WOPPaZffvlFTz31lGP7a6+9pssvv1wrVqxwfE/19/fXxx9/rJdeekldunSpzugAyoDp7oAb+eyzz5SZmalp06Y5FfQiF198sV566SXH59OnT9ff/vY3tWjRQr6+vuratWuJfzXftWuXhgwZombNmqlu3brq2LGjnnjiCad9srKy9Oqrr6pdu3by9fXVpZdeqv/+97+yLMtpv5UrV+q6665T48aN1aBBA1166aX617/+dc7HlpeXp5dfflnNmzdXw4YNNWzYMEVFRZW4b3R0tJ544gm1bNlSvr6+6tatm3744Ydz3sfZ1K1bVz///LOaNm2qjz76yOlx2e12ffXVV+rWrZv8/PzUsmVLPfvss0pJSXG6jQ4dOuj222/Xpk2bdPXVV8vPz08XXXSRfvrpp2L3t2/fPg0YMEB169ZV27Zt9eGHH2r69OnFjnku7Zj8ko4rTk1N1ejRox2v0cUXX6xPP/1Udrv9nI/fsix9+OGHatu2rerVq6cbb7xRBw8eLLZfSceEhoSE6J577lGrVq3k5+entm3b6sEHH1RaWprjMWRlZenHH390HGpQlL3ouPNDhw7p73//u5o0aaLrrrvO6bKS/PLLL7r00kvl5+enPn36aMOGDU6XP/744+rQoUOx65V0myU9lwcPHtTf/vY3p9entOdx4sSJ6tatm3x9fRUQEKCRI0cWm3J6rueoNAMHDlT37t21e/du9evXz/H1OXny5GL75uXl6Z133tHFF18sX19ftWvXTm+88Yby8vLOeh+SFBYWpvvuu09NmzZVvXr1dO2115b4B79vv/1W3bp1U7169dSkSRNdeeWVmjVr1llvu+g9M3v2bL333ntq06aNGjZsqHvvvVdpaWnKy8vT6NGj1aJFCzVo0EAjRowoMfPMmTPVp08f1a1bV02bNtWDDz5Y7A8sZX2eK/O2SjJlyhR16tRJdevW1dVXX62NGzeWuF9CQoKefPJJtWzZUn5+furZs6d+/PHHc96+JC1cuFBDhw5VQECAfH191alTJ33wwQey2WxO+xW9hw4dOqQbb7xR9erVU5s2bfTZZ58ZySNJc+bMcTz/zZo10yOPPKLo6Ogy3U9Jynp7c+bMUdeuXeXn56fu3btr/vz5JX6vKOvPu9KU9fU/n6/Zko5vv+uuuyRJhw8fdmw7dOiQDh06pGeeecbpj54vvPCCLMvS3Llzz3o/ycnJeu2119SjRw81aNBA/v7+uvXWW7V3716n/U7/Ov/oo4/Utm1b+fn56aabblJoaGix2y3LaxYXF6cRI0aobdu28vX1VevWrXXnnXe6/bogQFkwkg64kT/++EMXXXSR+vXrV6b9J02apG7dumnYsGGqVauW/vjjD73wwguy2+0aOXKkpFO/lA0ePFjNmzfXm2++qcaNG+v48eP6/fffHbdjWZaGDRumtWvX6sknn1SvXr20fPlyvf7664qOjtaXX34p6VSxuf3223X55Zfr/fffl6+vr0JDQ7V58+ZzZn3qqac0c+ZM/f3vf1e/fv20Zs0aDR06tNh+8fHxuvbaax0LiDVv3lxLly7Vk08+qfT0dI0ePbpMz01JGjRooLvuukvTpk3ToUOH1K1bN0nSs88+qxkzZmjEiBF68cUXFR4ervHjx2vPnj3avHmzateu7biN0NBQ3XvvvXryySf12GOP6YcfftDjjz+uPn36OG4vOjpaN954o3x8fDRmzBjVr19f33//vXx9fSucPTs7WwMGDFB0dLSeffZZXXjhhdqyZYvGjBmj2NhYffXVV2e9/ttvv60PP/xQt912m2677TYFBgZq8ODBys/PP+v18vPzNWTIEOXl5ekf//iHWrVqpejoaC1evFipqalq1KiRfv75Zz311FO6+uqr9cwzz0iSOnXq5HQ79913nzp37qyPP/74nL8Ir1+/Xr/99ptefPFF+fr6auLEibrlllu0Y8cOde/e/dxP1jnExcXpxhtvVGFhod58803Vr19fU6ZMKfF49XfffVfvvfeeBg0apOeff15HjhzRpEmTtHPnTsd7oyzP0dmkpKTotttu0/3336+HHnpIs2fP1vPPP686deo4/phmt9s1bNgwbdq0Sc8884wuu+wy7d+/X19++aWOHj161vUA4uPj1a9fP2VnZ+vFF1/UBRdcoB9//FHDhg3T3LlzHb/4T506VS+++KLuvfdevfTSS8rNzdW+ffu0fft2/f3vfz/n8zp27FjVrVtXb775pkJDQ/Xtt9+qdu3aqlGjhlJSUvTuu+9q27ZtmjFjhjp27Ki3337bcd2PPvpIb731lu6//3499dRTSkxM1LfffqsbbrhBe/bsUePGjcv8PFfmbZVk2rRpevbZZ9WvXz+NHj1aYWFhGjZsmJo2bap27do59svJydHAgQMVGhqqUaNGqWPHjpozZ44ef/xxpaamOv3BtSQzZsxQgwYN9Morr6hBgwZas2aN3n77baWnp+vzzz932jclJUW33HKL7r77bt1///2aO3eu/vnPf6pHjx669dZbqzVP0ffSq666SmPHjlV8fLy+/vprbd682fH8l0dZb+/PP//UAw88oB49emjs2LFKSUnRk08+qTZt2jjdXll/3pWmrK//+XzNliYuLk6S1KxZM8e2PXv2SJKuvPJKp30DAgLUtm1bx+WlCQsL04IFC3TfffepY8eOio+P13fffacBAwbo0KFDCggIcNr/k08+UY0aNfTaa68pLS1Nn332mR5++GGnNV/K+prdc889OnjwoP7xj3+oQ4cOSkhI0MqVK3XixIkS/wgLeBQLgFtIS0uzJFl33nlnma+TnZ1dbNuQIUOsiy66yPH5/PnzLUnWzp07S72dBQsWWJKsDz/80Gn7vffea/n4+FihoaGWZVnWl19+aUmyEhMTy5zRsiwrKCjIkmS98MILTtv//ve/W5Ksd955x7HtySeftFq3bm0lJSU57fvggw9ajRo1KvExn659+/bW0KFDS7286DEsXLjQsizL2rhxoyXJ+uWXX5z2W7ZsWbHt7du3tyRZGzZscGxLSEiwfH19rVdffdWx7R//+Ifl4+Nj7dmzx7Ht5MmTVtOmTS1JVnh4uGP7mY//9Pt67LHHHJ9/8MEHVv369a2jR4867ffmm29aNWvWtE6cOFHqY05ISLDq1KljDR061LLb7Y7t//rXvyxJTvezdu1aS5K1du1ay7Isa8+ePZYka86cOaXevmVZVv369Z1up8g777xjSbIeeuihUi87nSRLkrVr1y7HtoiICMvPz8+66667HNsee+wxq3379mW6zTOfy9GjR1uSrO3btzu2JSQkWI0aNXJ6fYqet8GDB1s2m82x7/jx4y1J1g8//GBZVtmfo5IMGDDAkmSNGzfOsS0vL8/q1auX1aJFCys/P9+yLMv6+eefrRo1algbN250uv7kyZMtSdbmzZvP+XhPv25GRobVsWNHq0OHDo7Hduedd1rdunUr92Moes90797dkdeyLOuhhx6yfHx8rFtvvdVp/759+zq9dsePH7dq1qxpffTRR0777d+/36pVq5Zje1me58q8rZLk5+dbLVq0sHr16mXl5eU5tk+ZMsWSZA0YMMCx7auvvrIkWTNnznS6ft++fa0GDRpY6enpZ72vkr7XPfvss1a9evWs3Nxcx7ai99BPP/3k2JaXl2e1atXKuueee6o1T9Hz0717dysnJ8ex3+LFiy1J1ttvv33W+zjz+095bq9Hjx5W27ZtrYyMDMe2devWWZKc3m9l/XlXkvK8/uX5mi2rJ5980qpZs6bTz4HPP//cklTiz4CrrrrKuvbaa896m7m5uU7f3yzLssLDwy1fX1/r/fffd2wrem0uu+wyp8f+9ddfW5Ks/fv3W5ZV9tcsJSXFkmR9/vnn5XgGAM/BdHfATaSnp0s6dQxtWZ0+8peWlqakpCQNGDBAYWFhjimbRX+xXrx4sQoKCkq8nSVLlqhmzZp68cUXnba/+uqrsixLS5cudbqthQsXlmmK9em3L6nY7Z85Km5ZlubNm6c77rhDlmUpKSnJ8TFkyBClpaUpMDCwzPdbkgYNGkg6taCYdGpKXqNGjXTzzTc73V+fPn3UoEEDrV271un6Xbt21fXXX+/4vHnz5rr00ksVFhbm2LZs2TL17dtXvXr1cmxr2rSpHn744QrnnjNnjq6//no1adLEKeegQYNks9mKTQc/3apVq5Sfn69//OMfTlPByzIroWhEcfny5crOzq5w/ueee67M+/bt21d9+vRxfH7hhRfqzjvv1PLly0ucWlteS5Ys0bXXXqurr77asa158+bFXp+i52306NGqUeN/P06ffvpp+fv7O6aLn+9zVKtWLT377LOOz+vUqaNnn31WCQkJ2r17t6RTr/9ll12mLl26OL3+f/vb3ySp2Pv0zMd79dVXOw4zkE59HTzzzDM6fvy4Dh06JOnU13dUVJR27txZ7scgSY8++qjTrJNrrrlGlmUVO7TmmmuuUWRkpGPl6d9//112u13333+/02Nr1aqVOnfu7HhsZXmeK/O2SrJr1y4lJCToueeec1pc8fHHHy82+r5kyRK1atVKDz30kGNb7dq19eKLLyozM1Pr168/632d/v09IyNDSUlJuv7665Wdna3g4GCnfRs0aOC0DkedOnV09dVXO31fqo48Rc/PCy+84LS2xdChQ9WlS5dyr6lS1tuLiYnR/v379eijjzq+x0vSgAED1KNHD6fbLOvPu7PlKcvrfz5fsyWZNWuWpk2bpldffVWdO3d2bC8640tJM7X8/PzOeUYYX19fx/c3m82mkydPOg5lK+nn7YgRI5wee9HPw6L3Wllfs7p166pOnTpat25dsUPLAG9ASQfchL+/v6T/lcey2Lx5swYNGqT69eurcePGat68ueP48KKSPmDAAN1zzz1677331KxZM915552aPn260zFxERERCggIKPYHgssuu8xxuSQ98MAD6t+/v5566im1bNlSDz74oGbPnn3Owh4REaEaNWoUmwJ95mrbiYmJSk1N1ZQpU9S8eXOnjxEjRkg6NX3/fGRmZkr63x9DQkJClJaWphYtWhS7z8zMzGL3d+GFFxa7zSZNmjj9khEREaGLL7642H4lbSurkJAQLVu2rFjGQYMGSTr781L0+p3+i510qpg2adLkrPfbsWNHvfLKK/r+++/VrFkzDRkyRBMmTCjTcbtn3k5ZnZlTki655BJlZ2crMTGxXPdbkoiIiBLv48z3Y9Hzdub2OnXq6KKLLnJcfr7PUUBAgOrXr++07ZJLLpEkx7GZISEhOnjwYLHXv2i/c73+Ja1sf+bX9z//+U81aNBAV199tTp37qyRI0eW6VCWImd+bRSVltOnABdtt9vtjucnJCRElmWpc+fOxR7f4cOHHY+tLM9zZd5Wac+lVPw9Wrt2bV100UXF9u3cubPTH3ik4s97aQ4ePKi77rpLjRo1kr+/v5o3b+4o4mfmbNu2bbG1GEr6vlTVeUr7mpGkLl26nPM+zlTW2yv6tyzfd8v68+5secry+p/P1+yZNm7cqCeffFJDhgzRRx995HRZ0R9PSjrOPTc395ynnbTb7Y4FVX19fdWsWTM1b95c+/btK/Hr4cyv86KfIUXvtbK+Zr6+vvr000+1dOlStWzZUjfccIM+++wzx5R+wNN59THpGzZs0Oeff67du3crNjZW8+fPL9fpgaRTI3vjxo3TlClTFBERoWbNmumFF17Qv//976oJDa/l7++vgIAAHThwoEz7Hzt2TDfddJO6dOmiL774Qu3atVOdOnW0ZMkSffnll47i7OPjo7lz52rbtm36448/tHz5cj3xxBMaN26ctm3b5jTqcC5169bVhg0btHbtWv35559atmyZfvvtN/3tb3/TihUrVLNmzQo99iJFmR955BE99thjJe5z+eWXn9d9FD2/Rb+42e12tWjRQr/88kuJ+zdv3tzp89Ieo1XGBYfK6swRY7vdrptvvllvvPFGifsX/eJXFcaNG6fHH39cCxcu1IoVK/Tiiy9q7Nix2rZtm9q2bVum26js85OXtuBcZYy0V0RlPEdnY7fb1aNHj1JPH3hmEa6Iyy67TEeOHNHixYu1bNkyzZs3TxMnTtTbb7+t995775zXL+1r41xfM3a7XT4+Plq6dGmJ+57+Pepcz3Nl3pZJqampGjBggPz9/fX++++rU6dO8vPzU2BgoP75z38W+8NoVX9fKm8eVN7X7N69ezVs2DB1795dc+fOLXZGjKJFZmNjY4vdZmxsrNOMoZJ8/PHHeuutt/TEE0/ogw8+UNOmTVWjRg2NHj26xNe1Mt9ro0eP1h133KEFCxZo+fLleuuttzR27FitWbNGvXv3LvftAe7Eq0t6VlaWevbsqSeeeEJ33313hW7jpZde0ooVK/Tf//5XPXr0UHJyspKTkys5KXDK7bffrilTpmjr1q3q27fvWff9448/lJeXp0WLFjn9Zbu0KXTXXnutrr32Wn300UeaNWuWHn74Yf3666966qmn1L59e61atUoZGRlOowtFUxjbt2/v2FajRg3ddNNNuummm/TFF1/o448/1r///W+tXbvWMap7pvbt28tut+vYsWNOf10/cuSI035FK7/bbLZSb+t8ZGZmav78+WrXrp1j1KRTp05atWqV+vfvX2lFsn379iWudlvStiZNmhRbKTw/P1+xsbFO2zp16qTMzMwKPS9Fr19ISIjTaE9iYmKZpxn26NFDPXr00H/+8x9t2bJF/fv31+TJk/Xhhx9KKr00V0RISEixbUePHlW9evUcfzQp6XmTzj0aKJ16Pkq6jzPfj0XP25EjR5yet/z8fIWHhxd7Lc71HJUmJibGcVq6IkePHpUkx+JJnTp10t69e3XTTTeV+7lu3759sccmlfz1Xb9+fT3wwAN64IEHlJ+fr7vvvlsfffSRxowZU2Wn5uvUqZMsy1LHjh3L9Memsz3PlXlbJTn9a6lo2rIkFRQUKDw8XD179nTad9++fbLb7U6j1yU972dat26dTp48qd9//1033HCDY3t4ePg5H1NpqiPP6V8zpz8/RdvOdh+lZS7L7RX9W5bvu+X5eVdanrK8/ufzNVvk2LFjuuWWW9SiRQstWbKkxD+qFx1WtWvXLqdCHhMTo6ioKMdinqWZO3eubrzxRk2bNs1pe2pqqtMCdWVV3vdAp06d9Oqrr+rVV19VSEiIevXqpXHjxmnmzJnlvm/AnXj1dPdbb71VH374oWPl2jPl5eXptddeU5s2bVS/fn1dc801TqcdOnz4sCZNmqSFCxdq2LBh6tixo/r06aObb765mh4BvM0bb7yh+vXr66mnnlJ8fHyxy48dO6avv/5a0v/+mn36X6/T0tI0ffp0p+ukpKQU+wt30Q/1oulxt912m2w2m8aPH++035dffikfHx/H6sAl/YHqzNsqSdH1v/nmG6ftZ65IXrNmTd1zzz2aN29eiTMKzmeqc05Ojv7v//5PycnJ+ve//+34pen++++XzWbTBx98UOw6hYWFJRbBcxkyZIi2bt2qoKAgx7bk5OQSR+s7depU7HjyKVOmFBsRvv/++7V161YtX7682G2kpqY6ju8tyaBBg1S7dm19++23Tu+Fc60IL51aK+HM2+7Ro4dq1Kjh9JrXr1+/Qs9VSbZu3ep0LGRkZKQWLlyowYMHO973nTp1Ulpamvbt2+fYr2jG1Lncdttt2rZtm3bs2OHYlpiYWOz1GTRokOrUqaNvvvnG6XmbNm2a0tLSHGcnKOtzVJrCwkJ99913js/z8/P13XffqXnz5o5j8++//35FR0dr6tSpxa6fk5OjrKyssz7eHTt2aOvWrY5tWVlZmjJlijp06KCuXbtKkk6ePOl0vTp16qhr166yLKvU9Swqw913362aNWvqvffeK/a9yrIsR66yPM+VeVslufLKK9W8eXNNnjzZ6cwIM2bMKPb+v+222xQXF6fffvvNsa2wsFDffvutGjRooAEDBpR6PyV9f8/Pz9fEiRNLvc65VEeeK6+8Ui1atNDkyZOdnselS5fq8OHDJZ7R42zKensBAQHq3r27fvrpJ8chTdKpM0Xs37/f6TbL+vOutDxlff3P52tWOrWS++DBg1WjRg0tX7682KyuIt26dVOXLl2K/dyYNGmSfHx8dO+99571fmrWrFnsa2XOnDkVPmVeWV+z7Oxs5ebmOl23U6dOatiwYZm+bwLuzqtH0s9l1KhROnTokH799VcFBARo/vz5uuWWW7R//3517tzZcTqsxYsX65ZbbpFlWRo0aJA+++wzNW3a1HR8eKBOnTpp1qxZeuCBB3TZZZfp0UcfVffu3ZWfn68tW7Y4TpcjSYMHD1adOnV0xx136Nlnn1VmZqamTp2qFi1aOI3C/vjjj5o4caLuuusuderUSRkZGZo6dar8/f112223SZLuuOMO3Xjjjfr3v/+t48ePq2fPnlqxYoUWLlyo0aNHO44lf//997VhwwYNHTpU7du3V0JCgiZOnKi2bds6LUp1pl69eumhhx7SxIkTlZaWpn79+mn16tUljnp88sknWrt2ra655ho9/fTT6tq1q5KTkxUYGKhVq1aVaSZLdHS046/wmZmZOnTokObMmaO4uDi9+uqrTot0DRgwQM8++6zGjh2roKAgDR48WLVr11ZISIjmzJmjr7/++py/5JzpjTfe0MyZM3XzzTfrH//4h+MUbBdeeKGSk5OdRlWeeuopPffcc7rnnnt08803a+/evVq+fHmxEYzXX39dixYt0u233+445VtWVpb279+vuXPn6vjx46WOejRv3lyvvfaaxo4dq9tvv1233Xab9uzZo6VLl55zpGTNmjUaNWqU7rvvPl1yySUqLCzUzz//7PiDSpE+ffpo1apV+uKLLxQQEKCOHTvqmmuuKdfzVqR79+4aMmSI0ynYJDlNuX7wwQf1z3/+U3fddZdefPFFZWdna9KkSbrkkkvOubjgG2+8oZ9//lm33HKLXnrpJccp2IpGGos0b95cY8aM0XvvvadbbrlFw4YN05EjRzRx4kRdddVVjuNxy/oclSYgIECffvqpjh8/rksuuUS//fabgoKCNGXKFMdCbP/3f/+n2bNn67nnntPatWvVv39/2Ww2BQcHa/bs2Vq+fHmxUzAVefPNN/X//t//06233qoXX3xRTZs21Y8//qjw8HDNmzfPMao6ePBgtWrVSv3791fLli11+PBhjR8/XkOHDi3Xgpbl1alTJ3344YcaM2aMjh8/ruHDh6thw4YKDw/X/Pnz9cwzz+i1114r0/NcmbdVktq1a+vDDz/Us88+q7/97W964IEHFB4erunTpxc7JvmZZ57Rd999p8cff1y7d+9Whw4dNHfuXG3evFlfffXVWZ/Tfv36qUmTJnrsscf04osvysfHRz///PN5TV+vjjy1a9fWp59+qhEjRmjAgAF66KGHHKff6tChg15++eVyZS7P7X388ce688471b9/f40YMUIpKSkaP368unfv7lTcy/rzrrQ8ZX39z+drVpJuueUWhYWF6Y033tCmTZu0adMmx2UtW7Z0GjD6/PPPNWzYMA0ePFgPPvigDhw4oPHjx+upp55yzBorze233673339fI0aMUL9+/bR//3798ssvxR5PWZX1NTt69Khuuukm3X///eratatq1aql+fPnKz4+Xg8++GCF7htwK9WyhrwbkGTNnz/f8XlERIRVs2ZNKzo62mm/m266yRozZoxlWadOLeLr62tdc8011oYNG6y1a9davXr1sm688cbqjA4vdPToUevpp5+2OnToYNWpU8dq2LCh1b9/f+vbb791OvXOokWLrMsvv9zy8/OzOnToYH366afWDz/84HQaqcDAQOuhhx6yLrzwQsvX19dq0aKFdfvttzud4sqyTp2S6eWXX7YCAgKs2rVrW507d7Y+//xzp1N2rV692rrzzjutgIAAq06dOlZAQID10EMPFTstWElycnKsF1980brgggus+vXrW3fccYcVGRlZ4inI4uPjrZEjR1rt2rWzateubbVq1cq66aabrClTppzzfopOkybJ8vHxsfz9/a1u3bpZTz/9tNMpt840ZcoUq0+fPlbdunWthg0bWj169LDeeOMNKyYmxum2Szq924ABA5xOvWNZp07xdP3111u+vr5W27ZtrbFjx1rffPONJcmKi4tz7Gez2ax//vOfVrNmzax69epZQ4YMsUJDQ4udRsuyTr1GY8aMsS6++GKrTp06VrNmzax+/fpZ//3vf51OfVUSm81mvffee1br1q2tunXrWgMHDrQOHDhQ7H7OPAVSWFiY9cQTT1idOnWy/Pz8rKZNm1o33nijtWrVKqfbDw4Otm644Qarbt26Tqd1KzolWkmn7SvtFGwjR460Zs6caXXu3Nny9fW1evfu7chzuhUrVljdu3e36tSpY1166aXWzJkzy3QKNsuyrH379lkDBgyw/Pz8rDZt2lgffPCBNW3atGKnyLOsU6dc69Kli1W7dm2rZcuW1vPPP2+lpKQ4Li/rc1SSAQMGWN26dbN27dpl9e3b1/Lz87Pat29vjR8/vti++fn51qeffmp169bN8vX1tZo0aWL16dPHeu+996y0tLSzPt5jx45Z9957r9W4cWPLz8/Puvrqq63Fixc77fPdd99ZN9xwg3XBBRdYvr6+VqdOnazXX3/d6bZLUvSeOfN0ZtOnTy/x9I+lvSfmzZtnXXfddVb9+vWt+vXrW126dLFGjhxpHTlyxLKs8j3PlXlbJZk4caLVsWNHy9fX17ryyiutDRs2lPh9ID4+3hoxYoTVrFkzq06dOlaPHj2s6dOnl+k+Nm/ebF177bVW3bp1rYCAAOuNN96wli9f7vT1aVn/ew+dqaTTFFZHHsuyrN9++83q3bu35evrazVt2tR6+OGHraioqHPex5nff8p7e7/++qvVpUsXy9fX1+revbu1aNEi65577rG6dOnitF9Zft6dTVlf/7J+zZak6OdYSR9n3o9lnTrdaq9evRw/c/7zn/+c8+eCZZ06Bdurr77q+NnQv39/a+vWrcUeT2lf5+Hh4ZakYu+jc71mSUlJ1siRI60uXbpY9evXtxo1amRdc8011uzZs8+ZGfAEPpZVyasZuSkfHx+nheP+/PNP3X777cVW1M3Ly9Pdd9+t3377Tc8884ymTp2qI0eOOI5tCwwMVJ8+fRQcHFziypUAUJrRo0fru+++U2Zm5nkvsgfPMHDgQCUlJZV5wUgA5dOrVy81b95cK1euNB0FAByY7l6Kol+Sd+/eXeyX5aKFOVq3bq1atWo5LT5TNG3oxIkTlHQApcrJyXFaiO7kyZP6+eefdd1111HQAaCSFRQUyMfHx2n183Xr1mnv3r3nXLwRAKobJb0UvXv3ls1mU0JCgq6//voS9+nfv78KCwt17NgxxzFKRSvulneFUgDepW/fvho4cKAuu+wyxcfHa9q0aUpPT9dbb71lOhoAeJzo6GgNGjRIjzzyiAICAhQcHKzJkyerVatWeu6550zHAwAnXl3SMzMznRamCg8PV1BQkJo2bapLLrlEDz/8sB599FGNGzdOvXv3VmJiolavXq3LL79cQ4cO1aBBg3TFFVfoiSee0FdffSW73a6RI0fq5ptvrtJzEgNwf7fddpvmzp2rKVOmyMfHR1dccYWmTZvmdPoiAEDlaNKkifr06aPvv/9eiYmJql+/voYOHapPPvlEF1xwgel4AODEq49JX7dunW688cZi2x977DHNmDFDBQUF+vDDD/XTTz8pOjpazZo107XXXqv33ntPPXr0kHTqPJP/+Mc/tGLFCtWvX1+33nqrxo0bx+ruAAAAAIBy8+qSDgAAAACAK6lhOgAAAAAAADiFkg4AAAAAgIvwuoXj7Ha7YmJi1LBhQ/n4+JiOAwAAAADwcJZlKSMjQwEBAapR4+xj5V5X0mNiYtSuXTvTMQAAAAAAXiYyMlJt27Y96z5eV9IbNmwo6dST4+/vbzgNAAAAAMDTpaenq127do4+ejZeV9KLprj7+/tT0gEAAAAA1aYsh1yzcBwAAAAAAC6Ckg4AAAAAgIugpAMAAAAA4CIo6QAAAAAAuAhKOgAAAAAALoKSDgAAAACAi6CkAwAAAADgIijpAAAAAAC4CEo6AAAAAAAugpIOAAAAAICLoKQDAAAAAOAiKOkAAAAAALgISjoAAAAAAC6Ckg4AAAAAgIugpAMAAAAA4CIo6QAAAAAAuAhKOgAAAAAALoKSDgAAAACAi6CkAwAAAADgIijpAAAAAAC4CEo6AAAAAAAugpIOAAAAAICLoKQDAAAAAOAiKOkAAAAAALgISjoAAAAAAC6ilukAAMz5YuVRTdsYpgsa+KpN47oKaFxXAY391LrRqX8DGtdV60Z+auhX23RUAAAAwCtQ0gEvlZ5boCkbjim3wK6s5GydSM4udd/6vjUV0Kiu2jT5q8g3Kiryp8p8q0Z+8q1VsxrTAwAAAJ6Jkg54qcV7Y5VbYC/xMh9J1mmfZ+XZFJKQqZCEzFJvr2n9On+Nxvv9VeTrqvVp/2/e0Fc1a/hU7oMAAAAAPAwlHfBSc3ZHSipeyFXC5yU583rJWflKzsrX/ui0EvevWcNHLRr6nhqNb1TC1PpGddW4Xm35+FDkAQAA4L0o6YAXCk3I0J4TqZLKVshLUt7r2eyWYtNyFZuWKymlxH18a9VQQOO6avPXsfDORf7U/+vV4dsWAAAAPBe/7QJeaM6uKNMRSpRXaFd4UpbCk7JK3aehXy21KSryp02nL1rkrlUjP9WuyYkrAAAA4J4o6YCXKbDZNS/QNUt6Sc6cVp+RW6jguAwFx2WUun+zBn9Nq/9rGn3rvxa7C/ir2Der76saHB8PAAAAF0RJB7zMuiOJSsrMNx2jzMp7fLwlKTEzT4mZeQqKLHn/WjV81KqR31lOO1dX/n61OD4eAAAA1Y6SDniZObtKXzDOXZ3rcRRV7aL9Cu2WolJyFJWSU+p16tauqYDGfmrTpN7/RuH/+vfSVg3VrIFvZUQHAAAAnFDSAS+SlJmnNcEJkjynoJdFRVarzymw6Vhilo4lFj8+vk7NGlrz6gC1bVqvsiICAAAAkiRWVwK8yII90Sq0e1M9L7uyFnlJyrfZNWb+/qqMAwAAAC9FSQe8hGVZmn3aVHeU3+lFfktokvILbcayAAAAwDNR0gEvsS8qTUfjMyV511T3qmKzpEnrjpmOAQAAAA9DSQe8BKPole/nbRGmIwAAAMDDUNIBL5BbYNOivTGSGEWvTEmZ+Qo8kWI6BgAAADwIJR3wAssPxikjt9B0DI/0yZJg0xEAAADgQSjpgBeYsytKkuTDXPdKtzMiWTl5/AEEAAAAlYOSDni4qJRsbQ5NkiRZzHWvdJYlfbn6qOkYAAAA8BCUdMDDzdsdzXHoVey3nVGmIwAAAMBDUNIBD2a3W5qzO9J0DI+XllOgjSGJpmMAAADAA1DSAQ+2LfykolJyTMfwCp8vP2I6AgAAADwAJR3wYI4F4wzn8Ab7o9KUlp1vOgYAAADcHCUd8FDpuQVaeiBWEudGrw6WpP+uYAE5AAAAnB9KOuChFu+NVW6B3XQMrzJ/T7TpCAAAAHBzlHTAQ83edWrBOKa6V5/MvEKtOBhnOgYAAADcGCUd8EAh8RkKikyVxFT36vbFSqa8AwAAoOIo6YAHmrOb83abEhyXocSMXNMxAAAA4KYo6YCHKbDZ9XsgJd2kT5YGm44AAAAAN0VJBzzMuiOJSsrkVGAm/bk/VpbFgQYAAAAoP0o64GHmsGCccbkFds0PZKV3AAAAlB8lHfAgSZl5WhOcIIkF40wbvzbUdAQAAAC4IUo64EEW7IlWoZ167grCkrIUnZJjOgYAAADcDCUd8BCWZXFudBfz0ZJDpiMAAADAzVDSAQ+xLypNR+MzJTHV3VWsOhQvOzMbAAAAUA6UdMBDMIruevJtln7ZHmE6BgAAANwIJR3wALkFNi3aGyOJUXRX892GMNMRAAAA4EYo6YAHWH4wThm5haZjoARRKTk6lpBhOgYAAADcBCUd8ABzdkVJknyY6+6SPloSbDoCAAAA3AQlHXBzkcnZ2hyaJEmymOvukjYcTVRBoc10DAAAALgBSjrg5uYFRnEcuosrtFuatincdAwAAAC4AUo64Mbsdktzd0eZjoEymL7luOkIAAAAcAOUdMCNbQs7qaiUHNMxUAbx6Xk6EJVmOgYAAABcHCUdcGNz/hpFZ7049/Dx0sOmIwAAAMDFUdIBN5WeW6Al+2MlcW50d7Et7KTyClhADgAAAKWjpANuavHeWOUV2k3HQDnYLWnC2lDTMQAAAODCKOmAm5q9K1ISU93dzcztJ0xHAAAAgAujpANuKCQ+Q0GRqZKY6u5ukrPytSP8pOkYAAAAcFGUdMANzeG0a27t02VHTEcAAACAi6KkA26mwGbX74GUdHcWGJGirLxC0zEAAADggijpgJtZdyRRSZn5pmPgPFiSvlh51HQMAAAAuCBKOuBm5rBgnEcoeh0BAACA01HSATeSlJmnNcEJklgwzt2l5xZqbXC86RgAAABwMZR0wI0s2BOtQjv13FOMY8o7AAAAzkBJB9yEZVmcG93DHIhOV0o26wsAAADgfyjpgJvYF5Wmo/GZkpjq7kk+XxZsOgIAAABcCCUdcBOMonumBUExsiz+7AIAAIBTKOmAG8gtsGnR3hhJjKJ7mux8m5YciDMdAwAAAC6Ckg64geUH45SRW2g6BqrI16tYQA4AAACnUNIBN+CY6s5cd490ND5T8em5pmMAAADABVDSARcXmZytLaEnJUkcuuy5PlnKAnIAAACgpAMub15gFMehe4El+2NZQA4AAACUdMCV2e2W5u6OMh0D1SCv0O44rAEAAADei5IOuLBtYScVlZJjOgaqyaR1x0xHAAAAgGGUdMCFzflrFJ314rzD8ZPZijiZZToGAAAADKKkAy4qPbdAS/bHSuLc6N5k7JLDpiMAAADAIEo64KIW741VXqHddAxUs9XBCbLb+bMMAACAtzJa0seOHaurrrpKDRs2VIsWLTR8+HAdOXLkrNeZMWOGfHx8nD78/PyqKTFQfRznRjecA9WrwGbpx63HTccAAACAIUZL+vr16zVy5Eht27ZNK1euVEFBgQYPHqysrLMfk+nv76/Y2FjHR0RERDUlBqpHSHyGgiJTJTHV3RtN3RhmOgIAAAAMqWXyzpctW+b0+YwZM9SiRQvt3r1bN9xwQ6nX8/HxUatWrao6HmDMHE675tViUnN1ND5Dl7RsaDoKAAAAqplLHZOelpYmSWratOlZ98vMzFT79u3Vrl073XnnnTp48GCp++bl5Sk9Pd3pA3BlBTa7fg+kpHu7j/9kATkAAABv5DIl3W63a/To0erfv7+6d+9e6n6XXnqpfvjhBy1cuFAzZ86U3W5Xv379FBVVcqkZO3asGjVq5Pho165dVT0EoFKsO5KopMx80zFg2MbQJBUU2kzHAAAAQDXzsSzLJQ55ff7557V06VJt2rRJbdu2LfP1CgoKdNlll+mhhx7SBx98UOzyvLw85eXlOT5PT09Xu3btlJaWJn9//0rJDlSmZ37apRWH4uUjjkf3dq8NuUSjbuxsOgYAAADOU3p6uho1alSmHuoSI+mjRo3S4sWLtXbt2nIVdEmqXbu2evfurdDQ0BIv9/X1lb+/v9MH4KoSM/K0JjhBEgUd0o9bWBQTAADA2xgt6ZZladSoUZo/f77WrFmjjh07lvs2bDab9u/fr9atW1dBQqB6LdgTrULOkY2/JGbkKehEiukYAAAAqEZGS/rIkSM1c+ZMzZo1Sw0bNlRcXJzi4uKUk5Pj2OfRRx/VmDFjHJ+///77WrFihcLCwhQYGKhHHnlEEREReuqpp0w8BKDSWJbFudFRzCdLg01HAAAAQDUyegq2SZMmSZIGDhzotH369Ol6/PHHJUknTpxQjRr/+1tCSkqKnn76acXFxalJkybq06ePtmzZoq5du1ZXbKBK7I1KU0hCpiSmuuN/dhxPVk5+oerWMfrtGgAAANXEZRaOqy7lOWAfqE7/nr9fv2w/wYJxKOaFgZ30xi1dTMcAAABABbndwnGAt8stsGnR3hhJFHQU9/92nDAdAQAAANWEkg64gOUH45SRW2g6BlxUSnaBth5LMh0DAAAA1YCSDrgAx4JxrBiHUny27IjpCAAAAKgGlHTAsMjkbG0JPSlJ8q4VIlAeQZGpysgpMB0DAAAAVYySDhg2LzCK49BxTpakcSuPmo4BAACAKkZJBwyy2y3N3R1lOgbcxDzeKwAAAB6Pkg4YtC3spKJSckzHgJvIyCvUqkPxpmMAAACgClHSAYPm/DUyynpxKKsvVrKAHAAAgCejpAOGpOcWaMn+WEmcGx1ldyg2Qycz80zHAAAAQBWhpAOGLN4bq7xCu+kYcEOfLgs2HQEAAABVhJIOGOI4N7rhHHA/f+yNlcX5+gAAADwSJR0wICQ+Q0GRqZKY6o7yyymwadHeGNMxAAAAUAUo6YABcziVFs7Tt6tDTUcAAABAFaCkA9WswGbXvEBKOs5PaGKmYtM4fR8AAICnoaQD1WzdkUSdzMw3HQMeYOwSFpADAADwNJR0oJqxYBwqy7KDcSwgBwAA4GEo6UA1SszI09rgBEksGIfzl19o1//bccJ0DAAAAFQiSjpQjRbsiVahnXqOyjN5/THTEQAAAFCJKOlANbEsi6nuqHQnknMUnpRlOgYAAAAqCSUdqCZ7o9IUkpApianuqFwfLTlkOgIAAAAqCSUdqCZzGEVHFVkXnKhCm910DAAAAFQCSjpQDXILbFq0N0YSo+iofIV2S9M3h5uOAQAAgEpASQeqwfKDccrILTQdAx7sh83HTUcAAABAJaCkA9XAsWAcc91RRWLTcnU4Jt10DAAAAJwnSjpQxSKTs7Ul9KQkyWKuO6rQx0sPm44AAACA80RJB6rYvMAojkNHtdgSmqT8QpvpGAAAADgPlHSgCtntlubujjIdA17CZkkT1x0zHQMAAADngZIOVKFtYScVlZJjOga8yMxtEaYjAAAA4DxQ0oEqNOevUXTWi0N1ScrM1+6IZNMxAAAAUEGUdKCKpOcWaMn+WEmcGx3V65OlwaYjAAAAoIIo6UAV+WNvjPIK7aZjwAvtikhRTl6h6RgAAACoAEo6UEXm7GKqO8ywLOnL1UdNxwAAAEAFUNKBKhASn6GgyFRJTHWHGb/t5KwCAAAA7oiSDlSBOZx2DYal5RRoY0ii6RgAAAAoJ0o6UMkKbHbNo6TDBXy+/IjpCAAAACgnSjpQydYdSdTJrHzTMQDtj0pTWjbvRQAAAHdCSQcq2exdkZJYMA7mWZL+u4IF5AAAANwJJR2oRIkZeVobnCCJBePgGn7fEyXL4t0IAADgLijpQCVasCdahXYKEVxHVp5NKw7Gm44BAACAMqKkA5XEsiymusMlfbmKKe8AAADugpIOVJK9UWkKSciUxFR3uJbguAwlZuSajgEAAIAyoKQDlWQOo+hwYZ8sDTYdAQAAAGVASQcqQW6BTYv2xkhiFB2u6c/9sSwgBwAA4AYo6UAlWH4wThm5haZjAKXKLbBrfmC06RgAAAA4B0o6UAkcC8Yx1x0ubPzaUNMRAAAAcA6UdOA8RSZna3PoSUkSs4nhysKSshSdkmM6BgAAAM6Ckg6cp3mBUaYjAGX20ZJDpiMAAADgLCjpwHmw2y3N2UVJh/tYdShedjtTPgAAAFwVJR04D9vCTio6lenDcB/5Nkszt0eYjgEAAIBSUNKB8zCbc6PDDU3ZEGY6AgAAAEpBSQcqKD23QEsPxEni3OhwL1EpOQpNyDAdAwAAACWgpAMV9MfeGOUV2k3HACrk4yXBpiMAAACgBJR0oIKKFoxjqjvc0YajiSootJmOAQAAgDNQ0oEKCInPUFBkqiSmusM9FdotTdsUbjoGAAAAzkBJBypgzm5Ouwb3N33LcdMRAAAAcAZKOlBOBTa75lHS4QHi0/N0ICrNdAwAAACchpIOlNO6I4k6mZVvOgZQKT5eeth0BAAAAJyGkg6UE+dGhyfZFnZSeQUsIAcAAOAqKOlAOSRm5GltcIIkFoyDZ7Bb0oS1oaZjAAAA4C+UdKAcFuyJVqGdeg7PMnP7CdMRAAAA8BdKOlBGlmUx1R0eKTkrXzvCT5qOAQAAAFHSgTLbG5WmkIRMSUx1h+f5dNkR0xEAAAAgSjpQZoyiw5MFRqQoK6/QdAwAAACvR0kHyiAn36ZFQTGSGEWHZ7IkfbGS0XQAAADTKOlAGSw/GKdMRhnh4ebsijIdAQAAwOtR0oEymLP7r6nuzHWHB0vPLdTa4HjTMQAAALwaJR04h8jkbG0OPbXytcVcd3i4cSuPmo4AAADg1SjpwDnMC2QKMLzHgeh0pWTnm44BAADgtSjpwFnY7RbH6cLrfL4s2HQEAAAAr0VJB85iW9hJRafmmI4BVKsFQTGyOLYDAADACEo6cBacGx3eKDvfpiX7Y03HAAAA8EqUdKAU6bkFWnogThLnRof3+Xp1iOkIAAAAXomSDpTij70xyiu0m44BGHE0PlNxaRzqAQAAUN0o6UApihaMY6o7vNUnS1lADgAAoLpR0oEShMRnKCgyVRJT3eG9lh6IYwE5AACAakZJB0owZzenXQPyCu2OxRMBAABQPSjpwBkKbHbNo6QDkqRJ646ZjgAAAOBVKOnAGdYdSdTJrHzTMQCXcPxktiJOZpmOAQAA4DUo6cAZODc64GzsksOmIwAAAHgNSjpwmsSMPK0JTpDEgnFAkdXBCbLb+YoAAACoDpR04DQL9kTLRhkBnBTYLP249bjpGAAAAF6Bkg78xbIsproDpZi6Mcx0BAAAAK9ASQf+sjcqTSEJmZKY6g6cKSY1V0fiMkzHAAAA8HiUdOAvjKIDZ/cxC8gBAABUOUo6ICkn36ZFQTGSGEUHSrMpNEn5hTbTMQAAADwaJR2QtPxgnDLzCk3HAFyazW5pCsemAwAAVClKOiBpzu6/proz1x04qx83R5iOAAAA4NEo6fB6kcnZ2hx6UpJkMdcdOKvEzDwFnUgxHQMAAMBjUdLh9eYFRpmOALiVT5YGm44AAADgsSjp8Gp2u6U5uyjpQHnsOJ6snHzWcAAAAKgKlHR4tW1hJxWdmmM6BuBW7Jb07ZpQ0zEAAAA8EiUdXo1zowMVM2vHCdMRAAAAPJLRkj527FhdddVVatiwoVq0aKHhw4fryJEj57zenDlz1KVLF/n5+alHjx5asmRJNaSFp0nPLdDSA3GSODc6UF6p2QXaeizJdAwAAACPY7Skr1+/XiNHjtS2bdu0cuVKFRQUaPDgwcrKyir1Olu2bNFDDz2kJ598Unv27NHw4cM1fPhwHThwoBqTwxP8sTdGeYV20zEAt/XpsnP/URUAAADl42NZrnPSqcTERLVo0ULr16/XDTfcUOI+DzzwgLKysrR48WLHtmuvvVa9evXS5MmTz3kf6enpatSokdLS0uTv719p2eF+hk/YrKDIVPmIkXSgInwk7X3nZvnXrWM6CgAAgEsrTw91qWPS09LSJElNmzYtdZ+tW7dq0KBBTtuGDBmirVu3Vmk2eJaj8RkKikyVREEHKsqS9MWKENMxAAAAPIrLlHS73a7Ro0erf//+6t69e6n7xcXFqWXLlk7bWrZsqbi4uBL3z8vLU3p6utMHMOevBeMAnJ95gZzCEAAAoDK5TEkfOXKkDhw4oF9//bVSb3fs2LFq1KiR46Ndu3aVevtwPwU2u34PjDYdA/AIGXmFWnUo3nQMAAAAj+ESJX3UqFFavHix1q5dq7Zt255131atWik+3vkXwvj4eLVq1arE/ceMGaO0tDTHR2QkI6jebm1wgk5m5ZuOAXiML1aygBwAAEBlMVrSLcvSqFGjNH/+fK1Zs0YdO3Y853X69u2r1atXO21buXKl+vbtW+L+vr6+8vf3d/qAd5uz+9T0XM6NDlSOQ7EZOpmZZzoGAACARzBa0keOHKmZM2dq1qxZatiwoeLi4hQXF6ecnBzHPo8++qjGjBnj+Pyll17SsmXLNG7cOAUHB+vdd9/Vrl27NGrUKBMPAW4mMSNPaw4nSGLBOKAyfbos2HQEAAAAj2C0pE+aNElpaWkaOHCgWrdu7fj47bffHPucOHFCsbGxjs/79eunWbNmacqUKerZs6fmzp2rBQsWnHWxOaDIgj3RsrnOWQcBj/HH3li50Bk9AQAA3JZLnSe9OnCedO9lWZYGf7lBIQmZnBsdqAJfPdBLw3u3MR0DAADA5bjtedKBqrQ3Kk0hCZmSKOhAVfh2DedMBwAAOF+UdHiN2X+dG50F44CqcSwxS7GpOefeEQAAAKWipMMr5OTbtCgoRhKj6EBV+njJYdMRAAAA3BolHV5h+cE4ZeYVmo4BeLzlh+Jlt/OnMAAAgIqipMMrzNn911R35roDVSq/0K5fd54wHQMAAMBtUdLh8SKTs7U59KQkybvOZQCYMXn9MdMRAAAA3BYlHR5vXmCU6QiAVzmRnKPwpCzTMQAAANwSJR0ezW63NGcXJR2obh8tOWQ6AgAAgFuipMOjbQ07qWhOCQVUu3XBiSq02U3HAAAAcDuUdHi0OZwbHTCi0G5p+uZw0zEAAADcDiUdHistp0BLD8RJ4tzogAnTKOkAAADlRkmHx1q8L0Z5hUy3BUyJS8vT4Zh00zEAAADcCiUdHmv2XwvGMdUdMOejJYdNRwAAAHArlHR4pKPxGdobmSqJqe6ASVuOJSm/0GY6BgAAgNugpMMjFS0YB8AsuyVNXHfMdAwAAAC3QUmHxymw2fV7YLTpGAD+MnNbhOkIAAAAboOSDo+zNjhBJ7PyTccA8JekzHztjkg2HQMAAMAtUNLhcebsZsE4wNV8sjTYdAQAAAC3QEmHR0nMyNOawwmSWDAOcCW7IlKUm88CcgAAAOdCSYdHWbAnWjaLeg64GsuSftgSbjoGAACAy6Okw2NYlqXZf63qzlR3wPXM++tQFAAAAJSOkg6PsTcqTSEJmZKY6g64orDELOUWMOUdAADgbCjp8Bi//HWaJ0bRAddkidOxAQAAnAslHR4h4mSW49zojKIDrqvokBQAAACUjJIOj/DtmlAWjAPcQEhCpvKZ8g4AAFAqSjrcXnhSln4PZEEqwB1YljRrJ6PpAAAApaGkw+19uzpEdgbRAbfx284TpiMAAAC4LEo63FpoQqYWBEWbjgGgHI7EZajQZjcdAwAAwCVR0uHWvmEUHXA7dosF5AAAAEpDSYfbConP0B97Y0zHAFABs3Yw5R0AAKAklHS4ra9Wh3C6NcBNHYpJl40p7wAAAMVQ0uGWguPS9ee+WNMxAFSQ3ZJ+38N6EgAAAGeipMMtfb0qxHQEAOdp5vYI0xEAAABcDiUdbudgTJqWHogzHQPAeToQnS67nSnvAAAAp6Okw+0wig54Bpvd0h8ctgIAAOCEkg63sj8qTSsOxZuOAaCS/LSVKe8AAACno6TDrXy16qjpCAAq0d7IVFkW52kAAAAoQkmH29gbmarVwQmmYwCoRIV2S8tYYwIAAMCBkg638eVfo+g+hnMAqFzTtxw3HQEAAMBlUNLhFnZHpGjdkURJEhNjAc+y50QKU94BAAD+QkmHW/iKUXTAYxXYLK0+zIKQAAAAEiUdbmDn8WRtDEmSxCg64KmmbT5uOgIAAIBLoKTD5X25klF0wNPtjkgxHQEAAMAlUNLh0raFndSWYyclMYoOeLL8Qrs2/LXuBAAAgDejpMOlMYoOeI+pm8JMRwAAADCOkg6XteVYkraHJ0tiFB3wBjv/+noHAADwZpR0uCTLshhFB7xMbqFdW44lmY4BAABgFCUdLmlTaJJ2Hj+1kBSj6ID3mLqBKe8AAMC7UdLhchhFB7zXtjCmvAMAAO9GSYfLWX80UYEnUiUxig54m5wCm3Yf53RsAADAe1HS4VIYRQcweX2o6QgAAADGUNLhUtYeSdDeqDRJjKID3mrLsZOmIwAAABhDSYfLsCxLXzCKDni9rHyb9kYx5R0AAHgnSjpcxspD8ToQnS6JUXTA201exyrvAADAO1HS4RLsdktfrgqRxCg6AGljCOdLBwAA3omSDpew4lCcDscyig7glMy8Qh2OSTMdAwAAoNpR0mGc3W7pK0bRAZxh4vpjpiMAAABUO0o6jFt6IE7BcRmSGEUH8D/rjySajgAAAFDtKOkwyma39NWqv1Z0ZxgdwGnScwsVEp9hOgYAAEC1oqTDqD/3xyokIVOSZDGMDuAME9cx5R0AAHgXSjqMYRQdwLmsDU4wHQEAAKBaUdJhzKK90QpLzJLEKDqAkqXmFCg8Kct0DAAAgGpDSYcRhTa7vlkdKolRdABnN3FtqOkIAAAA1YaSDiMWBMU4RscYRQdwNquZ8g4AALwIJR3VrsBm1zer/zovOqPoAM4hOStfkclMeQcAAN6Bko5qNz8wWieSsyUxig6gbFjlHQAAeAtKOqpVfqFd36xhFB1A+aw8FG86AgAAQLWgpKNazQuMUlRKjiRG0QGUXVJmvmJTc0zHAAAAqHKUdFSbvEKbvmUUHUAFTVrPlHcAAOD5KOmoNrN3RSkmNVcSo+gAym/ZgTjTEQAAAKocJR3VIrfA5jjXMYPoACoiISNPiel5pmMAAABUKUo6qsVvOyMVm/bXKLrhLADc12SmvAMAAA9HSUeVyy2waQKj6AAqwZIDsaYjAAAAVClKOqrcrO0nlJBxaooqo+gAzkdsWq5OZjLlHQAAeC5KOqpUTr5NE9cxig6g8kzdEGY6AgAAQJWhpKNKzdwWoaTMfEmMogOoHH/sY8o7AADwXJR0VJns/ELHIk+MogOoLNGpOUrLLjAdAwAAoEpQ0lFlftoaoZNZjKIDqHxTNzHlHQAAeCZKOqpEZl6hvmMUHUAVWRQUbToCAABAlaCko0r8uOW4Uv6ajsooOoDKdiI5R5m5THkHAACeh5KOSpeRW6Apf62+zCg6gKoybXO46QgAAACVrkIlPScnR9nZ2Y7PIyIi9NVXX2nFihWVFgzua8bm40rLYRQdQNWaHxhjOgIAAEClq1BJv/POO/XTTz9JklJTU3XNNddo3LhxuvPOOzVp0qRKDQj3kpZToKkbGUUHUPWOn8xSdl6h6RgAAACVqkIlPTAwUNdff70kae7cuWrZsqUiIiL0008/6ZtvvqnUgHAvP2wKV3ruqV+aGUUHUNVmbD1uOgIAAEClqlBJz87OVsOGDSVJK1as0N13360aNWro2muvVURERKUGhPtIyy7QtE0cIwqg+szbHWU6AgAAQKWqUEm/+OKLtWDBAkVGRmr58uUaPHiwJCkhIUH+/v6VGhDu4/tNYcpk6imAahSWmKXcApvpGAAAAJWmQiX97bff1muvvaYOHTro6quvVt++fSWdGlXv3bt3pQaEe0jJytcPrLQMoJpZkmZuYwYXAADwHBUq6ffee69OnDihXbt2afny5Y7tN910k7788stKCwf3MXVjmLLyGM0CUP1m74o0HQEAAKDS1KroFVu1aqVWrVopKurU8YBt27bV1VdfXWnB4D5OZuZpxpbjpmMA8FIhCZnKL7CpTu2apqMAAACctwqNpNvtdr3//vtq1KiR2rdvr/bt26tx48b64IMPZLfbKzsjXNyUjWHKzmcUHYAZliXN2sloOgAA8AwVGkn/97//rWnTpumTTz5R//79JUmbNm3Su+++q9zcXH300UeVGhKuKzEjTz9t4XhQAGb9tvOEHu/XwXQMAACA81ahkv7jjz/q+++/17BhwxzbLr/8crVp00YvvPACJd2LfLf+mHJYWRmAYUfiMlRos6tWzQpNEAMAAHAZFfptJjk5WV26dCm2vUuXLkpOTj7vUHAPCem5+plVlQG4ALvFAnIAAMAzVKik9+zZU+PHjy+2ffz48erZs2eZb2fDhg264447FBAQIB8fHy1YsOCs+69bt04+Pj7FPuLi4sr7EFAJJq0/prxC1iAA4Bpm7ThhOgIAAMB5q9B0988++0xDhw7VqlWrHOdI37p1qyIjI7VkyZIy305WVpZ69uypJ554QnfffXeZr3fkyBH5+/s7Pm/RokXZw6NSxKXl6pft/EIMwHUcikmXzWZXTaa8AwAAN1ahkj5gwAAdPXpUEyZMUHBwsCTp7rvv1gsvvKCAgIAy386tt96qW2+9tdz336JFCzVu3Ljc10PlmbQuVPmMogNwIXZL+n1PtO67sp3pKAAAABVW4fOkBwQEGFsgrlevXsrLy1P37t317rvvOlaYL0leXp7y8vIcn6enp1dHRI8Wk5rDtFIALmnm9ghKOgAAcGsVmhO4bNkybdq0yfH5hAkT1KtXL/39739XSkpKpYU7U+vWrTV58mTNmzdP8+bNU7t27TRw4EAFBgaWep2xY8eqUaNGjo927fjl7XxNXBeqAptlOgYAFHMgOl12O7N8AACA+6pQSX/99dcdI9L79+/XK6+8ottuu03h4eF65ZVXKjXg6S699FI9++yz6tOnj/r166cffvhB/fr105dfflnqdcaMGaO0tDTHR2Qkq/+ej6iUbP26k+cQgGuy2S39sS/WdAwAAIAKq9B09/DwcHXt2lWSNG/ePN1xxx36+OOPFRgYqNtuu61SA57L1Vdf7TSqfyZfX1/5+vpWYyLPNmFtqAoZRQfgwn7aGqE7e7UxHQMAAKBCKjSSXqdOHWVnZ0uSVq1apcGDB0uSmjZtWu3HfAcFBal169bVep/eKjI5W3N2RZmOAQBntTcyVZbFHxMBAIB7qtBI+nXXXadXXnlF/fv3144dO/Tbb79Jko4ePaq2bduW+XYyMzMVGhrq+Dw8PFxBQUFq2rSpLrzwQo0ZM0bR0dH66aefJElfffWVOnbsqG7duik3N1fff/+91qxZoxUrVlTkYaCcvl0TokI7v/gCcG2FdkvLDsTp1h78ARcAALifCo2kjx8/XrVq1dLcuXM1adIktWlzalrh0qVLdcstt5T5dnbt2qXevXurd+/ekqRXXnlFvXv31ttvvy1Jio2N1YkT/1tFPD8/X6+++qp69OihAQMGaO/evVq1apVuuummijwMlMPxpCzN2x1tOgYAlMn0LcdNRwAAAKgQH8vL5gSmp6erUaNGSktLk7+/v+k4buPV2Xs1L5Cp7gDcQ+2aPjr64a3y8fExHQUAAKBcPbRCI+mny83NVXp6utMHPEtYYqbm76GgA3AfBTZLqw/Hm44BAABQbhUq6VlZWRo1apRatGih+vXrq0mTJk4f8CzfrA4Rh6IDcDfTNh83HQEAAKDcKlTS33jjDa1Zs0aTJk2Sr6+vvv/+e7333nsKCAhwLPIGzxCakKFFe2NMxwCActsdkWI6AgAAQLlVqKT/8ccfmjhxou655x7VqlVL119/vf7zn//o448/1i+//FLZGWHQ16tDGUUH4JbyC+3acCTRdAwAAIByqVBJT05O1kUXXSRJ8vf3V3JysqRTp2bbsGFD5aWDUUfjM7SYUXQAbmzqpjDTEQAAAMqlQiX9oosuUnh4uCSpS5cumj17tqRTI+yNGzeutHAw6+tVIWIQHYA72xmebDoCAABAuVSopI8YMUJ79+6VJL355puaMGGC/Pz8NHr0aL3++uuVGhBmHI5N15/7Y03HAIDzklto15ZjSaZjAAAAlFmtilzp5Zdfdvx/0KBBCg4O1u7du9W5c2f16NGj0sLBnK9XhZiOAACVYuqGMPXr1Mx0DAAAgDIp10j6mjVr1LVr12LnQm/fvr1uuukmPfjgg9q4cWOlBkT1OxCdpmUH40zHAIBKsS2MKe8AAMB9lKukf/XVV3r66afl7+9f7LJGjRrp2Wef1RdffFFp4WDGV4yiA/AgOQU2BXI6NgAA4CbKVdL37t2rW265pdTLBw8erN27d593KJizPypNqw7Hm44BAJVq0vpQ0xEAAADKpFwlPT4+XrVr1y718lq1aikxkXPSurMvVx2VJPkYzgEAlWlL6EnTEQAAAMqkXCW9TZs2OnDgQKmX79u3T61btz7vUDBjz4kUrQlOkCROvQbAo2Tl27QvKtV0DAAAgHMqV0m/7bbb9NZbbyk3N7fYZTk5OXrnnXd0++23V1o4VK+iY9EZRQfgiSatO2Y6AgAAwDn5WJZV5kHT+Ph4XXHFFapZs6ZGjRqlSy+9VJIUHBysCRMmyGazKTAwUC1btqyywOcrPT1djRo1UlpaWokL4Hmr3REpumfSFtMxAKDKNPCtpQPvDTEdAwAAeKHy9NBynSe9ZcuW2rJli55//nmNGTNGRf3ex8dHQ4YM0YQJE1y6oKN0X512LDpT3QF4osy8Qh2OSdNlAY1MRwEAAChVuUq6dOqc6EuWLFFKSopCQ0NlWZY6d+6sJk2aVEU+VIMd4cnaGJIkiYIOwLNNXH9M3z50hekYAAAApSp3SS/SpEkTXXXVVZWZBYZ8uZJRdADeYf0RzkACAABcW7kWjoPn2XrspLaGnTo1EQUdgKdLzy1UaHyG6RgAAACloqR7McuyOC86AK8zgVXeAQCAC6Oke7Etx05qR3iyJEbRAXiPtUcSTEcAAAAoFSXdS1mW5XQsOgB4i9TsAoUnZZmOAQAAUCJKupfaGJKkXREpkhhFB+B9Jq0LNR0BAACgRJR0L8Sx6AC83arDTHkHAACuiZLuhdYdTdSeE6mSGEUH4J2Ss/IVlZxtOgYAAEAxlHQvw7HoAHDKRKa8AwAAF0RJ9zJrghO0LypNEqPoALzbykPxpiMAAAAUQ0n3IpZl6QtG0QFAkpSYma+4tBzTMQAAAJxQ0r3IikPxOhiTLolRdACQpEnrjpmOAAAA4ISS7iXsdktfrQqRxCg6ABRZdjDOdAQAAAAnlHQvsfxgnA7HMooOAKeLT89TUkae6RgAAAAOlHQvwCg6AJRu0nqmvAMAANdBSfcCSw7E6kh8hiRG0QHgTEv2x5qOAAAA4EBJ93C200fRGUYHgGJi03KVnMWUdwAA4Boo6R5u8b4YhSZkSpIshtEBoERTNoSZjgAAACCJku7RCm12fc0oOgCc0+K9THkHAACugZLuwRbtjVFYUpYkRtEB4GyiUnOUnlNgOgYAAAAl3VMV2uz6ZjWj6ABQVlM3MuUdAACYR0n3UPP3ROv4yWxJjKIDQFksDIoxHQEAAICS7okKbHZ9s4ZRdAAojxPJ2crMY8o7AAAwi5LugX4PjFJkco4kRtEBoDx+2BRuOgIAAPBylHQPk19o1zerQyVJDKIDQPnM38OUdwAAYBYl3cPM2R2p6NS/RtENZwEAdxOelKXsvELTMQAAgBejpHuQvEKbJqxhFB0AzsePW4+bjgAAALwYJd2DzN4ZqZi0XEmMogNARc3bHW06AgAA8GKUdA+RW2DThLXHJDGKDgDn41hipnILbKZjAAAAL0VJ9xC/7jihuHRG0QHgfFmSZm6LMB0DAAB4KUq6B8gtsGnCOkbRAaCyzN4VaToCAADwUpR0D/DL9hNKzMiTxCg6AFSGkIRMFRTaTccAAABeiJLu5rLzCzVxHSu6A0Blsixp1o4TpmMAAAAvREl3czO3RehkZr4kRtEBoDL9tpOSDgAAqh8l3Y1l5RXqu/VhkhhFB4DKFhyXIZuNKe8AAKB6UdLd2E9bI3Qyi1F0AKgKdkuavSvKdAwAAOBlKOluKjOvUN+tZ0V3AKhKv+zgVGwAAKB6UdLd1I9bjis1p0ASo+gAUFUOxaQz5R0AAFQrSrobSs8t0JQNHIsOAFXNbknzg6JNxwAAAF6Eku6GZmw+rjRG0QGgWszcxpR3AABQfSjpbiYtp0BTNzKKDgDVZX90uux2prwDAIDqQUl3M9M2hSsjt1ASo+gAUB1sdkuL98eajgEAALwEJd2NpGbn64dN4aZjAIDX+XELU94BAED1oKS7ke83hiszr9B0DADwOnsjU2VZzF8CAABVj5LuJpKz8jV9M6PoAGBCod3SsgNxpmMAAAAvQEl3E1M3hikr32Y6BgB4rRlbjpuOAAAAvAAl3Q0kZebpR345BACjAk+kMOUdAABUOUq6G5iyIUzZjKIDgFEFNktrghNMxwAAAB6Oku7iEjPy9NPW46ZjAAB06jSYAAAAVYmS7uImrz+m3AK76RgAAEm7IlJMRwAAAB6Oku7CEtJzNXMb5+YFAFeRX2jXhqOJpmMAAAAPRkl3YRPXHVNeIaPoAOBKvt8YZjoCAADwYJR0FxWXlqtZO06YjgEAOMOO8GTTEQAAgAejpLuoietClc8oOgC4nNxCu7YeSzIdAwAAeChKuou6q3cbtWjoKx/TQQAAxUzZwJR3AABQNSjpLqr3hU3Ut9MF8qGlA4DL2RbGlHcAAFA1KOkAAJRTToFNgZyODQAAVAFKOgAAFTBpfajpCAAAwANR0gEAqIAtoSdNRwAAAB6Ikg4AQAVk5du0LyrVdAwAAOBhKOkAAFTQpHXHTEcAAAAehpIOAEAFbQzhfOkAAKByUdIBAKigzLxCHY5JMx0DAAB4EEo6AADnYeJ6prwDAIDKQ0kHAOA8rD+SaDoCAADwIJR0AADOQ3puoULjM0zHAAAAHoKSDgDAeZrAKu8AAKCSUNIBADhPa48kmI4AAAA8BCUdAIDzlJpdoPCkLNMxAACAB6CkAwBQCSatCzUdAQAAeABKOgAAlWDVYaa8AwCA80dJBwCgEiRn5SsqOdt0DAAA4OYo6QAAVJKJTHkHAADniZIOAEAlWXko3nQEAADg5ijpAABUksTMfMWl5ZiOAQAA3JjRkr5hwwbdcccdCggIkI+PjxYsWHDO66xbt05XXHGFfH19dfHFF2vGjBlVnhMAgLKatO6Y6QgAAMCNGS3pWVlZ6tmzpyZMmFCm/cPDwzV06FDdeOONCgoK0ujRo/XUU09p+fLlVZwUAICyWXYwznQEAADgxmqZvPNbb71Vt956a5n3nzx5sjp27Khx48ZJki677DJt2rRJX375pYYMGVJVMQEAKLP49DwlZeSpWUNf01EAAIAbcqtj0rdu3apBgwY5bRsyZIi2bt1qKBEAAMVNWs+UdwAAUDFuVdLj4uLUsmVLp20tW7ZUenq6cnJKXqgnLy9P6enpTh8AAFSlJftjTUcAAABuyq1KekWMHTtWjRo1cny0a9fOdCQAgIeLTctVclae6RgAAMANuVVJb9WqleLjnc9BGx8fL39/f9WtW7fE64wZM0ZpaWmOj8jIyOqICgDwclM2hJmOAAAA3JBblfS+fftq9erVTttWrlypvn37lnodX19f+fv7O30AAFDVFu9lyjsAACg/oyU9MzNTQUFBCgoKknTqFGtBQUE6ceKEpFOj4I8++qhj/+eee05hYWF64403FBwcrIkTJ2r27Nl6+eWXTcQHAKBUUak5Ss8pMB0DAAC4GaMlfdeuXerdu7d69+4tSXrllVfUu3dvvf3225Kk2NhYR2GXpI4dO+rPP//UypUr1bNnT40bN07ff/89p18DALikqRuZ8g4AAMrHx7Isy3SI6pSenq5GjRopLS3N5ae+v/TrHv2xN0Z2r3qFAMBzXNi0nja8caPpGAAAwLDy9FC3OiYdAAB3ciI5W5l5THkHAABlR0kHAKAK/bAp3HQEAADgRijpAABUofl7YkxHAAAAboSSDgBAFQpPylJ2XqHpGAAAwE1Q0gEAqGI/bj1uOgIAAHATlHQAAKrYvN3RpiMAAAA3QUkHAKCKHUvMVG6BzXQMAADgBijpAABUMUvSzG0RpmMAAAA3QEkHAKAazN4VaToCAABwA5R0AACqQUhCpgoK7aZjAAAAF0dJBwCgGliWNGvHCdMxAACAi6OkAwBQTX7bSUkHAABnR0kHAKCaBMdlyGZjyjsAACgdJR0AgGpit6TZu6JMxwAAAC6Mkg4AQDX6ZQenYgMAAKWjpAMAUI0OxaQz5R0AAJSKkg4AQDWyW9L8oGjTMQAAgIuipAMAUM1mbmPKOwAAKBklHQCAarY/Ol12O1PeAQBAcZR0AACqmc1uafH+WNMxAACAC6KkAwBgwI9bmPIOAACKo6QDAGDA3shUWZZlOgYAAHAxlHQAAAwotFtadiDOdAwAAOBiKOkAABgyY8tx0xEAAICLoaQDAGBI4IkUprwDAAAnlHQAAAwpsFlaE5xgOgYAAHAhlHQAAAyatincdAQAAOBCKOkAABi0KyLFdAQAAOBCKOkAABiUX2jXhqOJpmMAAAAXQUkHAMCw7zeGmY4AAABcBCUdAADDdoQnm44AAABcBCUdAADDcgvt2nosyXQMAADgAijpAAC4gCkbmPIOAAAo6QAAuIRtYUx5BwAAlHQAAFxCToFNgZyODQAAr0dJBwDARUxaH2o6AgAAMIySDgCAi9gSetJ0BAAAYBglHQAAF5GVb9O+qFTTMQAAgEGUdAAAXMikdcdMRwAAAAZR0gEAcCEbQzhfOgAA3oySDgCAC8nMK9ThmDTTMQAAgCGUdAAAXMzE9Ux5BwDAW1HSAQBwMeuPJJqOAAAADKGkAwDgYtJzCxUan2E6BgAAMICSDgCAC5rAKu8AAHglSjoAAC5o1eF4FdrspmMAAIBqRkkHAMAFZeQW6vHpO2WzW6ajAACAakRJBwDARW0KTdIzP++SnaIOAIDXoKQDAODCVh9O0D/+3x5ZFkUdAABvQEkHAMDF/bk/Vq/N2UtRBwDAC1DSAQBwA/MCo/WfBQdMxwAAAFWMkg4AgJv4ZfsJfbD4kOkYAACgClHSAQBwI9M2heu/y4+YjgEAAKoIJR0AADczfm2oJqwJMR0DAABUAUo6AABu6PMVR/X9xjDTMQAAQCWjpAMA4KY+/POwftkWYToGAACoRJR0AADc2L8XHNDc3ZGmYwAAgEpCSQcAwM29NmefFu+LMR0DAABUAko6AAAe4B+z9mjlwTjTMQAAwHmipAMA4AEsSc/O3K0NRxNMRwEAAOeBkg4AgIewW9KI6bu0Peyk6SgAAKCCKOkAAHgQm2Xp4e+3a09EiukoAACgAijpAAB4mEK7pfunbNWB6DTTUQAAQDlR0gEA8EAFNkv3TNqiI7HppqMAAIByoKQDAOCh8grtGj5xi8ISM01HAQAAZURJBwDAg+UU2HTH+E2KTM4yHQUAAJQBJR0AAA+XlWfT0G82KTYtx3QUAABwDpR0AAC8QHpuoW77eqMSMnJNRwEAAGdBSQcAwEukZBdo6NeblJyVbzoKAAAoBSUdAAAvkpiZp9u+2ai07ALTUQAAQAko6QAAeJm4tFzd/u1GZeRS1AEAcDWUdAAAvFBkSo7uHL9Z2fmFpqMAAIDTUNIBAPBSYUlZumvCFuUW2ExHAQAAf6GkAwDgxY7EZ+jeyVuUV0hRBwDAFVDSAQDwcgei0/XQlG0qsNlNRwEAwOtR0gEAgAJPpOr/pm1XIUUdAACjKOkAAECStC0sWU/+uEt2u2U6CgAAXouSDgAAHNYfTdTzvwTKsijqAACYQEkHAABOlh+M0+jfgijqAAAYQEkHAADFLAyK0Zvz9lPUAQCoZpR0AABQot92RerdRQdNxwAAwKtQ0gEAQKl+3BqhsUsPm44BAIDXoKQDAICz+m59mL5aedR0DAAAvAIlHQAAnNNXq0P03fpjpmMAAODxKOkAAKBMxi4N1o9bjpuOAQCAR6OkAwCAMntn0UH9uvOE6RgAAHgsSjoAACiXN+ft14KgaNMxAADwSJR0AABQbi//GqSlB2JNxwAAwONQ0gEAQLlZkl74JVBrguNNRwEAwKNQ0gEAQIVYlvTUj7u0OTTJdBQAADwGJR0AAFSY3ZIe/WGHdoSfNB0FAACPQEkHAADnxWa39Pep27U3MtV0FAAA3B4lHQAAnLdCu6X7Jm/V4Zh001EAAHBrLlHSJ0yYoA4dOsjPz0/XXHONduzYUeq+M2bMkI+Pj9OHn59fNaYFAAAlybfZddfEzQpNyDAdBQAAt2W8pP/222965ZVX9M477ygwMFA9e/bUkCFDlJCQUOp1/P39FRsb6/iIiIioxsQAAKA0uYV2DRu/WceTMk1HAQDALRkv6V988YWefvppjRgxQl27dtXkyZNVr149/fDDD6Vex8fHR61atXJ8tGzZshoTAwCAs8nOt+n2bzcrKiXbdBQAANyO0ZKen5+v3bt3a9CgQY5tNWrU0KBBg7R169ZSr5eZman27durXbt2uvPOO3Xw4MFS983Ly1N6errTBwAAqFqZeYUa+s0mxafnmo4CAIBbMVrSk5KSZLPZio2Et2zZUnFxcSVe59JLL9UPP/yghQsXaubMmbLb7erXr5+ioqJK3H/s2LFq1KiR46Ndu3aV/jgAAEBxaTkFuu3rjUrKzDMdBQAAt2F8unt59e3bV48++qh69eqlAQMG6Pfff1fz5s313Xfflbj/mDFjlJaW5viIjIys5sQAAHivk1n5uu3rjUrJyjcdBQAAt2C0pDdr1kw1a9ZUfHy80/b4+Hi1atWqTLdRu3Zt9e7dW6GhoSVe7uvrK39/f6cPAABQfRIy8nT7t5uUllNgOgoAAC7PaEmvU6eO+vTpo9WrVzu22e12rV69Wn379i3TbdhsNu3fv1+tW7euqpgAAOA8Rafm6M7xm5SZV2g6CgAALs34dPdXXnlFU6dO1Y8//qjDhw/r+eefV1ZWlkaMGCFJevTRRzVmzBjH/u+//75WrFihsLAwBQYG6pFHHlFERISeeuopUw8BAACUwfGT2Ro+YbNy8m2mowAA4LJqmQ7wwAMPKDExUW+//bbi4uLUq1cvLVu2zLGY3IkTJ1Sjxv/+lpCSkqKnn35acXFxatKkifr06aMtW7aoa9euph4CAAAoo9CETN09abPmv9BffrVrmo4DAIDL8bEsyzIdojqlp6erUaNGSktLc/nj01/6dY/+2Bsju1e9QgAAb9CzXSPNebaf6tQyPqkPAIAqV54eyk9GAABQ7fZGpumR77ep0GY3HQUAAJdCSQcAAEbsOJ6ix6fvlI0pYwAAOFDSAQCAMZtCk/TMz7tkp6gDACCJkg4AAAxbfThBo/5foLxsmRwAAEpESQcAAMYt2R+n1+bspagDALweJR0AALiEeYHR+s+CA6ZjAABgFCUdAAC4jF+2n9CHiw+ZjgEAgDGUdAAA4FK+3xSu/y4/YjoGAABGUNIBAIDLGb82VBPWhJiOAQBAtaOkAwAAl/T5iqP6fmOY6RgAAFQrSjoAAHBZH/55WL9sizAdAwDggoLj0vXpsmA9P3O36SiVqpbpAAAAAGfz7wUH5Fu7hu7t0850FACAYVEp2Vq0N0aLgmIUHJfh2L4/OlU92jQ2F6wSUdIBAIDLe23OPvnWqqk7egaYjgIAqGbJWfn6c1+MFgbFaFdESon75BXYqzlV1aGkAwAAt/Di/9sjv9o1dHPXVqajAACqWFZeoVYeitfCoGhtDElSod066/6+tWpWU7KqR0kHAABuwZL07M+7NWPEVbrhkham4wAAKll+oV0bQxK1MChGKw/FK6fA5nS5j079LPB0lHQAAOA27JY0Yvou/fL0Nbr2ogtMxwEAnCe73dKuiBQtCIrWkn2xSs0pcLr89GLuDQVdoqQDAAA3Y7MsPfL9ds15tq96t29iOg4AoJwsy9Lh2Awt3ButP4JiFJOW63S5Nxbz01HSAQCA2ym0W7p/ylbNf6G/urdpZDoOAKAMIpNPrcy+YE+0QhIynS7z9mJ+Oko6AABwSwU2S/dM2qJFI/vr0tb+puMAAEqQlJmnP/fFamFQtAJPpJa6n7cX89NR0gEAgNvKK7Rr+MQt+vPF63RR8wam4wAAJGXmFWrFwTgtDIrRppAk2SwqeHlQ0gEAgFvLKbDpjm83ae7zfXVZa6a+A4AJ+YV2rT+aqIVB0Vp1OF65Z5y33FtWZq8MlHQAAOD2svJtuvXrTbq0VUPd3buNhl7eWm2b1DMdCwA8mt1uaXt4shbtjdaS/XFKO3Nldh+paBCdgl52lHQAAOAxjsRlaOzSYI1dGqwebRrp7ivaaGiP1mrh72c6GgB4BMuydDAmXYv2xmhRUIzi0s+yMjvNvEIo6QAAwCPtj07T/ug0vf/HIV3ZoYnu6t1Wt3ZvpSb165iOBgBuJ+JklhYFxWhBULSOJWY5XcbK7JWLkg4AADyaJWnn8RTtPJ6i/yzYr/4XN9PwXm10c7eW8verbToeALishIzcv1Zmj1FQZGqp+1HMKxclHQAAeA27JW0MSdLGkCTVmuejGy9toTt7B+hvXVqoXh1+LQKAjNwCLT8Yr4VB0docmiQ7Dbza8dMIAAB4pUK7pZWH47XycLzq1Kqhmy9rqTt7BWjApc3lW6um6XgAUG3yCm1aG5yoRXujtfpwgvIKWZndJEo6AADwevmFdv25P1Z/7o9VvTo1dWv3VhrWq436dbpAtWvWMB0PACqdzW5pe9hJLQyK0ZIDscrILXS6nJXZzaGkAwAAnCY736Z5gdGaFxithn61dMflARrWK0BXdWiqmjV8TMcDgAqzLEsHotO1MChaf+yLUXx6ntPlrMzuGijpAAAApcjILdSsHSc0a8cJNalXW8N7tdEdvQLUu11j+fhQ2AG4h/CkLC0MitaioBiFJbEyu6ujpAMAAJRBSnaBpm85rulbjqulv6/u6t1Gd/QMUNfW/hR2AC4nIT1Xf+yL1aKgaO2NSit1P4q566GkAwAAlFN8ep4mrw/T5PVhatekru6+oq3u6NlaF7doaDoaAC+WnlugZQfitDAoWluPnWRldjdFSQcAADgPkSk5+np1iL5eHaKLWzTQ3Ve00R2XB6hd03qmowHwArkFNq0NTtDCoBitOZKgfFZmd3uUdAAAgEoSmpCpz5Yd0WfLjqhbgL/u6t1Gt18eoFaN/ExHA+BBbHZLW4+d1MKgaC09EKfMPFZm9ySUdAAAgCpwMCZdB2PS9dGfh9X7wsa664q2uq17K13QwNd0NABuyLIs7YtK08KgGP2xL0aJGazM7qko6QAAAFXIkhR4IlWBJ1L1zsIDuvaiCzS8dxsN6dZKjerWNh0PgIs7lpiphUExWhQUreMns50uY2V2z0RJBwAAqCZ2S9py7KS2HDupMb/v1w2XNNPwXm006LKWqu/Lr2UATolLy9XifTFaGBSj/dHOK7NTzD0fPw0AAAAMsNktrQ1O1NrgRNWu6aObLmup4b0CNPDSFvKrXdN0PADVyG63dDQhQ9uOndTyg/HaFnay1AJOMfd8lHQAAADDCmyWlh2I07IDcfKrXUO3dGulO3u1Uf+Lm6lOrRqm4wGoZKeX8m1hydoeflIp2QXF9mNldu9ESQcAAHAhuQV2LQiK0YKgGDXwraWhl7fWnT0DdM1FF6hmDR/T8QBUgN1u6Uh8hraFndS2sJPaHpas1JzipVxiOjso6QAAAC4rM69Qv+2M1G87I9W4bm0N6xWgYT0DdMWFTVSDwg64LLvdUnDc/0r5jvCylXKJYg5KOgAAgFtIzSnQT1sj9NPWCDVv4KvhvQM0rGcbdW/jLx8fCjtgkt1u6XBcuraFJTtKeRqlHBVESQcAAHAziZl5mroxXFM3hqtNYz/dfUVb3dEzQJe0bGg6GuAVbHZLh2PTT01dD0+mlKNSUdIBAADcWHRqrr5dE6pv14SqY7P6urt3G93RM0AdmtU3HQ3wGKeX8m1hydoRflLpuYUl7kspx/mipAMAAHiI8KQsjVt5VONWHlWXVg119xVtNPTyALVpXNd0NMCtOJfyU6PlGZRyVBNKOgAAgAcKjsvQx0uC9fGSYPVs20h3X9FWt/ZopRYN/UxHA1yOzW7pUMz/SvmO45RymENJBwAA8HB7o9K0NypN7y46qKs7NtVdvdvolu6t1LheHdPRACMKbXYdcpq+nqzMvJJL+Zko5ahqlHQAAAAvYUnaHp6s7eHJ+tf8/erQrL4uadFQF7dooE4t6qtT8wbq1LyB6vvyKyI8S6HNroMxzgu9lbWUA9WN78AAAABeyG5JYYlZCkvMkg46X9aioa8uaVlU3huoU/P6urh5AzVv6Mvp3uAWTi/lRdPXs/JspmMBZUJJBwAAgJOEjDwlZORpU2iS0/b6vjV1cfMG6tyyoTo1b3CqxDevrwub1lOtmjUMpQVOlfIDp5XynZRyuDFKOgAAAMokK8/mOL79dLVq+Kj9BfXUmanzqCYFNrsORKdpW1iytoWd1K7jycrKp5TDM/BdEwAAAOel0G7pWGKWjjF1HlWkwGbX/ug0x0Jvuynl8GCUdAAAAFSZsk6d79S8vi5u0YCp85B0qpTvi0rT9vBTpXzX8WRlU8rhJSjpAAAAqHZnmzp/4QX1WHXeyxSV8qJjyndHpFDK4bX4TgcAAACXUWi3WHXeC+QX2rU/OvW0Y8pTlFNAKQckSjoAAADcBFPn3Vd+oV37olL/d0x5BKUcKA0lHQAAAG6NqfPVx263lFdoV16hTbkF//s3t8CmvMLi/8am5mh7eLJ2RSQrt8BuOj7gFvjuBAAAAI9U5qnzzeurU4sGbjV13m63lG87VYZPL8vn+reoPOeVUqpP/9f5/6duo8BmmX7ogMejpAMAAMDrVNbU+dPLcqmlt8Cu3LOU57yzlOkzi3JugU35hXbl21x7VNrntP9Y9HqgXCjpAAAAwF/ONnW+dSM/SVLOaeXa1cuydFphPk1V92ar2H8AlBUlHQAAADiHQrulyJSc87qN00eXi8prdXRYejLgXijpAAAAQDVgdBlAWXBOCgAAAAAAXAQlHQAAAAAAF0FJBwAAAADARVDSAQAAAABwEZR0AAAAAABcBCUdAAAAAAAXQUkHAAAAAMBFUNIBAAAAAHARlHQAAAAAAFwEJR0AAAAAABdBSQcAAAAAwEVQ0gEAAAAAcBGUdAAAAAAAXAQlHQAAAAAAF0FJBwAAAADARVDSAQAAAABwEZR0AAAAAABcBCUdAAAAAAAXQUkHAAAAAMBFUNIBAAAAAHARlHQAAAAAAFwEJR0AAAAAABdBSQcAAAAAwEVQ0gEAAAAAcBGUdAAAAAAAXAQlHQAAAAAAF0FJBwAAAADARVDSAQAAAABwEZR0AAAAAABcBCUdAAAAAAAX4RIlfcKECerQoYP8/Px0zTXXaMeOHWfdf86cOerSpYv8/PzUo0cPLVmypJqSAgAAAABQdYyX9N9++02vvPKK3nnnHQUGBqpnz54aMmSIEhISStx/y5Yteuihh/Tkk09qz549Gj58uIYPH64DBw5Uc3IAAAAAACqX8ZL+xRdf6Omnn9aIESPUtWtXTZ48WfXq1dMPP/xQ4v5ff/21brnlFr3++uu67LLL9MEHH+iKK67Q+PHjqzk5AAAAAACVy2hJz8/P1+7duzVo0CDHtho1amjQoEHaunVridfZunWr0/6SNGTIkFL3BwAAAADAXdQyeedJSUmy2Wxq2bKl0/aWLVsqODi4xOvExcWVuH9cXFyJ++fl5SkvL8/xeVpamiQpPT39fKJXi7zsTNlys2WZDgIAAAAALiwzI13p6T6mY5SqqH9a1rnbndGSXh3Gjh2r9957r9j2du3aGUgDAAAAAKhs/b4ynaBsMjIy1KhRo7PuY7SkN2vWTDVr1lR8fLzT9vj4eLVq1arE67Rq1apc+48ZM0avvPKK43O73a7k5GRdcMEF8vFx3b+0oPzS09PVrl07RUZGyt/f33QceCjeZ6gOvM9QHXifoarxHkN1cJf3mWVZysjIUEBAwDn3NVrS69Spoz59+mj16tUaPny4pFMlevXq1Ro1alSJ1+nbt69Wr16t0aNHO7atXLlSffv2LXF/X19f+fr6Om1r3LhxZcSHi/L393fpL1B4Bt5nqA68z1AdeJ+hqvEeQ3Vwh/fZuUbQixif7v7KK6/oscce05VXXqmrr75aX331lbKysjRixAhJ0qOPPqo2bdpo7NixkqSXXnpJAwYM0Lhx4zR06FD9+uuv2rVrl6ZMmWLyYQAAAAAAcN6Ml/QHHnhAiYmJevvttxUXF6devXpp2bJljsXhTpw4oRo1/rcIfb9+/TRr1iz95z//0b/+9S917txZCxYsUPfu3U09BAAAAAAAKoXxki5Jo0aNKnV6+7p164ptu++++3TfffdVcSq4G19fX73zzjvFDm8AKhPvM1QH3meoDrzPUNV4j6E6eOL7zMcqyxrwAAAAAACgytU49y4AAAAAAKA6UNIBAAAAAHARlHQAAAAAAFwEJR0AAAAAABdBSYfbGzt2rK666io1bNhQLVq00PDhw3XkyBHTseDBPvnkE/n4+Gj06NGmo8DDREdH65FHHtEFF1ygunXrqkePHtq1a5fpWPAgNptNb731ljp27Ki6deuqU6dO+uCDD8Q6wjgfGzZs0B133KGAgAD5+PhowYIFTpdblqW3335brVu3Vt26dTVo0CCFhISYCQu3dbb3WUFBgf75z3+qR48eql+/vgICAvToo48qJibGXODzQEmH21u/fr1Gjhypbdu2aeXKlSooKNDgwYOVlZVlOho80M6dO/Xdd9/p8ssvNx0FHiYlJUX9+/dX7dq1tXTpUh06dEjjxo1TkyZNTEeDB/n00081adIkjR8/XocPH9ann36qzz77TN9++63paHBjWVlZ6tmzpyZMmFDi5Z999pm++eYbTZ48Wdu3b1f9+vU1ZMgQ5ebmVnNSuLOzvc+ys7MVGBiot956S4GBgfr999915MgRDRs2zEDS88cp2OBxEhMT1aJFC61fv1433HCD6TjwIJmZmbriiis0ceJEffjhh+rVq5e++uor07HgId58801t3rxZGzduNB0FHuz2229Xy5YtNW3aNMe2e+65R3Xr1tXMmTMNJoOn8PHx0fz58zV8+HBJp0bRAwIC9Oqrr+q1116TJKWlpally5aaMWOGHnzwQYNp4a7OfJ+VZOfOnbr66qsVERGhCy+8sPrCVQJG0uFx0tLSJElNmzY1nASeZuTIkRo6dKgGDRpkOgo80KJFi3TllVfqvvvuU4sWLdS7d29NnTrVdCx4mH79+mn16tU6evSoJGnv3r3atGmTbr31VsPJ4KnCw8MVFxfn9LOzUaNGuuaaa7R161aDyeDp0tLS5OPjo8aNG5uOUm61TAcAKpPdbtfo0aPVv39/de/e3XQceJBff/1VgYGB2rlzp+ko8FBhYWGaNGmSXnnlFf3rX//Szp079eKLL6pOnTp67LHHTMeDh3jzzTeVnp6uLl26qGbNmrLZbProo4/08MMPm44GDxUXFydJatmypdP2li1bOi4DKltubq7++c9/6qGHHpK/v7/pOOVGSYdHGTlypA4cOKBNmzaZjgIPEhkZqZdeekkrV66Un5+f6TjwUHa7XVdeeaU+/vhjSVLv3r114MABTZ48mZKOSjN79mz98ssvmjVrlrp166agoCCNHj1aAQEBvM8AeISCggLdf//9sixLkyZNMh2nQpjuDo8xatQoLV68WGvXrlXbtm1Nx4EH2b17txISEnTFFVeoVq1aqlWrltavX69vvvlGtWrVks1mMx0RHqB169bq2rWr07bLLrtMJ06cMJQInuj111/Xm2++qQcffFA9evTQ//3f/+nll1/W2LFjTUeDh2rVqpUkKT4+3ml7fHy84zKgshQV9IiICK1cudItR9ElSjo8gGVZGjVqlObPn681a9aoY8eOpiPBw9x0003av3+/goKCHB9XXnmlHn74YQUFBalmzZqmI8ID9O/fv9jpI48ePar27dsbSgRPlJ2drRo1nH/9q1mzpux2u6FE8HQdO3ZUq1attHr1ase29PR0bd++XX379jWYDJ6mqKCHhIRo1apVuuCCC0xHqjCmu8PtjRw5UrNmzdLChQvVsGFDx/FNjRo1Ut26dQ2ngydo2LBhsTUO6tevrwsuuIC1D1BpXn75ZfXr108ff/yx7r//fu3YsUNTpkzRlClTTEeDB7njjjv00Ucf6cILL1S3bt20Z88effHFF3riiSdMR4Mby8zMVGhoqOPz8PBwBQUFqWnTprrwwgs1evRoffjhh+rcubM6duyot956SwEBAWddmRs409neZ61bt9a9996rwMBALV68WDabzdEJmjZtqjp16piKXSGcgg1uz8fHp8Tt06dP1+OPP169YeA1Bg4cyCnYUOkWL16sMWPGKCQkRB07dtQrr7yip59+2nQseJCMjAy99dZbmj9/vhISEhQQEKCHHnpIb7/9ttv9EgvXsW7dOt14443Ftj/22GOaMWOGLMvSO++8oylTpig1NVXXXXedJk6cqEsuucRAWrirs73P3n333VJn065du1YDBw6s4nSVi5IOAAAAAICL4Jh0AAAAAABcBCUdAAAAAAAXQUkHAAAAAMBFUNIBAAAAAHARlHQAAAAAAFwEJR0AAAAAABdBSQcAAOVy5MgRffjhh8rNzTUdBQAAj8N50gEAQJnZbDb1799fTZs2VY8ePfTpp5+ajgQAgEdhJB0AAC/2+OOPy8fHR88991yxy0aOHCkfHx89/vjjjm3//e9/NXDgQC1atEjbt2/Xjh07qjEtAACej5F0AAC82OOPP641a9YoPT1dsbGxqlu3riQpNzdXrVu3lr+/v2688UbNmDHDbFAAALwEI+kAAHi5K664Qu3atdPvv//u2Pb777/rwgsvVO/evR3b7Ha7xo4dq44dO6pu3brq2bOn5s6d67g8JSVFDz/8sJo3b666deuqc+fOmj59erU+FgAA3B0lHQAA6IknnnAq1D/88INGjBjhtM/YsWP1008/afLkyTp48KBefvllPfLII1q/fr0k6a233tKhQ4e0dOlSHT58WJMmTVKzZs2q9XEAAODumO4OAIAXe/zxx5WamqqpU6eqXbt2OnLkiCSpS5cuioyM1FNPPaXGjRvru+++U9OmTbVq1Sr17dvXcf2nnnpK2dnZmjVrloYNG6ZmzZrphx9+MPVwAABwe7VMBwAAAOY1b95cQ4cO1YwZM2RZloYOHeo0Ch4aGqrs7GzdfPPNTtfLz893TIl//vnndc899ygwMFCDBw/W8OHD1a9fv2p9HAAAuDtKOgAAkHRqyvuoUaMkSRMmTHC6LDMzU5L0559/qk2bNk6X+fr6SpJuvfVWRUREaMmSJVq5cqVuuukmjRw5Uv/973+rIT0AAJ6Bkg4AACRJt9xyi/Lz8+Xj46MhQ4Y4Xda1a1f5+vrqxIkTGjBgQKm30bx5cz322GN67LHHdP311+v111+npAMAUA6UdAAAIEmqWbOmDh8+7Pj/6Ro2bKjXXntNL7/8sux2u6677jqlpaVp8+bN8vf312OPPaa3335bffr0Ubdu3ZSXl6fFixfrsssuM/FQAABwW5R0AADg4O/vX+plH3zwgZo3b66xY8cqLCxMjRs31hVXXKF//etfkqQ6depozJgxOn78uOrWravrr79ev/76a3VFBwDAI7C6OwAAAAAALoLzpAMAAAAA4CIo6QAAAAAAuAhKOgAAAAAALoKSDgAAAACAi6CkAwAAAADgIijpAAAAAAC4CEo6AAAAAAAugpIOAAAAAICLoKQDAAAAAOAiKOkAAAAAALgISjoAAAAAAC6Ckg4AAAAAgIv4/7u+kms8W4YpAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"mes\"])[\"casos_dengue\"].sum().plot(kind='area')\n",
+ "plt.title(\"Casos de Dengue distribuídos pelos meses do ano ao logo de 20 anos\")\n",
+ "plt.xlabel(\"Mês\")\n",
+ "plt.ylabel(\"Casos\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Como mostra no gráfico os meses com mais casos são os que compreendem o período do verão. Já que na maioria das Regiões do Brasil é o período mais chuvoso, uma condição propícia para o aumento da doença."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Casos')"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA9wAAAMvCAYAAAAgVtiqAAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAABmtElEQVR4nO3dd5RU5eE+8GcBWZCOAoIgRYgVu2hAgwW7GGuMMUZRE6Mo9vbVWGJUYoyiwYa9xN47xB4Vo2LsXUGIjQihK+gyvz887i+bxQZ7GVk+n3PmHOadOzPPDLMLz7z3vreiVCqVAgAAANSpBuUOAAAAAPWRwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDcBCU1FRkZNOOqncMfiB2mijjbLRRhuVO8ZCtTi85r322ivdunWrMeZ3AbC4ULgByuydd97Jfvvtlx49eqRJkyZp2bJl+vXrl3POOSeffvppueP9oHXr1i0VFRWpqKhIgwYN0rp16/Tu3Tu/+c1v8o9//KPc8RZ748aNq/77+erSsmXLrLHGGhk+fHiqqqrKHbHe2WijjWq8340bN0737t3zm9/8JhMmTCh3PIDFTqNyBwBYnN1zzz3ZZZddUllZmV/96ldZddVVM2fOnDz++OM58sgj88orr2TEiBHljvmDtsYaa+Twww9PkkyfPj2vvfZabrrpplx88cU59NBDc9ZZZ5U5Ibvttlu23nrrJMnUqVNz77335qCDDsp7772XP/3pT9XbjRo1qlwR65XOnTvn9NNPT5LMmTMnr776ai688MKMHDkyr732WpZccsmFmufiiy/O3LlzF+pzAvxQKNwAZTJ27Nj8/Oc/T9euXfPQQw+lY8eO1bcNHjw4b7/9du65554yJlw0LLvssvnlL39ZY+yPf/xjfvGLX+Tss89Or169sv/++5cpHUmy1lpr1fg7OuCAA7Leeuvl2muvrVG4GzduXI549U6rVq1q/Ux07949Bx54YJ544olsttlmX3vfmTNnplmzZnWaZ4kllqjTxwNYlNilHKBMzjjjjMyYMSOXXnppjbL9lZ49e+bggw+uvn755Zdnk002Sfv27VNZWZmVV145F1xwQa37Pfvss9liiy2y9NJLp2nTpunevXv23nvvGtvMnDkzhx9+eLp06ZLKysqssMIKOfPMM1MqlWps97e//S0bbLBBWrdunebNm2eFFVbI//3f/33ra5s9e3YOPfTQtGvXLi1atMh2222Xf/3rX/Pc9v3338/ee++dDh06pLKyMqusskouu+yyb32Ob9K0adNcffXVadu2bU499dQar2vu3LkZNmxYVllllTRp0iQdOnTIfvvtl//85z81HqNbt27Zdttt8/jjj6dPnz5p0qRJevTokauuuqrW87344ovp379/mjZtms6dO+cPf/hDLr/88lRUVGTcuHHV233dcavdunXLXnvtVWNsypQpOeSQQ6r/jnr27Jk//vGP32mm8Ptkf/fdd7PLLrukbdu2WXLJJbP++uvP84uev/zlL1lllVWy5JJLpk2bNllnnXVy7bXXfmuWeamoqEiHDh3SqFHN7/3ndTzzxIkTs88++6RDhw5p0qRJVl999Vx55ZU1tvlq1/Uzzzwz5513Xnr06JEll1wym2++eSZMmJBSqZRTTjklnTt3TtOmTfPTn/40kydPrvEYd9xxR7bZZpt06tQplZWVWX755XPKKafU2u39rbfeyk477ZRlllkmTZo0SefOnfPzn/88U6dO/dbXPWLEiCy//PJp2rRp+vTpk7///e/z3O67vObva5lllkmSGu/5SSedlIqKirz66qv5xS9+kTZt2mSDDTZI8uVneq+99qo+1GWZZZbJ3nvvnUmTJtV43OnTp+eQQw5Jt27dUllZmfbt22ezzTbLc889V73NvI7hBlhcmOEGKJO77rorPXr0SN++fb/T9hdccEFWWWWVbLfddmnUqFHuuuuuHHDAAZk7d24GDx6c5Mv/qG+++eZp165djjnmmLRu3Trjxo3LrbfeWv04pVIp2223XR5++OHss88+WWONNTJy5MgceeSRef/993P22WcnSV555ZVsu+22WW211fL73/8+lZWVefvtt/PEE098a9Z9990311xzTX7xi1+kb9++eeihh7LNNtvU2u7jjz/O+uuvn4qKihx44IFp165d7rvvvuyzzz6ZNm1aDjnkkO/03sxL8+bNs8MOO+TSSy/Nq6++mlVWWSVJst9+++WKK67IoEGDMmTIkIwdOzbDhw/PP//5zzzxxBM1ZuPefvvt7Lzzztlnn32y55575rLLLstee+2Vtddeu/rx3n///Wy88capqKjIsccem2bNmuWSSy5JZWXlfGefNWtW+vfvn/fffz/77bdflltuuTz55JM59thj8+GHH2bYsGHf+hjfJfvHH3+cvn37ZtasWRkyZEiWWmqpXHnlldluu+1y8803Z4cddkjy5S7BQ4YMyc4775yDDz44n332WV588cX84x//yC9+8Yvv9Ho++eSTJMm0adNy33335f7778+xxx77jff79NNPs9FGG+Xtt9/OgQcemO7du+emm27KXnvtlSlTptT4QipJ/vrXv2bOnDk56KCDMnny5Jxxxhn52c9+lk022SSPPPJIjj766Lz99tv5y1/+kiOOOKLGFztXXHFFmjdvnsMOOyzNmzfPQw89lBNOOCHTpk2rnoWfM2dOtthii8yePTsHHXRQlllmmbz//vu5++67M2XKlLRq1eprX8ull16a/fbbL3379s0hhxySd999N9ttt13atm2bLl26zPdrnpeqqqrq9/vzzz/Pa6+9lhNPPDE9e/ZMv379am2/yy67pFevXjnttNOqv5z629/+lnfffTeDBg3KMsssU314yyuvvJKnnnoqFRUVSZLf/va3ufnmm3PggQdm5ZVXzqRJk/L444/ntddey1prrfWtWQHqvRIAC93UqVNLSUo//elPv/N9Zs2aVWtsiy22KPXo0aP6+m233VZKUnrmmWe+9nFuv/32UpLSH/7whxrjO++8c6mioqL09ttvl0qlUunss88uJSn9+9///s4ZS6VS6fnnny8lKR1wwAE1xn/xi1+UkpROPPHE6rF99tmn1LFjx9Inn3xSY9uf//znpVatWs3zNf+3rl27lrbZZpuvvf2r13DHHXeUSqVS6e9//3spSemvf/1rje3uv//+WuNdu3YtJSk99thj1WMTJ04sVVZWlg4//PDqsYMOOqhUUVFR+uc//1k9NmnSpFLbtm1LSUpjx46tHv/f1//fz7XnnntWXz/llFNKzZo1K7355ps1tjvmmGNKDRs2LI0fP/5rX/P3yX7IIYeUkpT+/ve/V49Nnz691L1791K3bt1KVVVVpVKpVPrpT39aWmWVVb7xOedl7NixpSTzvOy///6luXPn1ti+f//+pf79+1dfHzZsWClJ6ZprrqkemzNnTunHP/5xqXnz5qVp06bVeJ527dqVpkyZUr3tscceW0pSWn311Uuff/559fhuu+1Waty4cemzzz6rHpvXZ22//fYrLbnkktXb/fOf/ywlKd10003f632YM2dOqX379qU11lijNHv27OrxESNGlJLM12v+Ov3795/n+73SSiuV3n333RrbnnjiiaUkpd12263W48zr/bjuuutqfa5atWpVGjx48Ddm2nPPPUtdu3atMfZ1PwsA9Y1dygHKYNq0aUmSFi1afOf7NG3atPrPU6dOzSeffJL+/fvn3Xffrd6dtXXr1kmSu+++O59//vk8H+fee+9Nw4YNM2TIkBrjhx9+eEqlUu67774aj3XHHXd8rwWP7r333iSp9fj/O1tdKpVyyy23ZODAgSmVSvnkk0+qL1tssUWmTp1aY7fU+dG8efMkX+72miQ33XRTWrVqlc0226zG86299tpp3rx5Hn744Rr3X3nllbPhhhtWX2/Xrl1WWGGFvPvuu9Vj999/f3784x9njTXWqB5r27Ztdt999/nOfdNNN2XDDTdMmzZtauQcMGBAqqqq8thjj33rY3yX7Pfee2/69OlTvRtx8uV79pvf/Cbjxo3Lq6++muTLz8K//vWvPPPMM/P1en7zm9/kb3/7W/72t7/llltuyeDBg3PRRRflsMMO+8b73XvvvVlmmWWy2267VY8tscQSGTJkSGbMmJFHH320xva77LJLjVnm9dZbL0nyy1/+ssau1Outt17mzJmT999/v3rsv3++pk+fnk8++SQbbrhhZs2alddffz1Jqh975MiRmTVr1nd+/c8++2wmTpyY3/72tzWOU99rr71qzYp/39c8L926dat+v++7774MGzYsU6dOzVZbbZV///vftbb/7W9/W2vsv9+Pzz77LJ988knWX3/9JKnxc9m6dev84x//yAcffPCtuQAWR/WmcD/22GMZOHBgOnXqlIqKitx+++3f+zFKpVLOPPPM/OhHP0plZWWWXXbZnHrqqXUfFljstWzZMsn/L4LfxRNPPJEBAwakWbNmad26ddq1a1d9PPVXhbt///7ZaaedcvLJJ2fppZfOT3/601x++eWZPXt29eO899576dSpU62yv9JKK1XfniS77rpr+vXrl3333TcdOnTIz3/+89x4443fWr7fe++9NGjQIMsvv3yN8RVWWKHG9X//+9+ZMmVKRowYkXbt2tW4DBo0KMmXu8gviBkzZiT5/19svPXWW5k6dWrat29f6zlnzJhR6/mWW265Wo/Zpk2bGsd7v/fee+nZs2et7eY19l299dZbuf/++2tlHDBgQJLv9r581+z/+/eS1P4sHH300WnevHn69OmTXr16ZfDgwd/p0IKv9OrVKwMGDMiAAQOy4447Zvjw4TnggAMybNiwvPTSS197v/feey+9evVKgwY1/7vyv/m+8r+v+asy+9+7bP/3+H+/F6+88kp22GGHtGrVKi1btky7du2qFx776uere/fuOeyww3LJJZdk6aWXzhZbbJHzzjvvW4/f/ipnr169aowvscQS6dGjxwK95nlp1qxZ9fu95ZZb5uCDD86dd96ZN954I0OHDq21fffu3WuNTZ48OQcffHA6dOiQpk2bpl27dtXb/ffrPeOMM/Lyyy+nS5cu6dOnT0466aQaX+oALO7qzTHcM2fOzOqrr5699947O+6443w9xsEHH5xRo0blzDPPTO/evTN58uRai6oA1IWWLVumU6dOefnll7/T9u+880423XTTrLjiijnrrLPSpUuXNG7cOPfee2/OPvvs6hJcUVGRm2++OU899VTuuuuujBw5MnvvvXf+/Oc/56mnnqqe8f0umjZtmsceeywPP/xw7rnnntx///254YYbsskmm2TUqFFp2LDhfL32r3yV+Ze//GX23HPPeW6z2mqrLdBzfPX+flV+586dm/bt2+evf/3rPLdv165djetf9xpL/7O43IL634W55s6dm8022yxHHXXUPLf/0Y9+9K2PWZfZV1pppbzxxhu5++67c//99+eWW27J+eefnxNOOCEnn3zy9368JNl0000zfPjwPPbYY+ndu/d8Pcb/+rrX/G3vxZQpU9K/f/+0bNkyv//977P88sunSZMmee6553L00UfX+JLpz3/+c/baa6/ccccdGTVqVIYMGZLTTz89Tz31VDp37lwnr6MIa6+9dlq1ajXPvSP+ezb7Kz/72c/y5JNP5sgjj8waa6yR5s2bZ+7cudlyyy1rvB8/+9nPsuGGG+a2227LqFGj8qc//Sl//OMfc+utt2arrbYq9DUBLArqTeHeaqutvvEX++zZs3Pcccfluuuuy5QpU7Lqqqvmj3/8Y/VqqK+99louuOCCvPzyy9Xf9s/rG1+AurLttttmxIgRGT16dH784x9/47Z33XVXZs+enTvvvLPGLN7/7gL9lfXXXz/rr79+Tj311Fx77bXZfffdc/3112ffffdN165d88ADD2T69Ok1Zrm/2m22a9eu1WMNGjTIpptumk033TRnnXVWTjvttBx33HF5+OGHq2db/1fXrl0zd+7cvPPOOzVmT994440a2321gnlVVdXXPtaCmDFjRm677bZ06dKlenZw+eWXzwMPPJB+/frNs2TMj65du+btt9+uNT6vsTZt2mTKlCk1xubMmZMPP/ywxtjyyy+fGTNmFPK+/LeuXbvW+ntJ5v1ZaNasWXbdddfsuuuumTNnTnbccceceuqpOfbYY9OkSZPv/dxffPFFkv+/F8LX5XvxxRczd+7cGjO+88q3IB555JFMmjQpt956a37yk59Uj48dO3ae2/fu3Tu9e/fO8ccfnyeffDL9+vXLhRdemD/84Q9f+zqSL/dc2GSTTarHP//884wdOzarr756jW2Les1VVVXf+H5/5T//+U8efPDBnHzyyTnhhBOqx9966615bt+xY8cccMABOeCAAzJx4sSstdZaOfXUUxVugNSjXcq/zYEHHpjRo0fn+uuvz4svvphddtklW265ZfU/Hl+tFnz33Xene/fu6datW/bdd18z3EBhjjrqqDRr1iz77rtvPv7441q3v/POOznnnHOS/P8Zuv+enZw6dWouv/zyGvf5z3/+U2sG86tji7/arXzrrbdOVVVVhg8fXmO7s88+OxUVFdX/SZ7X77//fax5+er+5557bo3x/11Zu2HDhtlpp51yyy23zHOmf17Hmn5Xn376afbYY49Mnjw5xx13XPWKyj/72c9SVVWVU045pdZ9vvjii1pl+LvYYostMnr06Dz//PPVY5MnT57nLPryyy9fa4ZxxIgRtWa4f/azn2X06NEZOXJkrceYMmVKdVldUFtvvXWefvrpjB49unps5syZGTFiRLp165aVV145SWqdCqpx48ZZeeWVUyqVvnatgG9z1113JUmNsjmvfB999FFuuOGG6rEvvvgif/nLX9K8efP0799/vp77f83r52vOnDk5//zza2w3bdq0Wu99796906BBg2/8mVhnnXXSrl27XHjhhZkzZ071+BVXXFHrM1fUa3744YczY8aMb3y/vzKv9yOp/TNcVVVVa3f69u3bp1OnTt/4fgAsTurNDPc3GT9+fC6//PKMHz8+nTp1SpIcccQRuf/++3P55ZfntNNOy7vvvpv33nsvN910U6666qpUVVXl0EMPzc4775yHHnqozK8AqI+WX375XHvttdl1112z0kor5Ve/+lVWXXXVzJkzJ08++WT1qYCSZPPNN0/jxo0zcODA7LfffpkxY0YuvvjitG/fvsbs6JVXXpnzzz8/O+ywQ5ZffvlMnz49F198cVq2bJmtt946STJw4MBsvPHGOe644zJu3LisvvrqGTVqVO64444ccsgh1cde//73v89jjz2WbbbZJl27ds3EiRNz/vnnp3PnzjUW2fpfa6yxRnbbbbecf/75mTp1avr27ZsHH3xwnjO+Q4cOzcMPP5z11lsvv/71r7Pyyitn8uTJee655/LAAw98py8933///VxzzTVJvpwtffXVV3PTTTflo48+yuGHH5799tuvetv+/ftnv/32y+mnn57nn38+m2++eZZYYom89dZbuemmm3LOOedk5513/va/vP9y1FFH5Zprrslmm22Wgw46qPq0YMstt1wmT55cXfaTL0+X9tvf/jY77bRTNttss7zwwgsZOXJkll566RqPeeSRR+bOO+/MtttuW30qr5kzZ+all17KzTffnHHjxtW6z/w45phjct1112WrrbbKkCFD0rZt21x55ZUZO3ZsbrnlluoZ1s033zzLLLNM+vXrlw4dOuS1117L8OHDs80223ynhf+ee+656r+j6dOn58EHH8wtt9ySvn37ZvPNN//a+/3mN7/JRRddlL322itjxoxJt27dcvPNN+eJJ57IsGHDvteig9+kb9++adOmTfbcc88MGTIkFRUVufrqq2sVzoceeigHHnhgdtlll/zoRz/KF198kauvvrr6y6Ovs8QSS+QPf/hD9ttvv2yyySbZddddM3bs2Fx++eW1juGui9c8derU6vf7iy++yBtvvJELLrggTZs2zTHHHPOt92/ZsmV+8pOf5Iwzzsjnn3+eZZddNqNGjao14z99+vR07tw5O++8c1ZfffU0b948DzzwQJ555pn8+c9//tbnAVgslGVt9IIlKd12223V1+++++5SklKzZs1qXBo1alT62c9+ViqVSqVf//rXpSSlN954o/p+Y8aMKSUpvf766wv7JQCLkTfffLP061//utStW7dS48aNSy1atCj169ev9Je//KXGaYvuvPPO0mqrrVZq0qRJqVu3bqU//vGPpcsuu6zGqaeee+650m677VZabrnlSpWVlaX27duXtt1229Kzzz5b4zmnT59eOvTQQ0udOnUqLbHEEqVevXqV/vSnP9U4TdODDz5Y+ulPf1rq1KlTqXHjxqVOnTqVdtttt1qnqpqXTz/9tDRkyJDSUkstVWrWrFlp4MCBpQkTJszzVEAff/xxafDgwaUuXbqUllhiidIyyyxT2nTTTUsjRoz41uf56vRXSUoVFRWlli1bllZZZZXSr3/969I//vGPr73fiBEjSmuvvXapadOmpRYtWpR69+5dOuqoo0offPBBjcee1ynH/vfUVaXSl6eL2nDDDUuVlZWlzp07l04//fTSueeeW0pS+uijj6q3q6qqKh199NGlpZdeurTkkkuWtthii9Lbb79d67RgpdKXf0fHHntsqWfPnqXGjRuXll566VLfvn1LZ555ZmnOnDnf+r581+zvvPNOaeeddy61bt261KRJk1KfPn1Kd999d41tLrrootJPfvKT0lJLLVWqrKwsLb/88qUjjzyyNHXq1G/MMa/TgjVq1KjUo0eP0pFHHlmaPn36t+b7+OOPS4MGDSotvfTSpcaNG5d69+5duvzyy+f5PH/6059qjD/88MPzPI3X5ZdfXuv0eU888URp/fXXLzVt2rTUqVOn0lFHHVUaOXJkKUnp4YcfLpVKpdK7775b2nvvvUvLL798qUmTJqW2bduWNt5449IDDzzwje/DV84///xS9+7dS5WVlaV11lmn9Nhjj833a/46/3tasIqKilLbtm1L2223XWnMmDE1tv3qtGDzOvXfv/71r9IOO+xQat26dalVq1alXXbZpfTBBx/U+BmePXt26cgjjyytvvrqpRYtWpSaNWtWWn311Uvnn39+jcdyWjBgcVZRKtXxyi8/ABUVFbntttuy/fbbJ0luuOGG7L777nnllVdqLZzSvHnzLLPMMjnxxBNz2mmn1dg17tNPP82SSy6ZUaNGZbPNNluYLwGARdwhhxySiy66KDNmzFjgBeYAgEXTYrFL+ZprrpmqqqpMnDixxjlJ/1u/fv3yxRdf5J133qnenfLNN99MUneLsgBQP3366ac1FmGbNGlSrr766mywwQbKNgAsxurNDPeMGTOqjw9cc801c9ZZZ2XjjTdO27Zts9xyy+WXv/xlnnjiifz5z3/OmmuumX//+9958MEHs9pqq2WbbbbJ3Llzs+6666Z58+YZNmxY5s6dm8GDB6dly5YZNWpUmV8dAD9ka6yxRjbaaKOstNJK+fjjj3PppZfmgw8+yIMPPlhj1WsAYPFSbwr3I488ko033rjW+J577pkrrrgin3/+ef7whz/kqquuyvvvv5+ll14666+/fk4++eTq839+8MEHOeiggzJq1Kg0a9YsW221Vf785z+nbdu2C/vlALAI+b//+7/cfPPN+de//pWKioqstdZaOfHEEws/rRcA8MNWbwo3AAAA/JAsNufhBgAAgIVJ4QYAAIACLNKrlM+dOzcffPBBWrRokYqKinLHAQAAoJ4rlUqZPn16OnXqlAYNvnkOe5Eu3B988EG6dOlS7hgAAAAsZiZMmJDOnTt/4zaLdOFu0aJFki9faMuWLcucBgAAgPpu2rRp6dKlS3Uf/SaLdOH+ajfyli1bKtwAAAAsNN/lsGaLpgEAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAKUtXB369YtFRUVtS6DBw8uZywAAABYYI3K+eTPPPNMqqqqqq+//PLL2WyzzbLLLruUMRUAAAAsuLIW7nbt2tW4PnTo0Cy//PLp379/mRIBAABA3Shr4f5vc+bMyTXXXJPDDjssFRUV89xm9uzZmT17dvX1adOmLax4AAAA8L38YBZNu/322zNlypTstddeX7vN6aefnlatWlVfunTpsvACAgAAwPdQUSqVSuUOkSRbbLFFGjdunLvuuutrt5nXDHeXLl0yderUtGzZcmHEBAAAYDE2bdq0tGrV6jv10B/ELuXvvfdeHnjggdx6663fuF1lZWUqKysXUioAAACYfz+IXcovv/zytG/fPttss025owAAAECdKHvhnjt3bi6//PLsueeeadToBzHhDgAAAAus7IX7gQceyPjx47P33nuXOwoAAADUmbJPKW+++eb5gazbBgAAAHWm7DPcAAAAUB+VfYYbWHDdjrmn3BEWOeOGWqQRAIBimeEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUoOyF+/33388vf/nLLLXUUmnatGl69+6dZ599ttyxAAAAYIE0KueT/+c//0m/fv2y8cYb57777ku7du3y1ltvpU2bNuWMBQAAAAusrIX7j3/8Y7p06ZLLL7+8eqx79+5lTAQAAAB1o6y7lN95551ZZ511sssuu6R9+/ZZc801c/HFF3/t9rNnz860adNqXAAAAOCHqKyF+913380FF1yQXr16ZeTIkdl///0zZMiQXHnllfPc/vTTT0+rVq2qL126dFnIiQEAAOC7qSiVSqVyPXnjxo2zzjrr5Mknn6weGzJkSJ555pmMHj261vazZ8/O7Nmzq69PmzYtXbp0ydSpU9OyZcuFkhl+iLodc0+5Iyxyxg3dptwRAABYBE2bNi2tWrX6Tj20rDPcHTt2zMorr1xjbKWVVsr48ePnuX1lZWVatmxZ4wIAAAA/RGUt3P369csbb7xRY+zNN99M165dy5QIAAAA6kZZC/ehhx6ap556KqeddlrefvvtXHvttRkxYkQGDx5czlgAAACwwMpauNddd93cdtttue6667LqqqvmlFNOybBhw7L77ruXMxYAAAAssLKehztJtt1222y77bbljgEAAAB1qqwz3AAAAFBfKdwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQgLIW7pNOOikVFRU1LiuuuGI5IwEAAECdaFTuAKusskoeeOCB6uuNGpU9EgAAACywsrfbRo0aZZlllil3DAAAAKhTZT+G+6233kqnTp3So0eP7L777hk/fvzXbjt79uxMmzatxgUAAAB+iMpauNdbb71cccUVuf/++3PBBRdk7Nix2XDDDTN9+vR5bn/66aenVatW1ZcuXbos5MQAAADw3VSUSqVSuUN8ZcqUKenatWvOOuus7LPPPrVunz17dmbPnl19fdq0aenSpUumTp2ali1bLsyo8IPS7Zh7yh1hkTNu6DbljgAAwCJo2rRpadWq1XfqoWU/hvu/tW7dOj/60Y/y9ttvz/P2ysrKVFZWLuRUAAAA8P2V/Rju/zZjxoy888476dixY7mjAAAAwAIpa+E+4ogj8uijj2bcuHF58skns8MOO6Rhw4bZbbfdyhkLAAAAFlhZdyn/17/+ld122y2TJk1Ku3btssEGG+Spp55Ku3btyhkLAAAAFlhZC/f1119fzqcHAACAwvygjuEGAACA+kLhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAL8YAr30KFDU1FRkUMOOaTcUQAAAGCB/SAK9zPPPJOLLrooq622WrmjAAAAQJ0oe+GeMWNGdt9991x88cVp06ZNueMAAABAnSh74R48eHC22WabDBgw4Fu3nT17dqZNm1bjAgAAAD9Ejcr55Ndff32ee+65PPPMM99p+9NPPz0nn3xywakAAABgwZVthnvChAk5+OCD89e//jVNmjT5Tvc59thjM3Xq1OrLhAkTCk4JAAAA86dsM9xjxozJxIkTs9Zaa1WPVVVV5bHHHsvw4cMze/bsNGzYsMZ9KisrU1lZubCjAgAAwPdWtsK96aab5qWXXqoxNmjQoKy44oo5+uija5VtAAAAWJSUrXC3aNEiq666ao2xZs2aZamllqo1DgAAAIuasq9SDgAAAPVRWVcp/1+PPPJIuSMAAABAnTDDDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEAB5qtwf/rpp5k1a1b19ffeey/Dhg3LqFGj6iwYAAAALMrmq3D/9Kc/zVVXXZUkmTJlStZbb738+c9/zk9/+tNccMEFdRoQAAAAFkXzVbife+65bLjhhkmSm2++OR06dMh7772Xq666Kueee26dBgQAAIBF0XwV7lmzZqVFixZJklGjRmXHHXdMgwYNsv766+e9996r04AAAACwKJqvwt2zZ8/cfvvtmTBhQkaOHJnNN988STJx4sS0bNmyTgMCAADAomi+CvcJJ5yQI444It26dUufPn3y4x//OMmXs91rrrlmnQYEAACARVGj+bnTzjvvnA022CAffvhhVl999erxTTfdNDvssEOdhQMAAIBF1XwV7iRZZpllsswyy+Rf//pXkqRz587p06dPnQUDAACARdl87VI+d+7c/P73v0+rVq3StWvXdO3aNa1bt84pp5ySuXPn1nVGAAAAWOTM1wz3cccdl0svvTRDhw5Nv379kiSPP/54TjrppHz22Wc59dRT6zQkAAAALGrmq3BfeeWVueSSS7LddttVj6222mpZdtllc8ABByjcAAAALPbma5fyyZMnZ8UVV6w1vuKKK2by5MkLHAoAAAAWdfNVuFdfffUMHz681vjw4cNrrFoOAAAAi6v52qX8jDPOyDbbbJMHHnig+hzco0ePzoQJE3LvvffWaUAAAABYFM3XDHf//v3z5ptvZocddsiUKVMyZcqU7LjjjnnjjTey4YYb1nVGAAAAWOTM93m4O3XqZHE0AAAA+BrzNcN9//335/HHH6++ft5552WNNdbIL37xi/znP/+ps3AAAACwqJqvwn3kkUdm2rRpSZKXXnophx12WLbeeuuMHTs2hx12WJ0GBAAAgEXRfO1SPnbs2Ky88spJkltuuSUDBw7Maaedlueeey5bb711nQYEAACARdF8zXA3btw4s2bNSpI88MAD2XzzzZMkbdu2rZ75BgAAgMXZfM1wb7DBBjnssMPSr1+/PP3007nhhhuSJG+++WY6d+5cpwEBAABgUTRfM9zDhw9Po0aNcvPNN+eCCy7IsssumyS57777suWWW9ZpQAAAAFgUzdcM93LLLZe777671vjZZ5+9wIEAAACgPpjv83B/5bPPPsucOXNqjLVs2XJBHxYAAAAWafO1S/nMmTNz4IEHpn379mnWrFnatGlT4wIAAACLu/kq3EcddVQeeuihXHDBBamsrMwll1ySk08+OZ06dcpVV11V1xkBAABgkTNfu5Tfddddueqqq7LRRhtl0KBB2XDDDdOzZ8907do1f/3rX7P77rvXdU4AAABYpMzXDPfkyZPTo0ePJF8erz158uQkX54u7LHHHqu7dAAAALCImq/C3aNHj4wdOzZJsuKKK+bGG29M8uXMd+vWressHAAAACyq5qtwDxo0KC+88EKS5Jhjjsl5552XJk2a5JBDDsmRRx5ZpwEBAABgUTRfx3Afeuih1X8eMGBAXn/99YwZMya9evVK79696ywcAAAALKq+1wz3Qw89lJVXXjnTpk2rMd61a9dsuumm+fnPf56///3vdRoQAAAAFkXfq3APGzYsv/71r9OyZctat7Vq1Sr77bdfzjrrrDoLBwAAAIuq71W4X3jhhWy55ZZfe/vmm2+eMWPGLHAoAAAAWNR9r8L98ccfZ4kllvja2xs1apR///vfCxwKAAAAFnXfq3Avu+yyefnll7/29hdffDEdO3Zc4FAAAACwqPtehXvrrbfO7373u3z22We1bvv0009z4oknZtttt62zcAAAALCo+l6nBTv++ONz66235kc/+lEOPPDArLDCCkmS119/Peedd16qqqpy3HHHFRIUAFh8dDvmnnJHWOSMG7pNuSMA8D++V+Hu0KFDnnzyyey///459thjUyqVkiQVFRXZYostct5556VDhw6FBAUAAIBFyfcq3MmX59y+995785///Cdvv/12SqVSevXqlTZt2hSRDwAAABZJ37twf6VNmzZZd9116zILAAAA1Bvfa9E0AAAA4LtRuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAAZS3cF1xwQVZbbbW0bNkyLVu2zI9//OPcd9995YwEAAAAdaKshbtz584ZOnRoxowZk2effTabbLJJfvrTn+aVV14pZywAAABYYI3K+eQDBw6scf3UU0/NBRdckKeeeiqrrLJKmVIBAADAgitr4f5vVVVVuemmmzJz5sz8+Mc/nuc2s2fPzuzZs6uvT5s2bWHFAwAAgO+l7IumvfTSS2nevHkqKyvz29/+NrfddltWXnnleW57+umnp1WrVtWXLl26LOS0AAAA8N2UvXCvsMIKef755/OPf/wj+++/f/bcc8+8+uqr89z22GOPzdSpU6svEyZMWMhpAQAA4Lsp+y7ljRs3Ts+ePZMka6+9dp555pmcc845ueiii2ptW1lZmcrKyoUdEQAAAL63ss9w/6+5c+fWOE4bAAAAFkVlneE+9thjs9VWW2W55ZbL9OnTc+211+aRRx7JyJEjyxkLAAAAFlhZC/fEiRPzq1/9Kh9++GFatWqV1VZbLSNHjsxmm21WzlgAAACwwMpauC+99NJyPj0AAAAU5gd3DDcAAADUBwo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFKCshfv000/PuuuumxYtWqR9+/bZfvvt88Ybb5QzEgAAANSJshbuRx99NIMHD85TTz2Vv/3tb/n888+z+eabZ+bMmeWMBQAAAAusUTmf/P77769x/Yorrkj79u0zZsyY/OQnPylTKgAAAFhwZS3c/2vq1KlJkrZt287z9tmzZ2f27NnV16dNm7ZQcgEAAMD39YNZNG3u3Lk55JBD0q9fv6y66qrz3Ob0009Pq1atqi9dunRZyCkBAADgu/nBFO7Bgwfn5ZdfzvXXX/+12xx77LGZOnVq9WXChAkLMSEAAAB8dz+IXcoPPPDA3H333XnsscfSuXPnr92usrIylZWVCzEZAAAAzJ+yFu5SqZSDDjoot912Wx555JF07969nHEAAACgzpS1cA8ePDjXXntt7rjjjrRo0SIfffRRkqRVq1Zp2rRpOaMBAADAAinrMdwXXHBBpk6dmo022igdO3asvtxwww3ljAUAAAALrOy7lAMAAEB99INZpRwAAADqE4UbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAoQKNyBwBg0dHtmHvKHWGRM27oNuWOAACUiRluAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAApS1cD/22GMZOHBgOnXqlIqKitx+++3ljAMAAAB1pqyFe+bMmVl99dVz3nnnlTMGAAAA1LlG5XzyrbbaKltttVU5IwAAAEAhylq4v6/Zs2dn9uzZ1denTZtWxjQAAADw9RapRdNOP/30tGrVqvrSpUuXckcCAACAeVqkCvexxx6bqVOnVl8mTJhQ7kgAAAAwT4vULuWVlZWprKwsdwwAAAD4VovUDDcAAAAsKso6wz1jxoy8/fbb1dfHjh2b559/Pm3bts1yyy1XxmQAAACwYMpauJ999tlsvPHG1dcPO+ywJMmee+6ZK664okypAAAAYMGVtXBvtNFGKZVK5YwAAAAAhXAMNwAAABRA4QYAAIACLFKnBVvUdDvmnnJHWOSMG7pNuSMAAADUCTPcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAUQOEGAACAAijcAAAAUACFGwAAAAqgcAMAAEABFG4AAAAogMINAAAABVC4AQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAIo3AAAAFAAhRsAAAAKoHADAABAARRuAAAAKIDCDQAAAAVQuAEAAKAACjcAAAAU4AdRuM8777x069YtTZo0yXrrrZenn3663JEAAABggTQqd4Abbrghhx12WC688MKst956GTZsWLbYYou88cYbad++fbnjAQAALLBux9xT7giLnHFDtyl3hAVW9hnus846K7/+9a8zaNCgrLzyyrnwwguz5JJL5rLLLit3NAAAAJhvZZ3hnjNnTsaMGZNjjz22eqxBgwYZMGBARo8eXWv72bNnZ/bs2dXXp06dmiSZNm1a8WHnw9zZs8odYZHzQ/27/KHzWfv+fNbmj8/a9+ezNn981r4/n7X5s+qJI8sdYZHz8slblDvCIsnvte/vh/p77atcpVLpW7cta+H+5JNPUlVVlQ4dOtQY79ChQ15//fVa259++uk5+eSTa4136dKlsIwsXK2GlTsBiwufNRYWnzUWFp81FhafNRaWH/pnbfr06WnVqtU3blP2Y7i/j2OPPTaHHXZY9fW5c+dm8uTJWWqppVJRUVHGZIuWadOmpUuXLpkwYUJatmxZ7jjUYz5rLCw+aywsPmssLD5rLCw+a99fqVTK9OnT06lTp2/dtqyFe+mll07Dhg3z8ccf1xj/+OOPs8wyy9TavrKyMpWVlTXGWrduXWTEeq1ly5Z+qFgofNZYWHzWWFh81lhYfNZYWHzWvp9vm9n+SlkXTWvcuHHWXnvtPPjgg9Vjc+fOzYMPPpgf//jHZUwGAAAAC6bsu5Qfdthh2XPPPbPOOuukT58+GTZsWGbOnJlBgwaVOxoAAADMt7IX7l133TX//ve/c8IJJ+Sjjz7KGmuskfvvv7/WQmrUncrKypx44om1ds+HuuazxsLis8bC4rPGwuKzxsLis1asitJ3WcscAAAA+F7Kegw3AAAA1FcKNwAAABRA4QYAAIACKNwAAABQAIUbqDObbLJJpkyZUmt82rRp2WSTTRZ+IAAAKCOrlC9G5syZk4kTJ2bu3Lk1xpdbbrkyJaK+adCgQT766KO0b9++xvjEiROz7LLL5vPPPy9TMgAAWPjKfh5uivfWW29l7733zpNPPlljvFQqpaKiIlVVVWVKRn3x4osvVv/51VdfzUcffVR9vaqqKvfff3+WXXbZckSjnnv11Vczfvz4zJkzp8b4dtttV6ZE1EdTpkzJpZdemtdeey1Jssoqq2TvvfdOq1atypyM+uyzzz6r9butZcuWZUoDzC8z3IuBfv36pVGjRjnmmGPSsWPHVFRU1Lh99dVXL1My6osGDRpUf67m9SuladOm+ctf/pK99957YUejnnr33Xezww475KWXXkpFRUX15+6rz6EvEqkrzz77bLbYYos0bdo0ffr0SZI888wz+fTTTzNq1KistdZaZU5IfTJr1qwcddRRufHGGzNp0qRat/vdxoL47wmSb7PaaqsVmGTxonAvBpo1a5YxY8ZkxRVXLHcU6qn33nsvpVIpPXr0yNNPP5127dpV39a4ceO0b98+DRs2LGNC6puBAwemYcOGueSSS9K9e/c8/fTTmTRpUg4//PCceeaZ2XDDDcsdkXpiww03TM+ePXPxxRenUaMvdwz84osvsu++++bdd9/NY489VuaE1CeDBw/Oww8/nFNOOSV77LFHzjvvvLz//vu56KKLMnTo0Oy+++7ljsgi7KsJkq+rf1/dZg/YuqVwLwbWXXfdnH322dlggw3KHQWgTiy99NJ56KGHstpqq6VVq1Z5+umns8IKK+Shhx7K4Ycfnn/+85/ljkg90bRp0/zzn/+s9aX1q6++mnXWWSezZs0qUzLqo+WWWy5XXXVVNtpoo7Rs2TLPPfdcevbsmauvvjrXXXdd7r333nJHZBH23nvvfedtu3btWmCSxYtVyhcDf/zjH3PUUUflkUceyaRJkzJt2rQaF6grV155Ze65557q60cddVRat26dvn37fq9f8vBtqqqq0qJFiyRflu8PPvggyZf/QXjjjTfKGY16pmXLlhk/fnyt8QkTJlR/BqGuTJ48OT169Ejy5Wdv8uTJSZINNtjA3hQssK5du37nC3XHommLgQEDBiRJNt100xrjdhmhrp122mm54IILkiSjR4/O8OHDM2zYsNx999059NBDc+utt5Y5IfXFqquumhdeeCHdu3fPeuutlzPOOCONGzfOiBEjqv+zCnVh1113zT777JMzzzwzffv2TZI88cQTOfLII7PbbruVOR31TY8ePTJ27Ngst9xyWXHFFXPjjTemT58+ueuuu9K6detyx6Mesvho8RTuxcDDDz9c7ggsJiZMmJCePXsmSW6//fbsvPPO+c1vfpN+/fplo402Km846pXjjz8+M2fOTJL8/ve/z7bbbpsNN9wwSy21VG644YYyp6M+OfPMM1NRUZFf/epX+eKLL5IkSyyxRPbff/8MHTq0zOmobwYNGpQXXngh/fv3zzHHHJOBAwdm+PDh+fzzz3PWWWeVOx71iMVHFx7HcAN1pn379hk5cmTWXHPNrLnmmjnssMOyxx575J133snqq6+eGTNmlDsi9djkyZPTpk2bWmdigLowa9asvPPOO0mS5ZdfPksuuWSZE7E4GDduXPVx3FaNpi5ZfHThMcO9mHAOURaGzTbbLPvuu2/WXHPNvPnmm9l6662TJK+88kq6detW3nDUe23bti13BOqxJZdcMr179y53DBYz3bp18+8nhRg9enQeeuihLL300mnQoEEaNGiQDTbYIKeffnqGDBli8dE6pHAvBuZ1DtGzzjorp556qnOIUqfOO++8HH/88ZkwYUJuueWWLLXUUkmSMWPGONaROrXDDjvMcya7oqIiTZo0Sc+ePfOLX/wiK6ywQhnSsajbcccdv/O21qagrj344IM5++yzqydJVlpppRxyyCHVa/JAXZjX4qMrrLCCxUcLYJfyxYBziAL1zV577ZXbb789rVu3ztprr50kee655zJlypRsvvnmeeGFFzJu3Lg8+OCD6devX5nTsqgZNGhQ9Z9LpVJuu+22tGrVKuuss06SL79EnDJlSnbcccdcfvnl5YpJPXT++efn4IMPzs4775wf//jHSZKnnnoqN998c84+++wMHjy4zAmpLzbccMMcfvjh2X777fOLX/wi//nPf3L88cdnxIgRGTNmTF5++eVyR6w3FO7FgHOIsjD9/e9/z0UXXZR33303N910U5ZddtlcffXV6d69u3PBU2eOOeaYTJs2LcOHD0+DBl+e4XLu3Lk5+OCD06JFi5x66qn57W9/m1deeSWPP/54mdOyKDv66KMzefLkXHjhhWnYsGGSL2eGDjjggLRs2TJ/+tOfypyQ+qRz58455phjcuCBB9YYP++883Laaafl/fffL1My6puRI0dm5syZ2XHHHfP2229n2223zZtvvlm9+Ogmm2xS7oj1hsK9GOjQoUOuvvrqbL755jXGR44cmV/96lf5+OOPy5SM+uaWW27JHnvskd133z1XX311Xn311fTo0SPDhw/Pvffem3vvvbfcEakn2rVrlyeeeCI/+tGPaoy/+eab6du3bz755JO89NJL2XDDDTNlypTyhKReaNeuXR5//PFahye88cYb6du3byZNmlSmZNRHzZs3z/PPP199xo+vvPXWW1lzzTUtPkqhLD5ajAblDkDxvjqH6A033JAJEyZkwoQJuf7667Pvvvs6rpY69Yc//CEXXnhhLr744iyxxBLV4/369ctzzz1XxmTUN1988UVef/31WuOvv/569alMmjRp4j8NLLBv+qzNnTu3DImoz7bbbrvcdttttcbvuOOObLvttmVIxOKkbdu2/t0sgEXTFgPOIcrC8sYbb+QnP/lJrfFWrVqZZaRO7bHHHtlnn33yf//3f1l33XWTJM8880xOO+20/OpXv0qSPProo1lllVXKGZN6YNCgQdlnn33yzjvvVC88+o9//CNDhw6tcaw31IWVV145p556ah555JEax3A/8cQTOfzww3PuuedWbztkyJByxaQemDlzZoYOHZoHH3wwEydOrPUF4rvvvlumZPWPXcoXI84hStF69OiRESNGZMCAAWnRokVeeOGF9OjRI1dddVWGDh2aV199tdwRqSeqqqoydOjQDB8+vPqwmA4dOuSggw7K0UcfnYYNG2b8+PFp0KBBOnfuXOa0LMrmzp2bM888M+ecc04+/PDDJEnHjh1z8MEH5/DDD68+rhvqQvfu3b/TdhUVFQoRC2S33XbLo48+mj322CMdO3asNbN98MEHlylZ/aNwLwauuuqqrLvuullppZVqjH/22We58cYbq2eDYEGdfvrpueaaa3LZZZdls802y7333pv33nsvhx56aH73u9/loIMOKndE6qFp06YlSVq2bFnmJNR3PmtAfdG6devcc889zuSxECjci4EGDRqkWbNmueKKK7LTTjtVj3/88cfp1KlT9fGOsKBKpVJOO+20nH766dWr31dWVuaII47IKaecUuZ0AAAkX+5Nce+999aakKPuKdyLgQYNGuTMM8/M8ccfn6OOOionnXRSEoWbulVVVZUnnngiq622WpZccsm8/fbbmTFjRlZeeeU0b9683PGoZz7++OMcccQR1cee/e8/ZX6vUZduvvnm3HjjjRk/fnzmzJlT4zYLQlKXSqVSbr755jz88MPzPK721ltvLVMy6ptrrrkmd9xxR6688kqHmRbMommLiV/+8pfp27dvdthhh7z88su5+uqryx2JeqZhw4bZfPPN89prr6V169ZZeeWVyx2JemyvvfbK+PHj87vf/W6ex55BXTn33HNz3HHHZa+99sodd9yRQYMG5Z133skzzzyTwYMHlzse9cwhhxySiy66KBtvvHE6dOjgdxuF+fOf/5x33nknHTp0SLdu3WqcXSbxZWJdUrgXA1/9sl5//fXzj3/8I9ttt1369u2bCy+8sMzJqG9WXXXVvPvuu9950ReYX48//nj+/ve/Z4011ih3FOq5888/PyNGjMhuu+2WK664IkcddVR69OiRE044IZMnTy53POqZq6++Orfeemu23nrrckehntt+++3LHWGxoXAvBv57V8vlllsuTz75ZHbfffdsttlmZUxFffSHP/yh+njttddeO82aNatxu4WGqCtdunSptRs5FGH8+PHp27dvkqRp06aZPn16ki9PTbf++utn+PDh5YxHPdOqVav06NGj3DFYDJx44onljrDYaFDuABTvxBNPrHEM7ZJLLpnbbrsthx566DzPmQzza+utt84LL7yQ7bbbLp07d06bNm3Spk2btG7dOm3atCl3POqRYcOG5Zhjjsm4cePKHYV6bplllqmeyV5uueXy1FNPJUnGjh3rSx/q3EknnZSTTz45n376abmjAHXEomlAnXn00Ue/8fb+/fsvpCTUd23atMmsWbPyxRdfZMkll6x17Jldfakr++67b7p06ZITTzwx5513Xo488sj069cvzz77bHbcccdceuml5Y5IPfLpp59mhx12yBNPPOG4WgpVVVWVs88++2sXhPTvaN2xS/li5NVXX631A1VRUZGBAweWMRX1iULNwjJs2LByR2AxMWLEiOqVogcPHpyllloqTz75ZLbbbrvst99+ZU5HfbPnnntmzJgx+eUvf2nRNAp18skn55JLLsnhhx+e448/Pscdd1zGjRuX22+/PSeccEK549UrZrgXA++++2522GGHvPTSS6moqKjeBe6rX+JOn0NdmjJlSi699NK89tprSZJVVlkle++9d1q1alXmZADfzxdffJHTTjste++9dzp37lzuOCwGmjVrlpEjR2aDDTYodxTqueWXXz7nnntuttlmm7Ro0SLPP/989dhTTz2Va6+9ttwR6w3HcC8GDj744HTv3j0TJ07MkksumVdeeSWPPfZY1llnnTzyyCPljkc98uyzz2b55ZfP2WefncmTJ2fy5Mk566yzsvzyy9sNjgU2bdq0Gn/+pgvUhUaNGuWMM87IF198Ue4oLCa6dOligVEWio8++ii9e/dOkjRv3jxTp05Nkmy77ba55557yhmt3lG4FwOjR4/O73//+yy99NJp0KBBGjRokA022CCnn356hgwZUu541COHHnpotttuu4wbNy633nprbr311owdOzbbbrttDjnkkHLHYxHXpk2bTJw4MUmqF+L734sF+qhrm2666beuTwF15c9//nOOOuooC0JSuM6dO+fDDz9M8uVs96hRo5IkzzzzTCorK8sZrd5xDPdioKqqKi1atEiSLL300vnggw+ywgorpGvXrnnjjTfKnI765Nlnn83FF1+cRo3+/6+WRo0a5aijjso666xTxmTUBw899FDatm2bJHn44YfLnIbFxVZbbZVjjjkmL7300jxPd7jddtuVKRn10S9/+cvMmjUryy+/vAUhKdQOO+yQBx98MOutt14OOuig/PKXv8yll16a8ePH59BDDy13vHpF4V4MrLrqqnnhhRfSvXv3rLfeejnjjDPSuHHjjBgxwrkeqVMtW7bM+PHjs+KKK9YYnzBhQvWXPjC//ntRvu7du6dLly61FhQqlUqZMGHCwo5GPXbAAQckSc4666xat1VUVFgHhTplQUgWlqFDh1b/edddd03Xrl3z5JNPplevXhZUrmMWTVsMjBw5MjNnzsyOO+6Yt99+O9tuu23efPPNLLXUUrnhhhuyySablDsi9cSQIUNy22235cwzz0zfvn2TJE888USOPPLI7LTTTv4jQZ1p2LBhPvzww7Rv377G+KRJk9K+fXslCAC+wWOPPZa+ffvW2Csx+XKxyCeffDI/+clPypSs/lG4F1OTJ09OmzZtnG6COjVnzpwceeSRufDCC6sXGVpiiSWy//77Z+jQoY4Jos40aNAgH3/8cdq1a1dj/L333svKK6+cmTNnlikZ9cnnn3+epk2b5vnnn8+qq65a7jgsZj777LNa50a2oBp1xRfXC49dyhdTXx0HCQvqxRdfzKqrrpoGDRqkcePGOeecc3L66afnnXfeSZLq49CgLhx22GFJvtyV93e/+12Nz1ZVVVX+8Y9/ZI011ihTOuqbJZZYIsstt5z/eLLQzJw5M0cffXRuvPHGTJo0qdbtPovUlVKpNM+Jt0mTJtVaq4IFo3AvBj777LP85S9/ycMPP5yJEydm7ty5NW53uiYWxJprrln9DWmPHj3yzDPPZKmllqo+1QTUpX/+859JvvyPwksvvZTGjRtX39a4ceOsvvrqOeKII8oVj3rouOOOy//93//l6quv9mU1hTvqqKPy8MMP54ILLsgee+yR8847L++//34uuuiiGsfcwvzacccdk3z5xfVee+1VY+/DqqqqvPjii9WHBVI3FO7FwD777JNRo0Zl5513Tp8+fexGTp1q3bp1xo4dm/bt22fcuHG1vtCBuvTV6uSDBg3KOeecY/dKCjd8+PC8/fbb6dSpU7p27Vpr5seX1tSlu+66K1dddVU22mijDBo0KBtuuGF69uyZrl275q9//Wt23333ckdkEdeqVaskX35x3aJFizRt2rT6tsaNG2f99dfPr3/963LFq5cU7sXA3XffnXvvvTf9+vUrdxTqoZ122in9+/dPx44dU1FRkXXWWScNGzac57bvvvvuQk5HfXX55ZeXOwKLie23377cEViMTJ48ufoMMi1btqw+DdgGG2yQ/fffv5zRqCe++vezW7duOeKII+w+vhAo3IuBZZdd1imZKMyIESOqV8AfMmRIfv3rX/u8sVA8++yzufHGGzN+/PhaCwvdeuutZUpFfXPiiSeWOwKLkR49emTs2LFZbrnlsuKKK+bGG29Mnz59ctddd6V169bljkc94nfbwmOV8sXAfffdl3PPPTcXXnhhunbtWu441GODBg3Kueeeq3BTuOuvvz6/+tWvssUWW2TUqFHZfPPN8+abb+bjjz/ODjvsYAacOjVlypTcfPPNeeedd3LkkUembdu2ee6559KhQ4csu+yy5Y5HPXL22WenYcOGGTJkSB544IEMHDgwpVIpn3/+ec4666wcfPDB5Y5IPfHxxx/niCOOyIMPPpiJEyfmfyuhBfrqjhnuxcA666yTzz77LD169MiSSy6ZJZZYosbtX+2uBAtKyWFhOe2003L22Wdn8ODBadGiRc4555x07949++23Xzp27FjueNQjL774YgYMGJBWrVpl3Lhx+fWvf522bdvm1ltvzfjx43PVVVeVOyL1wNy5c/OnP/0pd955Z+bMmZMPPvggJ554Yl5//fWMGTMmPXv2zGqrrVbumNQje+21V8aPH5/f/e531YcFUgwz3IuBAQMGZPz48dlnn33SoUOHWj9Qe+65Z5mSUd/MnDkzQ4cOrf629H8XUHMMN3WlWbNmeeWVV9KtW7cstdRSeeSRR9K7d++89tpr2WSTTfLhhx+WOyL1xIABA7LWWmvljDPOSIsWLfLCCy+kR48eefLJJ/OLX/wi48aNK3dE6oFTTjklJ510UgYMGJCmTZtm5MiR2W233XLZZZeVOxr1VIsWLfL3v//dqTQXAjPci4Enn3wyo0ePzuqrr17uKNRz++67bx599NHssccevi2lUG3atMn06dOTfLlOxcsvv5zevXtnypQpmTVrVpnTUZ8888wzueiii2qNL7vssvnoo4/KkIj66Kqrrsr555+f/fbbL0nywAMPZJtttskll1ySBg0alDkd9VGXLl1q7UZOMRTuxcCKK66YTz/9tNwxWAzcd999ueeee6yIT+F+8pOf5G9/+1t69+6dXXbZJQcffHAeeuih/O1vf8umm25a7njUI5WVlZk2bVqt8TfffDPt2rUrQyLqo/Hjx2frrbeuvj5gwIBUVFTkgw8+SOfOncuYjPpq2LBhOeaYY3LRRRelW7du5Y5Tr9mlfDEwatSonHzyyTn11FPTu3fvWsdwO48tdaV79+659957s9JKK5U7CvXc5MmT89lnn6VTp06ZO3duzjjjjDz55JPp1atXjj/++LRp06bcEakn9t1330yaNCk33nhj2rZtmxdffDENGzbM9ttvn5/85CcZNmxYuSNSDzRs2DAfffRRjS9xWrRokRdffDHdu3cvYzLqqzZt2mTWrFn54osvrPFUMIV7MfDVrkj/u3tvqVRKRUWFVQipM9dcc03uuOOOXHnllVlyySXLHQdggU2dOjU777xznn322UyfPj2dOnXKRx99lPXXXz/33Xefc9hSJxo0aJCtttoqlZWV1WN33XVXNtlkkxqfMac8pK5ceeWV33i7NZ7qjsK9GHj00Ue/9raXXnopBx544EJMQ3225ppr5p133kmpVEq3bt1qfVv63HPPlSkZ9dlnn31W6zzc9tyhrj3xxBN54YUXMmPGjKy11loZMGBAuSNRjwwaNOg7bedsILDoUbgXQ9OnT891112XSy65JGPGjDHDTZ05+eSTv/H2E088cSElob6bNWtWjjrqqNx4442ZNGlSrdv9XmNBPfTQQznwwAPz1FNP1foCZ+rUqenbt28uvPDCbLjhhmVKCFA3fHFdLIV7MfLYY4/l0ksvzS233JJOnTplxx13zE477ZR111233NEAvpfBgwfn4YcfzimnnJI99tgj5513Xt5///1cdNFFGTp0aHbfffdyR2QRt91222XjjTfOoYceOs/bzz333Dz88MO57bbbFnIygAU3c+bMHH300b64XgicZ6Ce++ijjzJ06ND06tUru+yyS1q2bJnZs2fn9ttvz9ChQ5VtYJF011135fzzz89OO+2URo0aZcMNN8zxxx+f0047LX/961/LHY964IUXXsiWW275tbdvvvnmGTNmzEJMBFB3jjrqqDz00EO54IILUllZmUsuuSQnn3xyOnXqlKuuuqrc8eoVhbseGzhwYFZYYYW8+OKLGTZsWD744IP85S9/KXcs6pm2bdvmk08+SfLlipdt27b92gvUlcmTJ6dHjx5Jvtzt7avVVDfYYIM89thj5YxGPfHxxx/XWofivzVq1Cj//ve/F2IigLrji+uFx3m467H77rsvQ4YMyf77759evXqVOw711Nlnn50WLVokidPjsND06NEjY8eOzXLLLZcVV1wxN954Y/r06ZO77rorrVu3Lnc86oFll102L7/8cnr27DnP21988cV07NhxIacCqBvf9MX1/vvvX85o9Y7CXY89/vjjufTSS7P22mtnpZVWyh577JGf//zn5Y5FPfPfp41wCgkWlkGDBuWFF15I//79c8wxx2TgwIEZPnx45syZk7PPPrvc8agHtt566/zud7/LlltumSZNmtS47dNPP82JJ56YbbfdtkzpABaML64XHoumLQZmzpyZG264IZdddlmefvrpVFVV5ayzzsree+9dPTMJdc2KlyxM7733XsaMGZNevXqld+/e5Y5DPfDxxx9nrbXWSsOGDXPggQdmhRVWSJK8/vrrOe+881JVVZXnnnsuHTp0KHNSgO/v7LPPTsOGDTNkyJA88MADGThwYEqlUj7//POcddZZOfjgg8sdsd5QuBczb7zxRi699NJcffXVmTJlSjbbbLPceeed5Y5FPWHFS4rmVE0sTO+9917233//jBw5Ml/9d6mioiJbbLFFzjvvvHTv3r3MCQG+n7lz5+ZPf/pT7rzzzsyZMyebbrppTjzxxEycODFjxoxJz549s9pqq5U7Zr2icC+mqqqqctddd+Wyyy5TuKkzTtVE0ZyqiXL4z3/+k7fffjulUim9evVKmzZtyh0JYL6ccsopOemkkzJgwIA0bdo0I0eOzG677ZbLLrus3NHqLYUbqDPLLbdcrrrqqmy00UZp2bJlnnvuufTs2TNXX311rrvuutx7773ljsgirmvXrrn//vuz0korzfP2119/PZtvvnnGjx+/kJMBwA9fr169csQRR2S//fZLkjzwwAPZZptt8umnn6ZBAyewKoJ3FagzTtVE0ZyqCQDm3/jx47P11ltXXx8wYEAqKirywQcflDFV/aZwA3XmqxUvk1SveJnEipfUma9O1fR1nKoJAL7eF198UevMC0sssUQ+//zzMiWq/+xSDtQZK15StIMOOiiPPPJInnnmmXmeqqlPnz7ZeOONc+6555YpIQD8cDVo0CBbbbVVKisrq8fuuuuubLLJJmnWrFn12K233lqOePWSwg0U5qtTNVnxkrriVE0AMP8GDRr0nba7/PLLC06y+FC4gYXi5ptvzs4771zuGNQDTtUEACwqFG6gTnzxxRd5/fXX07hx4/zoRz+qHr/jjjtywgkn5PXXX8/s2bPLmJD6xqmaAIAfOoumAQvs5ZdfTs+ePbP66qtnpZVWyo477piPP/44/fv3z957752tttoq77zzTrljUs+0adMm6667bvr06aNsAwA/SGa4gQW2zTbbZPbs2TnkkENy3XXX5brrrssKK6yQffbZJ4MHD07Tpk3LHREAABY6hRtYYO3bt8+oUaOyxhprZOrUqWnTpk2uvPLK7LHHHuWOBgAAZWOXcmCBffLJJ+nUqVOSpFWrVmnWrFnWX3/9MqcCAIDyalTuAMCir6KiItOnT0+TJk1SKpVSUVGRTz/9NNOmTauxXcuWLcuUEAAAFj67lAMLrEGDBqmoqKi+/lXp/t/rVVVV5YgHAABlYYYbWGAPP/xwuSMAAMAPjhluAAAAKIBF0wAAAKAACjcAAAAUQOEGAACAAijcAAAAUACFG6gzU6dOzeTJk2uNT548udY5uQEAoL5TuIE68/Of/zzXX399rfEbb7wxP//5z8uQCAAAysdpwYA607Zt2zzxxBNZaaWVaoy//vrr6devXyZNmlSmZAAAsPCZ4QbqzOzZs/PFF1/UGv/888/z6aefliERAACUj8IN1Jk+ffpkxIgRtcYvvPDCrL322mVIBAAA5dOo3AGA+uMPf/hDBgwYkBdeeCGbbrppkuTBBx/MM888k1GjRpU5HQAALFyO4Qbq1PPPP58//elPef7559O0adOsttpqOfbYY9OrV69yRwMAgIVK4QYAAIAC2KUcWCDTpk1Ly5Ytq//8Tb7aDgAAFgdmuIEF0rBhw3z44Ydp3759GjRokIqKilrblEqlVFRUpKqqqgwJAQCgPMxwAwvkoYceStu2bZMkDz/8cJnTAADAD4cZbqDOjB8/Pl26dKk1y10qlTJhwoQst9xyZUoGAAALn8IN1Jn/3r38v02aNCnt27e3SzkAAIuVBuUOANQfXx2r/b9mzJiRJk2alCERAACUj2O4gQV22GGHJUkqKiryu9/9LksuuWT1bVVVVfnHP/6RNdZYo0zpAACgPBRuYIH985//TPLlDPdLL72Uxo0bV9/WuHHjrL766jniiCPKFQ8AAMrCMdxAnRk0aFDOOecc59sGAIAo3AAAAFAIu5QDdWbmzJkZOnRoHnzwwUycODFz586tcfu7775bpmQAALDwKdxAndl3333z6KOPZo899kjHjh3nuWI5AAAsLuxSDtSZ1q1b55577km/fv3KHQUAAMrOebiBOtOmTZu0bdu23DEAAOAHQeEG6swpp5ySE044IbNmzSp3FAAAKDu7lAN1Zs0118w777yTUqmUbt26ZYkllqhx+3PPPVemZAAAsPBZNA2oM9tvv325IwAAwA+GGW4AAAAogGO4AQAAoAB2KQfqTFVVVc4+++zceOONGT9+fObMmVPj9smTJ5cpGQAALHxmuIE6c/LJJ+ess87KrrvumqlTp+awww7LjjvumAYNGuSkk04qdzwAAFioHMMN1Jnll18+5557brbZZpu0aNEizz//fPXYU089lWuvvbbcEQEAYKExww3UmY8++ii9e/dOkjRv3jxTp05Nkmy77ba55557yhkNAAAWOoUbqDOdO3fOhx9+mOTL2e5Ro0YlSZ555plUVlaWMxoAACx0CjdQZ3bYYYc8+OCDSZKDDjoov/vd79KrV6/86le/yt57713mdAAAsHA5hhsozOjRozN69Oj06tUrAwcOLHccAABYqBRuAAAAKIDzcAML5M477/zO22633XYFJgEAgB8WM9zAAmnQ4LstBVFRUZGqqqqC0wAAwA+Hwg0AAAAFsEo5UGeuuuqqzJ49u9b4nDlzctVVV5UhEQAAlI8ZbqDONGzYMB9++GHat29fY3zSpElp3769XcoBAFismOEG6kypVEpFRUWt8X/9619p1apVGRIBAED5WKUcWGBrrrlmKioqUlFRkU033TSNGv3/Xy1VVVUZO3ZsttxyyzImBACAhU/hBhbY9ttvnyR5/vnns8UWW6R58+bVtzVu3DjdunXLTjvtVKZ0AABQHo7hBurMlVdemV133TVNmjSpddvLL7+cVVddtQypAACgPBRuoDDTp0/Pddddl0suuSRjxoyxaBoAAIsVi6YBde6xxx7LnnvumY4dO+bMM8/MJptskqeeeqrcsQAAYKFyDDdQJz766KNcccUVufTSSzNt2rT87Gc/y+zZs3P77bdn5ZVXLnc8AABY6MxwAwts4MCBWWGFFfLiiy9m2LBh+eCDD/KXv/yl3LEAAKCszHADC+y+++7LkCFDsv/++6dXr17ljgMAAD8IZriBBfb4449n+vTpWXvttbPeeutl+PDh+eSTT8odCwAAysoq5UCdmTlzZm644YZcdtllefrpp1NVVZWzzjore++9d1q0aFHueAAAsFAp3EAh3njjjVx66aW5+uqrM2XKlGy22Wa58847yx0LAAAWGoUbKFRVVVXuuuuuXHbZZQo3AACLFYUbAAAACmDRNAAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBoBF1Lhx41JRUZHnn3++3FEAgHlQuAHgB2qvvfZKRUVF9WWppZbKlltumRdffDFJ0qVLl3z44YdZddVVy5wUAJgXhRsAfsC23HLLfPjhh/nwww/z4IMPplGjRtl2222TJA0bNswyyyyTRo0alTklADAvCjcA/IBVVlZmmWWWyTLLLJM11lgjxxxzTCZMmJB///vf89yl/NFHH02fPn1SWVmZjh075phjjskXX3xRfftGG22Ugw46KIccckjatGmTDh065OKLL87MmTMzaNCgtGjRIj179sx9991XfZ+qqqrss88+6d69e5o2bZoVVlgh55xzTo2cjzzySPr06ZNmzZqldevW6devX957773C3x8A+CFTuAFgETFjxoxcc8016dmzZ5Zaaqlat7///vvZeuuts+666+aFF17IBRdckEsvvTR/+MMfamx35ZVXZumll87TTz+dgw46KPvvv3922WWX9O3bN88991w233zz7LHHHpk1a1aSZO7cuencuXNuuummvPrqqznhhBPyf//3f7nxxhuTJF988UW233779O/fPy+++GJGjx6d3/zmN6moqCj+TQGAH7CKUqlUKncIAKC2vfbaK9dcc02aNGmSJJk5c2Y6duyYu+++O2uttVbGjRuX7t2755///GfWWGONHHfccbnlllvy2muvVZfd888/P0cffXSmTp2aBg0aZKONNkpVVVX+/ve/J/ly9rpVq1bZcccdc9VVVyVJPvroo3Ts2DGjR4/O+uuvP89sBx54YD766KPcfPPNmTx5cpZaaqk88sgj6d+//0J4ZwBg0WCGGwB+wDbeeOM8//zzef755/P0009niy22yFZbbTXP3bVfe+21/PjHP64xs9yvX7/MmDEj//rXv6rHVlttteo/N2zYMEsttVR69+5dPdahQ4ckycSJE6vHzjvvvKy99tpp165dmjdvnhEjRmT8+PFJkrZt22avvfbKFltskYEDB+acc87Jhx9+WHdvAgAsohRuAPgBa9asWXr27JmePXtm3XXXzSWXXJKZM2fm4osvnu/HXGKJJWpcr6ioqDH2VWGfO3dukuT666/PEUcckX322SejRo3K888/n0GDBmXOnDnV97n88sszevTo9O3bNzfccEN+9KMf5amnnprvjABQHyjcALAIqaioSIMGDfLpp5/Wum2llVbK6NGj899Hiz3xxBNp0aJFOnfuPN/P+cQTT6Rv37454IADsuaaa6Znz5555513am235ppr5thjj82TTz6ZVVddNddee+18PycA1AcKNwD8gM2ePTsfffRRPvroo7z22ms56KCDMmPGjAwcOLDWtgcccEAmTJiQgw46KK+//nruuOOOnHjiiTnssMPSoMH8/5Pfq1evPPvssxk5cmTefPPN/O53v8szzzxTffvYsWNz7LHHZvTo0XnvvfcyatSovPXWW1lppZXm+zkBoD5w4k4A+AG7//7707FjxyRJixYtsuKKK+amm27KRhttlHHjxtXYdtlll829996bI488Mquvvnratm2bffbZJ8cff/wCZdhvv/3yz3/+M7vuumsqKiqy22675YADDqg+ddiSSy6Z119/PVdeeWUmTZqUjh07ZvDgwdlvv/0W6HkBYFFnlXIAAAAogF3KAQAAoAAKNwAAABRA4QYAAIACKNwAAABQAIUbAAAACqBwAwAAQAEUbgAAACiAwg0AAAAFULgBAACgAAo3AAAAFEDhBgAAgAL8P80mBr9xscQxAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"bioma\"])[\"casos_dengue\"].sum().plot(kind='bar')\n",
+ "plt.title(\"Casos de Dengue nos Biomas do Brasil\")\n",
+ "plt.xlabel(\"Biomas\")\n",
+ "plt.ylabel(\"Casos\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "A área do bioma com mais casos, Mata Atlântica, abrange a costa leste, sudeste e sul do Brasil. Aonde estão localizadas as regiões com maior número de casos (Sudeste e Nordeste) e também é na Região da Mata Atlântica que vivem cerca de 70% da população brasileira, representando mais de 120 milhões de pessoas."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 26,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Porcentagem da População com acesso a água encanada')"
+ ]
+ },
+ "execution_count": 26,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+kAAANACAYAAABXLixZAAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAD1HklEQVR4nOzdeXhMZ+PG8XsS2YgktsQWxPJaaqfW2reitHRRXRC0tLaiirbWtraWoqVKi7Y/LYqiVftSre1FbFVLEaJqV2IPyfP7w2XejoTGySQ5Nd/Pdc1VeebMmTvJzDT3PM+c4zDGGAEAAAAAgHTnld4BAAAAAADALZR0AAAAAABsgpIOAAAAAIBNUNIBAAAAALAJSjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm6CkAwAAuMFnn32myZMnp3cMAMC/HCUdAB5gtWvXVu3atdM7hg4fPiyHw6Hp06end5RU5XA4NHjwYOfX06dPl8Ph0OHDh9MtE9LGrFmz1LNnTz388MPpHQX3oUCBAmrXrl16xwAAF5R0ALDgdvm622Xjxo3J3tdvv/2mwYMHU+Tuw+3S//dLUFCQypYtq48//ljx8fHpHfFf6ZlnnpHD4VDfvn3TO8q/ysGDB/Xqq6/q22+/Vbly5dI7DgDgXy5DegcAgH+zoUOHKiIiItF44cKFk72P3377TUOGDFHt2rVVoEABN6Z78LVu3VpNmjSRJF24cEE//vijunXrpiNHjuj9999P8zxXr15Vhgz/zv+1xsbG6vvvv1eBAgX0zTffaMSIEXI4HOkd619hx44dmjZtmh599NH0jgIAeAD8O/+SAACbaNy4sSpWrJjeMTxW+fLl9cILLzi/fvXVV1W5cmV9/fXX9yzpxhhdu3ZNAQEBbs3j7+/v1v2lpblz5yo+Pl5Tp05V3bp1tXbtWtWqVSu9Y/0rtGzZMr0jAAAeICx3B4BUNnPmTFWoUEGZM2dWUFCQSpUqpXHjxkm6tWz+6aefliTVqVPHuXR7zZo1kqQFCxaoadOmyp07t/z8/FSoUCG98847SS7nnjx5sgoVKqSAgABVqlRJP//8c5J5Tp06pQ4dOigsLEz+/v4qU6aMvvjii/vKfS/nz59Xu3btFBwcrJCQELVt21bnz59PcttVq1apRo0aypQpk0JCQvT4449rz549/3gfd+NwOBQWFpZoNrtAgQJ67LHHtHTpUlWsWFEBAQH69NNPJUnTpk1T3bp1FRoaKj8/P5UoUUKffPJJon1v2bJFjRo1Uvbs2RUQEKCIiAi1b98+0f3//TPp92Pv3r166qmnlDVrVvn7+6tixYpauHBhsm57+fJl9e7dW+Hh4fLz81PRokX1wQcfyBiT7PufMWOGGjRooDp16qh48eKaMWPGXXM+88wzypEjhwICAlS0aFG99dZbLtscO3ZM7du3V1hYmPz8/PTQQw9p6tSpifb10Ucf6aGHHlLGjBmVJUsWVaxYUV9//bXz+osXL+q1115TgQIF5Ofnp9DQUDVo0EBRUVEu+/n2229VoUIFBQQEKHv27HrhhRd07Nixf/yez507p9dff12lSpVSYGCggoKC1LhxY+3YsSM5P7JkP3YSEhI0ePBg5c6dWxkzZlSdOnX022+/Jfo89ODBg5NcvZDUsQ3u57UhKcn5Ha1Zs0YOh0OzZ8/We++9p7x588rf31/16tXTgQMHEu1z06ZNatKkibJkyaJMmTKpdOnSLq8ZO3fuVLt27VSwYEH5+/srZ86cat++vc6ePeuyn9s/hwMHDqhdu3YKCQlRcHCwIiMjdeXKFZdtk/s7MMbo3XffVd68eZ2/g927dyfaLqWPCQBwB2bSASAFLly4oDNnzriMORwOZcuWTZK0fPlytW7dWvXq1dPIkSMlSXv27NG6devUo0cP1axZU927d9f48eP15ptvqnjx4pLk/O/06dMVGBioXr16KTAwUKtWrdLAgQMVGxvrMlP8+eefq1OnTqpWrZpee+01HTp0SM2bN1fWrFkVHh7u3O7q1auqXbu2Dhw4oK5duyoiIkLffvut2rVrp/Pnz6tHjx7Jyn03xhg9/vjj+uWXX9S5c2cVL15c3333ndq2bZto2xUrVqhx48YqWLCgBg8erKtXr+qjjz5S9erVFRUVlayl/1euXHH+/GNjY7V48WItWbJE/fv3T7Ttvn371Lp1a3Xq1EkvvfSSihYtKkn65JNP9NBDD6l58+bKkCGDvv/+e7366qtKSEhQly5dJN16Y6Nhw4bKkSOH+vXrp5CQEB0+fFjz5s37x4zJsXv3blWvXl158uRRv379lClTJs2ePVtPPPGE5s6dqxYtWtz1tsYYNW/eXKtXr1aHDh1UtmxZLV26VH369NGxY8f04Ycf/uP9//nnn1q9erXzzZrWrVvrww8/1McffyxfX1/ndjt37lSNGjXk4+Ojl19+WQUKFNDBgwf1/fff67333pMknTx5UlWqVJHD4VDXrl2VI0cOLV68WB06dFBsbKxee+01SdKUKVPUvXt3PfXUU+rRo4euXbumnTt3atOmTXruueckSZ07d9acOXPUtWtXlShRQmfPntUvv/yiPXv2qHz58pJuPUciIyP18MMPa/jw4Tp58qTGjRundevWadu2bQoJCbnr933o0CHNnz9fTz/9tCIiInTy5El9+umnqlWrln777Tflzp37nj+3iRMnqmTJks7HzoIFCxI9diSpf//+GjVqlJo1a6ZGjRppx44datSoka5du/aPv5u7Se5rQ1KS+zu6bcSIEfLy8tLrr7+uCxcuaNSoUXr++ee1adMm5zbLly/XY489ply5cqlHjx7KmTOn9uzZox9++MHldeXQoUOKjIxUzpw5tXv3bk2ePFm7d+/Wxo0bE71B8cwzzygiIkLDhw9XVFSUPvvsM4WGhjpfk6TkPX8laeDAgXr33XfVpEkTNWnSRFFRUWrYsKHi4uJc7jOljwkAcAsDALhv06ZNM5KSvPj5+Tm369GjhwkKCjI3b968676+/fZbI8msXr060XVXrlxJNNapUyeTMWNGc+3aNWOMMXFxcSY0NNSULVvWXL9+3bnd5MmTjSRTq1Yt59jYsWONJPN///d/zrG4uDhTtWpVExgYaGJjY5OdOynz5883ksyoUaOcYzdv3jQ1atQwksy0adOc42XLljWhoaHm7NmzzrEdO3YYLy8v06ZNm3veT3R09F1//q+88opJSEhw2T5//vxGklmyZEmifSX1M27UqJEpWLCg8+vvvvvOSDKbN2++Zy5JZtCgQc6vbz9OoqOj73m7evXqmVKlSjl/p8YYk5CQYKpVq2aKFClyz9ve/pm/++67LuNPPfWUcTgc5sCBA/e8vTHGfPDBByYgIMD5+9+/f7+RZL777juX7WrWrGkyZ85sjhw54jL+9593hw4dTK5cucyZM2dctnn22WdNcHCw8+f9+OOPm4ceeuieuYKDg02XLl3uev3tx37JkiXN1atXneM//PCDkWQGDhx4z/1fu3bNxMfHu4xFR0cbPz8/M3To0Hve1hhjLl26lGisQYMGLo+dEydOmAwZMpgnnnjCZbvBgwcbSaZt27bOsUGDBpmk/jRL6nGUnNeGu0nu72j16tVGkilevLjLa8u4ceOMJLNr1y5jzK3neEREhMmfP7/566+/XPb598dGUpm/+eYbI8msXbvWOXb759C+fXuXbVu0aGGyZcvmMpac5++pU6eMr6+vadq0qUueN998M9HvIKWPCQBwB5a7A0AKTJgwQcuXL3e5LF682Hl9SEiILl++rOXLl1va/98/M33x4kWdOXNGNWrU0JUrV7R3715Jt5Zhnzp1Sp07d3aZ9by95PzvfvzxR+XMmVOtW7d2jvn4+Kh79+66dOmSfvrppxTl/vHHH5UhQwa98sorzjFvb29169bNZbvjx49r+/btateunbJmzeocL126tBo0aKAff/wxWff38ssvO3/uc+fOVZcuXfTpp5+qV69eibaNiIhQo0aNEo3//Wd8e2VErVq1dOjQIV24cEGSnLOxP/zwg27cuJGsbMl17tw5rVq1Ss8884zzd3zmzBmdPXtWjRo10u+//37Ppds//vijvL291b17d5fx3r17yxjj8ni8mxkzZqhp06bKnDmzJKlIkSKqUKGCy5L306dPa+3atWrfvr3y5cvncvvbM6DGGM2dO1fNmjWTMcb5vZw5c0aNGjXShQsXnEvVQ0JC9Mcff2jz5s13zRUSEqJNmzbpzz//TPL624/9V1991eV4AE2bNlWxYsW0aNGie37ffn5+8vK69adQfHy8zp49q8DAQBUtWjTRkvqkZMqUyfnvmzdv6tq1a3r00UddHjsrV67UzZs39eqrr7rc9s7nxP1KzmtDUu7nd3RbZGSky2tLjRo1JN2adZakbdu2KTo6Wq+99lqilQt/nx3/e+Zr167pzJkzqlKliiQl+fPu3Lmzy9c1atTQ2bNnFRsbm+Q+7/b8XbFiheLi4tStWzeXPHeuGJBS/pgAAHdguTsApEClSpXueeC4V199VbNnz1bjxo2VJ08eNWzYUM8880yyjwK9e/duvf3221q1apXLH6aSnH+AHjlyRNKtYvV3Pj4+KliwoMvYkSNHVKRIEecfobfdXl5/e19Wcx85ckS5cuVSYGCgy/jtpeV/3y6p8dtZli5dqsuXL7uUoKQUKVJE9evXd37dsmVLORwOjR07Vu3bt1epUqWc1yV1FH5JWrdunQYNGqQNGzYk+rzrhQsXFBwcrFq1aunJJ5/UkCFD9OGHH6p27dp64okn9Nxzz8nPz++eGf/JgQMHZIzRgAEDNGDAgCS3OXXqlPLkyZPkdUeOHFHu3LmdBfu2O3+nd7Nnzx5t27ZNbdq0cfmcce3atTVhwgTFxsYqKCjIWchKlix5132dPn1a58+f1+TJkzV58uS7fi+S1LdvX61YsUKVKlVS4cKF1bBhQz333HOqXr26c9tRo0apbdu2Cg8PV4UKFdSkSRO1adPG+bi+1+OoWLFi+uWXX+75vSckJGjcuHGaOHGioqOjXT7PffsjK/eyZcsWDR06VBs3btSZM2dcjgFw+7FzO+OdZ3zImjWrsmTJ8o/3cTfJeW1Iyv38jm67802Z27n/+usvSbdOQSfd+7Eh3XpDasiQIZo5c2ai+0gq873uNygoSFLynr93e43MkSNHot9BSh8TAOAOHl3S165dq/fff19bt27V8ePH9d133+mJJ564r30YYzR69GhNnjxZR44cUfbs2fXqq68mOogOAM8UGhqq7du3a+nSpVq8eLEWL16sadOmqU2bNkkerO3vzp8/r1q1aikoKEhDhw5VoUKF5O/vr6ioKPXt21cJCQm2zJ3e6tWrp48//lhr1651KelJHcn94MGDqlevnooVK6YxY8YoPDxcvr6++vHHH/Xhhx86f8YOh0Nz5szRxo0b9f3332vp0qVq3769Ro8erY0bNyZ6U+J+3L6P119/PcmZfun+Tul3v/7v//5PktSzZ0/17Nkz0fVz585VZGRksvZ1+3t54YUXkjwOgXRrtYR0602Effv26YcfftCSJUs0d+5cTZw4UQMHDtSQIUMk3fpMco0aNfTdd99p2bJlev/99zVy5EjNmzdPjRs3vu/v9U7Dhg3TgAED1L59e73zzjvKmjWrvLy89Nprr/3j8ys6Olo1a9bUQw89pNGjRyt//vzy9fXVggULNGLECEvPz7ud8u7Og8Gl5LXhfn5Ht3l7eye5nbmPAxNKt36f69evV58+fVS2bFkFBgYqISFBjz76aJKZ/+l+k/v8vR8peUwAgLt4dEm/fPmyypQpo/bt21s+fUqPHj20bNkyffDBBypVqpTOnTunc+fOuTkpgH8zX19fNWvWTM2aNVNCQoJeffVVffrppxowYIAKFy581z/M16xZo7Nnz2revHmqWbOmczw6Otplu/z580uSfv/9d9WtW9c5fuPGDUVHR6tMmTIu2+7cuVMJCQkus+m3l8fe3ldyciclf/78WrlypS5duuRSXPft25dk5jvHb2fJnj37P86i383NmzclSZcuXfrHbb///ntdv35dCxcudJm1W716dZLbV6lSRVWqVNF7772nr7/+Ws8//7xmzpypjh07WsoqyTkr7OPj47IqILny58+vFStW6OLFiy6z6Un9Tu9kjNHXX3+tOnXqJFqOLUnvvPOOZsyYocjISGfOX3/99a77y5EjhzJnzqz4+PhkfS+ZMmVSq1at1KpVK8XFxally5Z677331L9/f+fy9Vy5cunVV1/Vq6++qlOnTql8+fJ677331LhxY5fH0d8f+7fH7vW9S9KcOXNUp04dff755y7j58+fV/bs2e9524ULF+rq1auaP3++yyqHO4/IfzvDgQMHXFZznD171jkTfdvtWd3z58+7LBu/czVEcl8bknK/v6PkKFSokKRbj4277fOvv/7SypUrNWTIEA0cONA5/vvvv1u+3+Q+f//+Gvn31UWnT59O9DtIyWMCANzFoz+T3rhxY7377rt3PWru9evX9frrrytPnjzKlCmTKleu7DwtknRrieAnn3yiBQsWqHnz5oqIiFCFChXUoEGDNPoOANjdnacW8vLycs5SXb9+XdL/Ptd652nKbs8i/X22Ki4uThMnTnTZrmLFisqRI4cmTZrkcqTi6dOnJ9pnkyZNdOLECc2aNcs5dvPmTX300UcKDAx0nhc7ObmT0qRJE928edPlFEjx8fH66KOPXLbLlSuXypYtqy+++MIl46+//qply5apSZMmd72Pf/L9999LksubE3eT1M/4woULmjZtmst2f/31V6JZw7Jly0q6988jOUJDQ1W7dm19+umnOn78eKLrT58+fc/bN2nSRPHx8fr4449dxj/88EM5HI57zjivW7dOhw8fVmRkpJ566qlEl1atWmn16tX6888/lSNHDtWsWVNTp05VTEyMy35u/2y8vb315JNPau7cuUmW+b9/L3c+xnx9fVWiRAkZY3Tjxg3Fx8cnWgIdGhqq3LlzO3/mFStWVGhoqCZNmuTye1i8eLH27Nmjpk2b3utHJ29v70S/12+//TZZp2+7/eba349R8NdffyU6jVm9evWUIUOGRKcFu/P3Jf2v7K5du9Y5dvny5USrV5L72pCU+/kdJVf58uUVERGhsWPHJnrN+ftj487MkjR27Nj7vr/bkvv8rV+/vnx8fPTRRx+5bJvUfafkMQEA7uLRM+n/pGvXrvrtt980c+ZM5c6dW999950effRR7dq1S0WKFNH333+vggUL6ocfftCjjz4qY4zq16+vUaNGuRwICcCDa/HixUkepKlatWoqWLCgOnbsqHPnzqlu3brKmzevjhw5oo8++khly5Z1fma4bNmy8vb21siRI3XhwgX5+fmpbt26qlatmrJkyaK2bduqe/fucjgc+uqrrxL9Aenj46N3331XnTp1Ut26ddWqVStFR0dr2rRpiT6T/vLLL+vTTz9Vu3bttHXrVhUoUEBz5szRunXrNHbsWOdMbHJyJ6VZs2aqXr26+vXrp8OHD6tEiRKaN29ekp83ff/999W4cWNVrVpVHTp0cJ6CLTg4ONnnGo+KinIu17548aJWrlypuXPnqlq1amrYsOE/3r5hw4bOFQOdOnXSpUuXNGXKFIWGhroU5i+++EITJ05UixYtVKhQIV28eFFTpkxRUFBQit5QuG3ChAl65JFHVKpUKb300ksqWLCgTp48qQ0bNuiPP/645zmamzVrpjp16uitt97S4cOHVaZMGS1btkwLFizQa6+95ix+SZkxY4a8vb3vWmabN2+ut956SzNnzlSvXr00fvx4PfLIIypfvrxefvllRURE6PDhw1q0aJG2b98u6dbpulavXq3KlSvrpZdeUokSJXTu3DlFRUVpxYoVztVmDRs2VM6cOVW9enWFhYVpz549+vjjj50HsDt//rzy5s2rp556SmXKlFFgYKBWrFihzZs3a/To0ZJuPfZHjhypyMhI1apVS61bt3aegq1AgQJJLt//u8cee0xDhw5VZGSkqlWrpl27dmnGjBmJnjdJadCggXx8fNS8eXN16tRJFy9e1OTJk5U7d26dPHnSuV1YWJh69Oih0aNHq3nz5nr00Ue1Y8cOLV68WNmzZ3dZSdOwYUPly5dPHTp0UJ8+feTt7a2pU6cqR44cLm+MJPe14W6S+ztKLi8vL33yySdq1qyZypYtq8jISOXKlUt79+7V7t27tXTpUgUFBalmzZoaNWqUbty4oTx58mjZsmXJmv2/m+Q+f3PkyKHXX39dw4cP12OPPaYmTZpo27Ztzt/B36XkMQEAbpNWh5G3O91xqpkjR44Yb29vc+zYMZft6tWrZ/r372+MuXWqEz8/P1O5cmWzdu1as3r1alO2bFlTp06dtIwOIB3c6xRs+tupxubMmWMaNmxoQkNDja+vr8mXL5/p1KmTOX78uMv+pkyZYgoWLGi8vb1dTse2bt06U6VKFRMQEGBy585t3njjDbN06dIkT9k2ceJEExERYfz8/EzFihXN2rVrTa1atVxOwWaMMSdPnjSRkZEme/bsxtfX15QqVcrl1Gj3kzspZ8+eNS+++KIJCgoywcHB5sUXXzTbtm1LdAo2Y4xZsWKFqV69ugkICDBBQUGmWbNm5rfffvvH+0jqFGwZMmQwBQsWNH369DEXL1502T5//vymadOmSe5r4cKFpnTp0sbf398UKFDAjBw50kydOtXllFdRUVGmdevWJl++fMbPz8+Ehoaaxx57zGzZssVlX7J4CjZjjDl48KBp06aNyZkzp/Hx8TF58uQxjz32mJkzZ84/3vbixYumZ8+eJnfu3MbHx8cUKVLEvP/++4lORfd3cXFxJlu2bKZGjRr33HdERIQpV66c8+tff/3VtGjRwoSEhBh/f39TtGhRM2DAAJfbnDx50nTp0sWEh4cbHx8fkzNnTlOvXj0zefJk5zaffvqpqVmzpsmWLZvx8/MzhQoVMn369DEXLlwwxhhz/fp106dPH1OmTBmTOXNmkylTJlOmTBkzceLERBlnzZplypUrZ/z8/EzWrFnN888/b/74449//Lldu3bN9O7d2+TKlcsEBASY6tWrmw0bNiT5vEnK/PnzTalSpYy/v78pWLCgGT16dKLHjjG3TlE2YMAAkzNnThMQEGDq1q1r9uzZY7Jly2Y6d+7sss+tW7eaypUrO593Y8aMSfJxdD+vDUlJzu/o9inYvv32W5fb3n7+3fl8/uWXX0yDBg2cv6/SpUubjz76yHn9H3/84XzsBAcHm6efftr8+eefiZ43t0/Bdvr0aZf9J/VzSM7z1xhj4uPjzZAhQ5y/69q1a5tff/3V5M+fP9Ep2FLymAAAd3AYc59H/XhAORwOlwPHLVq0SI899liiz0Rev35dLVu21KxZs/Tyyy9rypQp2rdvn/7zn/9IujWrU6FCBe3duzfJo80CAACcP39eWbJk0bvvvsvBZgEALljufheXLl2St7e3tm7dmujoorcPhpQrVy5lyJDBWdCl/53yJiYmhpIOAAB09erVRGcXuP156Nq1a6d9IACArVHS76JcuXKKj4/XqVOnVKNGjSS3qV69um7evKmDBw86P/O3f/9+Sfc+mi4AAPAcs2bN0vTp09WkSRMFBgbql19+0TfffKOGDRu6nBceAABJ8ujl7pcuXdKBAwck3SrlY8aMUZ06dZQ1a1bly5dPL7zwgtatW6fRo0erXLlyOn36tFauXKnSpUuradOmSkhI0MMPP6zAwECNHTtWCQkJ6tKli4KCgrRs2bJ0/u4AAIAdREVF6Y033tD27dsVGxursLAwPfnkk3r33XddTlUIAIDk4SV9zZo1qlOnTqLxtm3bavr06bpx44beffddffnllzp27JiyZ8+uKlWqaMiQISpVqpQk6c8//1S3bt20bNkyZcqUSY0bN9bo0aM5ujsAAAAA4L55dEkHAAAAAMBOvNI7AAAAAAAAuMUjDxyXkJCgP//8U5kzZ5bD4UjvOAAAAACAB5wxRhcvXlTu3Lnl5XX3+XKPLOl//vmnwsPD0zsGAAAAAMDDHD16VHnz5r3r9R5Z0jNnzizp1g8nKCgondMAAAAAAB50sbGxCg8Pd/bRu/HIkn57iXtQUBAlHQAAAACQZv7pI9ccOA4AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbCJDegcAAAAAAHimAv0WpXgfh0c0dUMS+2AmHQAAAAAAm6CkAwAAAABgE5R0AAAAAABsgpIOAAAAAIBNUNIBAAAAALAJSjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm6CkAwAAAABgE5R0AAAAAABsgpIOAAAAAIBNUNIBAAAAALAJSjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm6CkAwAAAABgE5R0AAAAAABsgpIOAAAAAIBNUNIBAAAAALAJSjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm6CkAwAAAABgE5R0AAAAAABsgpIOAAAAAIBNUNIBAAAAALAJSjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm6CkAwAAAABgE5R0AAAAAABsIt1L+tq1a9WsWTPlzp1bDodD8+fPv+f28+bNU4MGDZQjRw4FBQWpatWqWrp0adqEBQAAAAAgFaV7Sb98+bLKlCmjCRMmJGv7tWvXqkGDBvrxxx+1detW1alTR82aNdO2bdtSOSkAAAAAAKkrQ3oHaNy4sRo3bpzs7ceOHevy9bBhw7RgwQJ9//33KleunJvTAQAAAACQdtK9pKdUQkKCLl68qKxZs951m+vXr+v69evOr2NjY9MiGgAAAAAA9yXdl7un1AcffKBLly7pmWeeues2w4cPV3BwsPMSHh6ehgkBAAAAAEief3VJ//rrrzVkyBDNnj1boaGhd92uf//+unDhgvNy9OjRNEwJAAAAAEDy/GuXu8+cOVMdO3bUt99+q/r1699zWz8/P/n5+aVRMgAAAAAArPlXzqR/8803ioyM1DfffKOmTZumdxwAAAAAANwi3WfSL126pAMHDji/jo6O1vbt25U1a1bly5dP/fv317Fjx/Tll19KurXEvW3btho3bpwqV66sEydOSJICAgIUHBycLt8DAAAAAADukO4lfcuWLapTp47z6169ekmS2rZtq+nTp+v48eOKiYlxXj958mTdvHlTXbp0UZcuXZzjt7cHAODfqEC/RSnex+ERrC4DAODfLt1Leu3atWWMuev1dxbvNWvWpG4gAAAAAADSyb/yM+kAAAAAADyIKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANhEBqs3nDNnjmbPnq2YmBjFxcW5XBcVFZXiYAAAAAAAeBpLM+njx49XZGSkwsLCtG3bNlWqVEnZsmXToUOH1LhxY3dnBAAAAADAI1gq6RMnTtTkyZP10UcfydfXV2+88YaWL1+u7t2768KFC+7OCAAAAACAR7BU0mNiYlStWjVJUkBAgC5evChJevHFF/XNN9+4Lx0AAAAAAB7EUknPmTOnzp07J0nKly+fNm7cKEmKjo6WMcZ96QAAAAAA8CCWSnrdunW1cOFCSVJkZKR69uypBg0aqFWrVmrRooVbAwIAAAAA4CksHd198uTJSkhIkCR16dJF2bJl0/r169W8eXN16tTJrQEBAAAAAPAUlkq6l5eXvLz+Nwn/7LPP6tlnn3VbKAAAAAAAPFGyS/rOnTuTvdPSpUtbCgMAAAAAgCdLdkkvW7asHA6HjDFyOBz33DY+Pj7FwQAAAAAA8DTJPnBcdHS0Dh06pOjoaM2dO1cRERGaOHGitm3bpm3btmnixIkqVKiQ5s6dm5p5AQAAAAB4YCV7Jj1//vzOfz/99NMaP368mjRp4hwrXbq0wsPDNWDAAD3xxBNuDQkAAAAAgCewdAq2Xbt2KSIiItF4RESEfvvttxSHAgAAAADAE1kq6cWLF9fw4cMVFxfnHIuLi9Pw4cNVvHhxt4UDAAAAAMCTWDoF26RJk9SsWTPlzZvXeST3nTt3yuFw6Pvvv3drQAAAAAAAPIWlkl6pUiUdOnRIM2bM0N69eyVJrVq10nPPPadMmTK5NSAAAAAAAJ7CUkmXpEyZMunll192ZxYAAAAAADya5ZIuSb/99ptiYmJcPpsuSc2bN09RKAAAAAAAPJGlkn7o0CG1aNFCu3btksPhkDFGkuRwOCRJ8fHx7ksIAAAAAICHsHR09x49eigiIkKnTp1SxowZtXv3bq1du1YVK1bUmjVr3BwRAAAAAADPYGkmfcOGDVq1apWyZ88uLy8veXl56ZFHHtHw4cPVvXt3bdu2zd05AQAAAAB44FmaSY+Pj1fmzJklSdmzZ9eff/4pScqfP7/27dvnvnQAAAAAAHgQSzPpJUuW1I4dOxQREaHKlStr1KhR8vX11eTJk1WwYEF3ZwQAAAAAwCNYKulvv/22Ll++LEkaOnSoHnvsMdWoUUPZsmXTrFmz3BoQAAAAAABPYamkN2rUyPnvwoULa+/evTp37pyyZMniPMI7AAAAAAC4Pyk6T/rfZc2a1V27AgAAAADAI1kq6ZcvX9aIESO0cuVKnTp1SgkJCS7XHzp0yC3hAAAAAADwJJZKeseOHfXTTz/pxRdfVK5cuVjiDgAAAACAG1gq6YsXL9aiRYtUvXp1d+cBAAAAAMBjWTpPepYsWfgMOgAAAAAAbmappL/zzjsaOHCgrly54u48AAAAAAB4LEvL3UePHq2DBw8qLCxMBQoUkI+Pj8v1UVFRbgkHAAAAAIAnsVTSn3jiCTfHAAAAAAAAlkr6oEGD3J0DAAAAAACPZ+kz6QAAAAAAwP0szaTHx8frww8/1OzZsxUTE6O4uDiX68+dO+eWcAAAAAAAeBJLM+lDhgzRmDFj1KpVK124cEG9evVSy5Yt5eXlpcGDB7s5IgAAAAAAnsFSSZ8xY4amTJmi3r17K0OGDGrdurU+++wzDRw4UBs3bnR3RgAAAAAAPIKlkn7ixAmVKlVKkhQYGKgLFy5Ikh577DEtWrTIfekAAAAAAPAglkp63rx5dfz4cUlSoUKFtGzZMknS5s2b5efn5750AAAAAAB4EEslvUWLFlq5cqUkqVu3bhowYICKFCmiNm3aqH379m4NCAAAAACAp7B0dPcRI0Y4/92qVSvlz59f69evV5EiRdSsWTO3hQMAAAAAwJNYKul3qlKliqpUqeKOXQEAAAAA4LEsLXcfPny4pk6dmmh86tSpGjlyZIpDAQAAAADgiSyV9E8//VTFihVLNP7QQw9p0qRJKQ4FAAAAAIAnsnwKtly5ciUaz5Ejh/Oo7wAAAAAA4P5YKunh4eFat25dovF169Ypd+7c97WvtWvXqlmzZsqdO7ccDofmz5//j7dZs2aNypcvLz8/PxUuXFjTp0+/r/sEAAAAAMCOLJX0l156Sa+99pqmTZumI0eO6MiRI5o6dap69uypl1566b72dfnyZZUpU0YTJkxI1vbR0dFq2rSp6tSpo+3bt+u1115Tx44dtXTpUivfCgAAAAAAtmHp6O59+vTR2bNn9eqrryouLk6S5O/vr759+6p///73ta/GjRurcePGyd5+0qRJioiI0OjRoyVJxYsX1y+//KIPP/xQjRo1uq/7BgAAAADATiyVdIfDoZEjR2rAgAHas2ePAgICVKRIEfn5+bk7XyIbNmxQ/fr1XcYaNWqk11577a63uX79uq5fv+78OjY2NrXiAQAAAABgmaXl7rcFBgbq4YcfVsmSJdOkoEu3DloXFhbmMhYWFqbY2FhdvXo1ydsMHz5cwcHBzkt4eHhaRAUAAAAA4L5Ymkm/fPmyRowYoZUrV+rUqVNKSEhwuf7QoUNuCecu/fv3V69evZxfx8bGUtQBAAAAALZjqaR37NhRP/30k1588UXlypVLDofD3bnuKmfOnDp58qTL2MmTJxUUFKSAgIAkb+Pn55dmM/0AAAAAAFhlqaQvXrxYixYtUvXq1d2d5x9VrVpVP/74o8vY8uXLVbVq1TTPAgAAAACAO1n6THqWLFmUNWtWtwS4dOmStm/fru3bt0u6dYq17du3KyYmRtKtpept2rRxbt+5c2cdOnRIb7zxhvbu3auJEydq9uzZ6tmzp1vyAAAAAACQXiyV9HfeeUcDBw7UlStXUhxgy5YtKleunMqVKydJ6tWrl8qVK6eBAwdKko4fP+4s7JIUERGhRYsWafny5SpTpoxGjx6tzz77jNOvAQAAAAD+9Swtdx89erQOHjyosLAwFShQQD4+Pi7XR0VFJXtftWvXljHmrtdPnz49ydts27Yt2fcBAAAAAMC/gaWS/sQTT7g5BgAAAAAAsFTSBw0a5O4cAAAAAAB4PEufSZek8+fP67PPPlP//v117tw5SbeWuR87dsxt4QAAAAAA8CSWZtJ37typ+vXrKzg4WIcPH9ZLL72krFmzat68eYqJidGXX37p7pwAAAAAADzwLM2k9+rVS+3atdPvv/8uf39/53iTJk20du1at4UDAAAAAMCTWCrpmzdvVqdOnRKN58mTRydOnEhxKAAAAAAAPJGlku7n56fY2NhE4/v371eOHDlSHAoAAAAAAE9kqaQ3b95cQ4cO1Y0bNyRJDodDMTEx6tu3r5588km3BgQAAAAAwFNYKumjR4/WpUuXFBoaqqtXr6pWrVoqXLiwMmfOrPfee8/dGQEAAAAA8AiWju4eHBys5cuXa926ddqxY4cuXbqk8uXLq379+u7OBwAAAACAx7BU0m+rXr26qlev7q4sAAAAAAB4NEvL3QEAAAAAgPtR0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJlJ04DhJunbtmuLi4lzGgoKCUrpbAAAAAAA8jqWZ9CtXrqhr164KDQ1VpkyZlCVLFpcLAAAAAAC4f5ZKep8+fbRq1Sp98skn8vPz02effaYhQ4Yod+7c+vLLL92dEQAAAAAAj2Bpufv333+vL7/8UrVr11ZkZKRq1KihwoULK3/+/JoxY4aef/55d+cEAAAAAOCBZ2km/dy5cypYsKCkW58/P3funCTpkUce0dq1a92XDgAAAAAAD2KppBcsWFDR0dGSpGLFimn27NmSbs2wh4SEuC0cAAAAAACexFJJj4yM1I4dOyRJ/fr104QJE+Tv76+ePXuqT58+bg0IAAAAAICnsPSZ9J49ezr/Xb9+fe3du1dbt25V4cKFVbp0abeFAwAAAADAk6T4POmSlD9/fuXPn98duwIAAAAAwGNZKulDhw695/UDBw60FAYAAAAAAE9mqaR/9913Ll/fuHFD0dHRypAhgwoVKkRJBwAAAADAAkslfdu2bYnGYmNj1a5dO7Vo0SLFoQAAAAAA8ESWju6elKCgIA0ZMkQDBgxw1y4BAAAAAPAobivpknThwgVduHDBnbsEAAAAAMBjWFruPn78eJevjTE6fvy4vvrqKzVu3NgtwQAAAAAA8DSWSvqHH37o8rWXl5dy5Mihtm3bqn///m4JBgAAAACAp7FU0qOjo92dAwAAAAAAj+fWz6QDAAAAAADrLM2kt2jRQg6HI9G4w+GQv7+/ChcurOeee05FixZNcUAAAAAAADyFpZn04OBgrVq1SlFRUXI4HHI4HNq2bZtWrVqlmzdvatasWSpTpozWrVvn7rwAAAAAADywLM2k58yZU88995w+/vhjeXnd6vkJCQnq0aOHMmfOrJkzZ6pz587q27evfvnlF7cGBgAAAADgQWVpJv3zzz/Xa6+95izo0q0jvHfr1k2TJ0+Ww+FQ165d9euvv7otKAAAAAAADzpLJf3mzZvau3dvovG9e/cqPj5ekuTv75/k59YBAAAAAEDSLC13f/HFF9WhQwe9+eabevjhhyVJmzdv1rBhw9SmTRtJ0k8//aSHHnrIfUkBAAAAAHjAWSrpH374ocLCwjRq1CidPHlSkhQWFqaePXuqb9++kqSGDRvq0UcfdV9SAAAAAAAecJZKure3t9566y299dZbio2NlSQFBQW5bJMvX76UpwMAAAAAwINYKul/d2c5BwAAAAAA1lgu6XPmzNHs2bMVExOjuLg4l+uioqJSHAwAAAAAAE+TrKO7L1y4UKdOnXJ+PX78eLVv3145c+bU5s2b1bBhQwUGBio6OlpNmjRJtbAAAAAAADzIklXSr127pkceeUT79++XJE2cOFGfffaZxo8fL2OMRowYobVr16pz5846f/58auYFAAAAAOCBlayS/swzz2jy5Ml66qmnJEkxMTGqUqWKpFvnQ7906ZIkqX379vrmm29SKSoAAAAAAA+2ZJV0Sapdu7ZWr14tScqZM6fOnj0rScqfP7/Wr18vSTp48GAqRAQAAAAAwDMku6RLUrZs2SRJdevW1cKFCyVJHTp0UKtWrdSoUSO1atVKLVu2dH9KAAAAAAA8gKWju0+ePFkJCQmSpNdff125cuXSxo0b1axZM3Xq1MmtAQEAAAAA8BSWSrqXl5e8vP43Cf/888/r+eefd1soAAAAAAA80X0tdwcAAAAAAKmHkg4AAAAAgE1Q0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJiwd3V2S5syZo9mzZysmJkZxcXEu10VFRaU4GAAAAAAAnsbSTPr48eMVGRmpsLAwbdu2TZUqVVK2bNl06NAhNW7c2N0ZAQAAAADwCJZK+sSJEzV58mR99NFH8vX11RtvvKHly5ere/fuunDhgrszAgAAAADgESyV9JiYGFWrVk2SFBAQoIsXL0qSXnzxRX3zzTfuSwcAAAAAgAexVNJz5sypc+fOSZLy5cunjRs3SpKio6NljHFfOgAAAAAAPIilkl63bl0tXLhQkhQZGamePXuqQYMGatWqlVq0aOHWgAAAAAAAeApLR3efPHmyEhISJEldunRRtmzZtH79ejVv3lydOnVya0AAAAAAADyFpZLu5eUlL6//TcI/++yzevbZZ90WCgAAAAAAT2RpuTsAAAAAAHA/SjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2ISlA8fddvr0ae3bt0+SVLRoUeXIkcMtoQAAAAAA8ESWZtIvX76s9u3bK3fu3KpZs6Zq1qyp3Llzq0OHDrpy5Yq7MwIAAAAA4BEslfRevXrpp59+0sKFC3X+/HmdP39eCxYs0E8//aTevXu7OyMAAAAAAB7B0nL3uXPnas6cOapdu7ZzrEmTJgoICNAzzzyjTz75xF35AAAAAADwGJZm0q9cuaKwsLBE46GhoSx3BwAAAADAIkslvWrVqho0aJCuXbvmHLt69aqGDBmiqlWrui0cAAAAAACexNJy93HjxqlRo0bKmzevypQpI0nasWOH/P39tXTpUrcGBAAAAADAU1gq6SVLltTvv/+uGTNmaO/evZKk1q1b6/nnn1dAQIBbAwIAAAAA4Cksnyc9Y8aMeumll9yZBQAAAAAAj2bpM+lffPGFFi1a5Pz6jTfeUEhIiKpVq6YjR464LRwAAAAAAJ7EUkkfNmyYc1n7hg0b9PHHH2vUqFHKnj27evbs6daAAAAAAAB4CkvL3Y8eParChQtLkubPn6+nnnpKL7/8sqpXr+5y7nQAAAAAAJB8lmbSAwMDdfbsWUnSsmXL1KBBA0mSv7+/rl696r50AAAAAAB4EEslvUGDBurYsaM6duyo/fv3q0mTJpKk3bt3q0CBAve9vwkTJqhAgQLy9/dX5cqV9d///vee248dO1ZFixZVQECAwsPD1bNnT5dztgMAAAAA8G9kqaRPmDBBVatW1enTpzV37lxly5ZNkrR161a1bt36vvY1a9Ys9erVS4MGDVJUVJTKlCmjRo0a6dSpU0lu//XXX6tfv34aNGiQ9uzZo88//1yzZs3Sm2++aeVbAQAAAADANhzGGJOeASpXrqyHH35YH3/8sSQpISFB4eHh6tatm/r165do+65du2rPnj1auXKlc6x3797atGmTfvnll2TdZ2xsrIKDg3XhwgUFBQW55xsBACAFCvRb9M8b/YPDI5q6IQkAAGnHk/7/l9weamkmfcmSJS6FeMKECSpbtqyee+45/fXXX8neT1xcnLZu3ar69ev/L5CXl+rXr68NGzYkeZtq1app69atziXxhw4d0o8//uhccp+U69evKzY21uUCAAAAAIDdWCrpffr0cRbdXbt2qXfv3mrSpImio6PVq1evZO/nzJkzio+PV1hYmMt4WFiYTpw4keRtnnvuOQ0dOlSPPPKIfHx8VKhQIdWuXfuey92HDx+u4OBg5yU8PDzZGQEAAAAASCuWSnp0dLRKlCghSZo7d64ee+wxDRs2TBMmTNDixYvdGvBOa9as0bBhwzRx4kRFRUVp3rx5WrRokd5555273qZ///66cOGC83L06NFUzQgAAAAAgBWWzpPu6+urK1euSJJWrFihNm3aSJKyZs16X0vJs2fPLm9vb508edJl/OTJk8qZM2eStxkwYIBefPFFdezYUZJUqlQpXb58WS+//LLeeusteXklft/Bz89Pfn5+yc4FAAAAAEB6sDST/sgjj6hXr15655139N///ldNm976oP7+/fuVN2/eZO/H19dXFSpUcDkIXEJCglauXKmqVasmeZsrV64kKuLe3t6SpHQ+Bh4AAAAAACliqaR//PHHypAhg+bMmaNPPvlEefLkkSQtXrxYjz766H3tq1evXpoyZYq++OIL7dmzR6+88oouX76syMhISVKbNm3Uv39/5/bNmjXTJ598opkzZyo6OlrLly/XgAED1KxZM2dZBwAAAADg38jScvd8+fLphx9+SDT+4Ycf3ve+WrVqpdOnT2vgwIE6ceKEypYtqyVLljgPJhcTE+Myc/7222/L4XDo7bff1rFjx5QjRw41a9ZM7733npVvBQAAAAAA27B8nvSDBw9q2rRpOnjwoMaNG6fQ0FAtXrxY+fLl00MPPeTunG7FedIBAHbjSeeJBQDgNk/6/1+qnif9p59+UqlSpbRp0ybNmzdPly5dkiTt2LFDgwYNspYYAAAAAAAPZ6mk9+vXT++++66WL18uX19f53jdunW1ceNGt4UDAAAAAMCTWCrpu3btUosWLRKNh4aG6syZMykOBQAAAACAJ7JU0kNCQnT8+PFE49u2bXMe6R0AAAAAANwfSyX92WefVd++fXXixAk5HA4lJCRo3bp1ev3119WmTRt3ZwQAAAAAwCNYKunDhg1TsWLFFB4erkuXLqlEiRKqWbOmqlWrprffftvdGQEAAAAA8AiWzpPu6+urKVOmaODAgdq1a5cuXbqkcuXKqUiRIu7OBwAAAACAx7BU0m8LDw9XeHi4u7IAAAAAAODRLC13f/LJJzVy5MhE46NGjdLTTz+d4lAAAAAAAHgiSyV97dq1atKkSaLxxo0ba+3atSkOBQAAAACAJ7JU0i9duiRfX99E4z4+PoqNjU1xKAAAAAAAPJGlkl6qVCnNmjUr0fjMmTNVokSJFIcCAAAAAMATWTpw3IABA9SyZUsdPHhQdevWlSStXLlS33zzjb799lu3BgQAAAAAwFNYKunNmjXT/PnzNWzYMM2ZM0cBAQEqXbq0VqxYoVq1ark7IwAAAAAAHsHyKdiaNm2qpk2bujMLAAAAAAAezdJn0gEAAAAAgPtZmkmPj4/Xhx9+qNmzZysmJkZxcXEu1587d84t4QAAAAAA8CSWZtKHDBmiMWPGqFWrVrpw4YJ69eqlli1bysvLS4MHD3ZzRAAAAAAAPIOlkj5jxgxNmTJFvXv3VoYMGdS6dWt99tlnGjhwoDZu3OjujAAAAAAAeARLJf3EiRMqVaqUJCkwMFAXLlyQJD322GNatGiR+9IBAAAAAOBBLJX0vHnz6vjx45KkQoUKadmyZZKkzZs3y8/Pz33pAAAAAADwIJZKeosWLbRy5UpJUrdu3TRgwAAVKVJEbdq0Ufv27d0aEAAAAAAAT2Hp6O4jRoxw/rtVq1bKnz+/1q9fryJFiqhZs2ZuCwcAAAAAgCexVNLvVKVKFVWpUsUduwIAAAAAwGNZWu4OAAAAAADcj5IOAAAAAIBNUNIBAAAAALAJSjoAAAAAADaR4gPHXbp0SQkJCS5jQUFBKd0tAAAAAAAex9JMenR0tJo2bapMmTIpODhYWbJkUZYsWRQSEqIsWbK4OyMAAAAAAB7B0kz6Cy+8IGOMpk6dqrCwMDkcDnfnAgAAAADA41gq6Tt27NDWrVtVtGhRd+cBAAAAAMBjWVru/vDDD+vo0aPuzgIAAAAAgEezNJP+2WefqXPnzjp27JhKliwpHx8fl+tLly7tlnAAAAAAAHgSSyX99OnTOnjwoCIjI51jDodDxhg5HA7Fx8e7LSAAAEg7BfotSvE+Do9o6oYkAAB4JkslvX379ipXrpy++eYbDhwHAAAAAICbWCrpR44c0cKFC1W4cGF35wEAAAAAwGNZOnBc3bp1tWPHDndnAQAAAADAo1maSW/WrJl69uypXbt2qVSpUokOHNe8eXO3hAMAAAAAwJNYKumdO3eWJA0dOjTRdRw4DgAAAAAAayyV9ISEBHfnAAAAAADA41n6TDoAAAAAAHA/yyX9p59+UrNmzVS4cGEVLlxYzZs3188//+zObAAAAAAAeBRLJf3//u//VL9+fWXMmFHdu3dX9+7dFRAQoHr16unrr792d0YAAAAAADyCpc+kv/feexo1apR69uzpHOvevbvGjBmjd955R88995zbAgIAAAAA4CkszaQfOnRIzZo1SzTevHlzRUdHpzgUAAAAAACeyFJJDw8P18qVKxONr1ixQuHh4SkOBQAAAACAJ7K03L13797q3r27tm/frmrVqkmS1q1bp+nTp2vcuHFuDQgAAAAAgKewVNJfeeUV5cyZU6NHj9bs2bMlScWLF9esWbP0+OOPuzUgAAAAAACewlJJl6QWLVqoRYsW7swCAAAAAIBHs/SZ9M2bN2vTpk2Jxjdt2qQtW7akOBQAAAAAAJ7IUknv0qWLjh49mmj82LFj6tKlS4pDAQAAAADgiSyV9N9++03ly5dPNF6uXDn99ttvKQ4FAAAAAIAnslTS/fz8dPLkyUTjx48fV4YMlj/mDgAAAACAR7NU0hs2bKj+/fvrwoULzrHz58/rzTffVIMGDdwWDgAAAAAAT2Jp2vuDDz5QzZo1lT9/fpUrV06StH37doWFhemrr75ya0AAAAAAADyFpZKeJ08e7dy5UzNmzNCOHTsUEBCgyMhItW7dWj4+Pu7OCAAAAACAR7D8AfJMmTLp5ZdfdmcWAAAAAAA8mqXPpAMAAAAAAPejpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVg+cJwkbd26VXv27JEklShRQuXLl3dLKAAAAAD3r0C/RSnex+ERTd2QBIBVlkr6qVOn9Oyzz2rNmjUKCQmRJJ0/f1516tTRzJkzlSNHDndmBAAAAADAI1ha7t6tWzddvHhRu3fv1rlz53Tu3Dn9+uuvio2NVffu3d2dEQAAAAAAj2BpJn3JkiVasWKFihcv7hwrUaKEJkyYoIYNG7otHAAAAAAAnsTSTHpCQoJ8fHwSjfv4+CghISHFoQAAAAAA8ESWSnrdunXVo0cP/fnnn86xY8eOqWfPnqpXr57bwgEAAAAA4EkslfSPP/5YsbGxKlCggAoVKqRChQopIiJCsbGx+uijj9ydEQAAAAAAj2DpM+nh4eGKiorSihUrtHfvXklS8eLFVb9+fbeGAwAAAADAk1g+T7rD4VCDBg3UoEEDd+YBAAAAAMBjWS7ply9f1k8//aSYmBjFxcW5XMdp2AAAAAAAuH/JLulz585Vw4YNlTlzZm3btk1NmjTRlStXdPnyZWXNmlVnzpxRxowZFRoaSkkHAAAAAMCCZB84bvv27c5zoPfs2VPNmjXTX3/9pYCAAG3cuFFHjhxRhQoV9MEHH6RaWAAAAAAAHmTJLukVK1ZUQECApFuFvXfv3vLy8pK3t7euX7+u8PBwjRo1Sm+++WaqhQUAAAAA4EGW7OXunTp10g8//CBJ8vHxkZfXrX4fGhqqmJgYFS9eXMHBwTp69GjqJAUAAAAA4AGX7JL+wgsv6OWXX1ZUVJTKlSunzZs3q0iRIqpVq5YGDhyoM2fO6KuvvlLJkiVTMy8AAAAAAA+sZC93/+CDDxQVFSVJGjZsmHLlyiVJeu+995QlSxa98sorOn36tD799NPUSQoAAAAAwAPO0inYKlas6Px3aGiolixZ4rZAAAAAAAB4qmTPpP9ddHS0fv/990Tjv//+uw4fPpzSTAAAAAAAeCRLJb1du3Zav359ovFNmzapXbt2io+P144dO3T16tVk7W/ChAkqUKCA/P39VblyZf33v/+95/bnz59Xly5dlCtXLvn5+ek///mPfvzxRyvfCgAAAAAAtmFpufu2bdtUvXr1RONVqlRRmzZtVK1aNZ06dUq5c+fWunXr7rmvWbNmqVevXpo0aZIqV66ssWPHqlGjRtq3b59CQ0MTbR8XF6cGDRooNDRUc+bMUZ48eXTkyBGFhIRY+VYAAAAAALANSyXd4XDo4sWLicYvXLggh8Oh1atX688//0zWkd7HjBmjl156SZGRkZKkSZMmadGiRZo6dar69euXaPupU6fq3LlzWr9+vXx8fCRJBQoUsPJtAAAAAABgK5aWu9esWVPDhw9XfHy8cyw+Pl7Dhw9Xw4YNlTFjRvn4+Kh///733E9cXJy2bt2q+vXr/y+Ql5fq16+vDRs2JHmbhQsXqmrVqurSpYvCwsJUsmRJDRs2zCXLna5fv67Y2FiXCwAAAAAAdmNpJn3kyJGqWbOmihYtqho1akiSfv75Z8XGxmrVqlWSpPz582vQoEH33M+ZM2cUHx+vsLAwl/GwsDDt3bs3ydscOnRIq1at0vPPP68ff/xRBw4c0KuvvqobN27c9f6GDx+uIUOG3O+3CQAAAABAmrI0k16iRAnt3LlTzzzzjE6dOqWLFy+qTZs22rt3b7KWuKdEQkKCQkNDNXnyZFWoUEGtWrXSW2+9pUmTJt31Nv3799eFCxecl6NHj6ZqRgAAAAAArLA0ky5JuXPn1rBhw1J059mzZ5e3t7dOnjzpMn7y5EnlzJkzydvkypVLPj4+8vb2do4VL15cJ06cUFxcnHx9fRPdxs/PT35+finKCgAAAABAarM0k37blStXtHfvXu3cudPlkly+vr6qUKGCVq5c6RxLSEjQypUrVbVq1SRvU716dR04cEAJCQnOsf379ytXrlxJFnQAAAAAAP4tLM2knz59WpGRkVq8eHGS19/rIG536tWrl9q2bauKFSuqUqVKGjt2rC5fvuw82nubNm2UJ08eDR8+XJL0yiuv6OOPP1aPHj3UrVs3/f777xo2bJi6d+9u5VsBAAAAAMA2LJX01157TefPn9emTZtUu3Ztfffddzp58qTeffddjR49+r721apVK50+fVoDBw7UiRMnVLZsWS1ZssR5MLmYmBh5ef1vwj88PFxLly5Vz549Vbp0aeXJk0c9evRQ3759rXwrAAAAAADYhqWSvmrVKi1YsEAVK1aUl5eX8ufPrwYNGigoKEjDhw9X06ZN72t/Xbt2VdeuXZO8bs2aNYnGqlatqo0bN1qJDgAAAACAbVn6TPrly5cVGhoqScqSJYtOnz4tSSpVqpSioqLclw4AAAAAAA9iqaQXLVpU+/btkySVKVNGn376qY4dO6ZJkyYpV65cbg0IAAAAAICnsLTcvUePHjp+/LgkadCgQXr00Uc1Y8YM+fr6avr06e7MBwAAAACAx7BU0l944QXnvytUqKAjR45o7969ypcvn7Jnz+62cAAAAAAAeBJLJf1OGTNmVPny5d2xKwAAAAAAPFayS3qvXr2SvdMxY8ZYCgMAAAAAgCdLdknftm1bsrZzOByWwwAAAAAA4MmSXdJXr16dmjkAAAAAAPB4lk7BBgAAAAAA3M/SgePq1Klzz2Xtq1atshwIAAAAAABPZamkly1b1uXrGzduaPv27fr111/Vtm1bd+QCAAAAAMDjWCrpH374YZLjgwcP1qVLl1IUCAAAAAAAT+XWz6S/8MILmjp1qjt3CQAAAACAx3BrSd+wYYP8/f3duUsAAAAAADyGpeXuLVu2dPnaGKPjx49ry5YtGjBggFuCAQAAAADgaSyV9ODgYJevvby8VLRoUQ0dOlQNGzZ0SzAAAAAAADyNpZI+bdo0d+cAAAAAAMDjWSrpt23ZskV79uyRJJUoUUIVKlRwSygAAAAAADyRpZL+xx9/qHXr1lq3bp1CQkIkSefPn1e1atU0c+ZM5c2b150ZAQAAAADwCJaO7t6xY0fduHFDe/bs0blz53Tu3Dnt2bNHCQkJ6tixo7szAgAAAADgESzNpP/0009av369ihYt6hwrWrSoPvroI9WoUcNt4QAAAAAA8CSWZtLDw8N148aNROPx8fHKnTt3ikMBAAAAAOCJLJX0999/X926ddOWLVucY1u2bFGPHj30wQcfuC0cAAAAAACexNJy93bt2unKlSuqXLmyMmS4tYubN28qQ4YMat++vdq3b+/c9ty5c+5JCgAAAADAA85SSR87dqybYwAAAAAAAEslvW3btu7OAfwrFei3KMX7ODyiqRuSAAAAAHgQWCrp0q2DxM2fP1979uyRJD300ENq3ry5vL293RYOAAAAAABPYqmkHzhwQE2aNNGxY8ecp2EbPny4wsPDtWjRIhUqVMitIQEAAAAA8ASWju7evXt3FSpUSEePHlVUVJSioqIUExOjiIgIde/e3d0ZAQAAAADwCJZm0n/66Sdt3LhRWbNmdY5ly5ZNI0aMUPXq1d0WDgAAAAAAT2JpJt3Pz08XL15MNH7p0iX5+vqmOBQAAAAAAJ7IUkl/7LHH9PLLL2vTpk0yxsgYo40bN6pz585q3ry5uzMCAAAAAOARLJX08ePHq1ChQqpatar8/f3l7++v6tWrq3Dhwho3bpy7MwIAAAAA4BEsfSY9JCRECxYs0IEDB5ynYCtevLgKFy7s1nAAAAAAAHiS+yrpCQkJev/997Vw4ULFxcWpXr16GjRokAICAlIrHwAAAAAAHuO+lru/9957evPNNxUYGKg8efJo3Lhx6tKlS2plAwAAAADAo9xXSf/yyy81ceJELV26VPPnz9f333+vGTNmKCEhIbXyAQAAAADgMe6rpMfExKhJkybOr+vXry+Hw6E///zT7cEAAAAAAPA091XSb968KX9/f5cxHx8f3bhxw62hAAAAAADwRPd14DhjjNq1ayc/Pz/n2LVr19S5c2dlypTJOTZv3jz3JQQAAAAAwEPcV0lv27ZtorEXXnjBbWEAAAAAAPBk91XSp02bllo5AAAAAADwePf1mXQAAAAAAJB6KOkAAAAAANjEfS13B2BfBfotSvE+Do9o6oYkAAAAAKxiJh0AAAAAAJugpAMAAAAAYBMpWu7+22+/KSYmRnFxcS7jzZs3T1EoAAAAAAA8kaWSfujQIbVo0UK7du2Sw+GQMUaS5HA4JEnx8fHuSwgAAAAAgIewtNy9R48eioiI0KlTp5QxY0bt3r1ba9euVcWKFbVmzRo3RwQAAAAAwDNYmknfsGGDVq1apezZs8vLy0teXl565JFHNHz4cHXv3l3btm1zd04AAAAAAB54lmbS4+PjlTlzZklS9uzZ9eeff0qS8ufPr3379rkvHQAAAAAAHsTSTHrJkiW1Y8cORUREqHLlyho1apR8fX01efJkFSxY0N0ZAQAAAADwCJZK+ttvv63Lly9LkoYOHarHHntMNWrUULZs2TRr1iy3BgQAAAAAwFNYKumNGjVy/rtw4cLau3evzp07pyxZsjiP8A4AAAAAAO5Pis6T/ndZs2Z1164AAAAAAPBIyS7pLVu2TPZO582bZykMAAAAAACeLNlHdw8ODnZegoKCtHLlSm3ZssV5/datW7Vy5UoFBwenSlAAAAAAAB50yZ5JnzZtmvPfffv21TPPPKNJkybJ29tb0q3Tsr366qsKCgpyf0oAAAAAADyApfOkT506Va+//rqzoEuSt7e3evXqpalTp7otHAAAAAAAnsRSSb9586b27t2baHzv3r1KSEhIcSgAAAAAADyRpaO7R0ZGqkOHDjp48KAqVaokSdq0aZNGjBihyMhItwYEAAAAAMBTWCrpH3zwgXLmzKnRo0fr+PHjkqRcuXKpT58+6t27t1sDAgAAAADgKSyVdC8vL73xxht64403FBsbK0kcMA4AAAAAgBSyVNL/jnIOAAAAAIB7WDpwHAAAAAAAcD9KOgAAAAAANkFJBwAAAADAJijpAAAAAADYhOUDx23evFmrV6/WqVOnlJCQ4HLdmDFjUhwMAAAAAABPY6mkDxs2TG+//baKFi2qsLAwORwO53V//zcAAAAAAEg+SyV93Lhxmjp1qtq1a+fmOAAAAAAAeC5Ln0n38vJS9erV3Z0FAAAAAACPZqmk9+zZUxMmTHB3FgAAAAAAPJql5e6vv/66mjZtqkKFCqlEiRLy8fFxuX7evHluCQcAAAAAgCexVNK7d++u1atXq06dOsqWLRsHiwMAAAAAwA0slfQvvvhCc+fOVdOmTd2dBwAAAAAAj2XpM+lZs2ZVoUKF3J0FAAAAAACPZqmkDx48WIMGDdKVK1fcnQcAAAAAAI9labn7+PHjdfDgQYWFhalAgQKJDhwXFRXllnAAAAAAAHgSSyX9iSeecGuICRMm6P3339eJEydUpkwZffTRR6pUqdI/3m7mzJlq3bq1Hn/8cc2fP9+tmQAAAAAASGuWSvqgQYPcFmDWrFnq1auXJk2apMqVK2vs2LFq1KiR9u3bp9DQ0Lve7vDhw3r99ddVo0YNt2UBAAAAACA9WfpMuiSdP39en332mfr3769z585JurXM/dixY/e1nzFjxuill15SZGSkSpQooUmTJiljxoyaOnXqXW8THx+v559/XkOGDFHBggWtfgsAAAAAANiKpZK+c+dO/ec//9HIkSP1wQcf6Pz585KkefPmqX///sneT1xcnLZu3ar69ev/L5CXl+rXr68NGzbc9XZDhw5VaGioOnTokKz7uX79umJjY10uAAAAAADYjaWS3qtXL7Vr106///67/P39neNNmjTR2rVrk72fM2fOKD4+XmFhYS7jYWFhOnHiRJK3+eWXX/T5559rypQpyb6f4cOHKzg42HkJDw9P9m0BAAAAAEgrlkr65s2b1alTp0TjefLkuWu5doeLFy/qxRdf1JQpU5Q9e/Zk365///66cOGC83L06NFUywgAAAAAgFWWDhzn5+eX5JLx/fv3K0eOHMneT/bs2eXt7a2TJ0+6jJ88eVI5c+ZMtP3Bgwd1+PBhNWvWzDmWkJAgScqQIYP27dunQoUKJZnXz88v2bkAAAAAAEgPlmbSmzdvrqFDh+rGjRuSJIfDoZiYGPXt21dPPvlksvfj6+urChUqaOXKlc6xhIQErVy5UlWrVk20fbFixbRr1y5t377deWnevLnq1Kmj7du3s4wdAAAAAPCvZmkmffTo0XrqqacUGhqqq1evqlatWjpx4oSqVq2q995777721atXL7Vt21YVK1ZUpUqVNHbsWF2+fFmRkZGSpDZt2ihPnjwaPny4/P39VbJkSZfbh4SESFKicQAAAAAA/m0slfTg4GAtX75cv/zyi3bu3KlLly6pfPnyLkdpT65WrVrp9OnTGjhwoE6cOKGyZctqyZIlzoPJxcTEyMvL8pniAAAAAAD417BU0m975JFH9Mgjj6Q4RNeuXdW1a9ckr1uzZs09bzt9+vQU3z8AAAAAAHZgqaSPHz8+yXGHwyF/f38VLlxYNWvWlLe3d4rCAQAAAADgSSyV9A8//FCnT5/WlStXlCVLFknSX3/9pYwZMyowMFCnTp1SwYIFtXr1ag7mBgAAAABAMln6sPewYcP08MMP6/fff9fZs2d19uxZ7d+/X5UrV9a4ceMUExOjnDlzqmfPnu7OCwAAAADAA8vSTPrbb7+tuXPnupyTvHDhwvrggw/05JNP6tChQxo1atR9nY4NAAAAAABPZ2km/fjx47p582ai8Zs3b+rEiROSpNy5c+vixYspSwcAAAAAgAexVNLr1KmjTp06adu2bc6xbdu26ZVXXlHdunUlSbt27VJERIR7UgIAAAAA4AEslfTPP/9cWbNmVYUKFeTn5yc/Pz9VrFhRWbNm1eeffy5JCgwM1OjRo90aFgAAAACAB5mlz6TnzJlTy5cv1969e7V//35JUtGiRVW0aFHnNnXq1HFPQgAAAAAAPISlkn5bsWLFVKxYMXdlAQAAAADAo1ku6X/88YcWLlyomJgYxcXFuVw3ZsyYFAcDAAAAAMDTWCrpK1euVPPmzVWwYEHt3btXJUuW1OHDh2WMUfny5d2dEQAAAAAAj2DpwHH9+/fX66+/rl27dsnf319z587V0aNHVatWLT399NPuzggAAAAAgEewVNL37NmjNm3aSJIyZMigq1evKjAwUEOHDtXIkSPdGhAAAAAAAE9hqaRnypTJ+Tn0XLly6eDBg87rzpw5455kAAAAAAB4GEufSa9SpYp++eUXFS9eXE2aNFHv3r21a9cuzZs3T1WqVHF3RgAAAAAAPIKlkj5mzBhdunRJkjRkyBBdunRJs2bNUpEiRTiyOwAAAAAAFlkq6QULFnT+O1OmTJo0aZLbAgEAAAAA4KksfSa9YMGCOnv2bKLx8+fPuxR4AAAAAACQfJZK+uHDhxUfH59o/Pr16zp27FiKQwEAAAAA4Inua7n7woULnf9eunSpgoODnV/Hx8dr5cqVKlCggNvCAQAAAP8GBfotSvE+Do9o6oYkAP7t7qukP/HEE5Ikh8Ohtm3bulzn4+OjAgUKaPTo0W4LBwB4MPHHLAAAQNLuq6QnJCRIkiIiIrR582Zlz549VUIBAADwZg4AwBNZOrp7dHS0u3MAAAAAAODxLJV0SVq5cqVWrlypU6dOOWfYb5s6dWqKgwEAAAAA4GkslfQhQ4Zo6NChqlixonLlyiWHw+HuXAAAAAAAeBxLJX3SpEmaPn26XnzxRXfnAQAAAIAHEsfaQHJYOk96XFycqlWr5u4sAAAAAAB4NEslvWPHjvr666/dnQUAAAAAAI9mabn7tWvXNHnyZK1YsUKlS5eWj4+Py/VjxoxxSzgAAAAAADyJpZK+c+dOlS1bVpL066+/ulzHQeQAAAAAALDGUklfvXq1u3MAAAAAAODxLH0m/bYDBw5o6dKlunr1qiTJGOOWUAAAAAAAeCJLJf3s2bOqV6+e/vOf/6hJkyY6fvy4JKlDhw7q3bu3WwMCAAAAAOApLJX0nj17ysfHRzExMcqYMaNzvFWrVlqyZInbwgEAAAAA4EksfSZ92bJlWrp0qfLmzesyXqRIER05csQtwQDgQVGg36IU7+PwiKZuSAIAAAC7szSTfvnyZZcZ9NvOnTsnPz+/FIcCAAAAAMATWZpJr1Gjhr788ku98847km6ddi0hIUGjRo1SnTp13BoQAAAASIo7VipJrFYCYC+WSvqoUaNUr149bdmyRXFxcXrjjTe0e/dunTt3TuvWrXN3RgAAAAAAPIKl5e4lS5bU/v379cgjj+jxxx/X5cuX1bJlS23btk2FChVyd0YAAAAAADyCpZl0SQoODtZbb73lziwAAAC4Bw5ECQAPPksz6dOmTdO3336baPzbb7/VF198keJQAAAAAAB4Ikslffjw4cqePXui8dDQUA0bNizFoQAAAAAA8ESWlrvHxMQoIiIi0Xj+/PkVExOT4lAAAPfjKMgAAAD2Z2kmPTQ0VDt37kw0vmPHDmXLli3FoQAAAAAA8ESWSnrr1q3VvXt3rV69WvHx8YqPj9eqVavUo0cPPfvss+7OCAAAAACAR7C03P2dd97R4cOHVa9ePWXIcGsXCQkJatOmDZ9JBwAAAADAovsu6cYYnThxQtOnT9e7776r7du3KyAgQKVKlVL+/PlTIyMAAAAAAB7BUkkvXLiwdu/erSJFiqhIkSKpkQsAAAAAAI9z359J9/LyUpEiRXT27NnUyAMAAAAAgMeydOC4ESNGqE+fPvr111/dnQcAAAAAAI9l6cBxbdq00ZUrV1SmTBn5+voqICDA5fpz5865JRwAAAAAAJ7EUkkfO3asm2MAAAAAAABLJb1t27buzgEAAAAAgMezVNIlKT4+XvPnz9eePXskSQ899JCaN28ub29vt4UDAAAAAMCTWCrpBw4cUJMmTXTs2DEVLVpUkjR8+HCFh4dr0aJFKlSokFtDAgAAAADgCSwd3b179+4qVKiQjh49qqioKEVFRSkmJkYRERHq3r27uzMCAAAAAOARLM2k//TTT9q4caOyZs3qHMuWLZtGjBih6tWruy0cAAAAAACexNJMup+fny5evJho/NKlS/L19U1xKAAAAAAAPJGlkv7YY4/p5Zdf1qZNm2SMkTFGGzduVOfOndW8eXN3ZwQAAAAAwCNYKunjx49XoUKFVLVqVfn7+8vf31/Vq1dX4cKFNW7cOHdnBAAAAADAI1j6THpISIgWLFigAwcOOE/BVrx4cRUuXNit4QAAAAAA8CT3VdITEhL0/vvva+HChYqLi1O9evU0aNAgBQQEpFY+AAAAAAA8xn0td3/vvff05ptvKjAwUHny5NG4cePUpUuX1MoGAAAAAIBHua+S/uWXX2rixIlaunSp5s+fr++//14zZsxQQkJCauUDAAAAAMBj3FdJj4mJUZMmTZxf169fXw6HQ3/++afbgwEAAAAA4Gnuq6TfvHlT/v7+LmM+Pj66ceOGW0MBAAAAAOCJ7uvAccYYtWvXTn5+fs6xa9euqXPnzsqUKZNzbN68ee5LCAAAAACAh7ivkt62bdtEYy+88ILbwgAAAAAA4Mnuq6RPmzYttXIAAAAAAODx7usz6QAAAAAAIPVQ0gEAAAAAsAlKOgAAAAAANnFfn0kHAAAACvRblOJ9HB7R1A1JAFjBc9jemEkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCVuU9AkTJqhAgQLy9/dX5cqV9d///veu206ZMkU1atRQlixZlCVLFtWvX/+e2wMAAAAA8G+RIb0DzJo1S7169dKkSZNUuXJljR07Vo0aNdK+ffsUGhqaaPs1a9aodevWqlatmvz9/TVy5Eg1bNhQu3fvVp48edLhOwBgVwX6LUrxPg6PaOqGJAAAAEDypPtM+pgxY/TSSy8pMjJSJUqU0KRJk5QxY0ZNnTo1ye1nzJihV199VWXLllWxYsX02WefKSEhQStXrkzj5AAAAAAAuFe6zqTHxcVp69at6t+/v3PMy8tL9evX14YNG5K1jytXrujGjRvKmjXrXbe5fv26rl+/7vw6NjbWemgAwAPDHastJFZcPOhYlQMASEvpOpN+5swZxcfHKywszGU8LCxMJ06cSNY++vbtq9y5c6t+/fp33Wb48OEKDg52XsLDw1OUGwAAAACA1JDuy91TYsSIEZo5c6a+++47+fv733W7/v3768KFC87L0aNH0zAlAAAAAADJk67L3bNnzy5vb2+dPHnSZfzkyZPKmTPnPW/7wQcfaMSIEVqxYoVKly59z239/Pzk5+eX4rwAAAAAAKSmdJ1J9/X1VYUKFVwO+nb7IHBVq1a96+1GjRqld955R0uWLFHFihXTIioAAAAAAKku3U/B1qtXL7Vt21YVK1ZUpUqVNHbsWF2+fFmRkZGSpDZt2ihPnjwaPny4JGnkyJEaOHCgvv76axUoUMD52fXAwEAFBgam2/cBAAAAAEBKpXtJb9WqlU6fPq2BAwfqxIkTKlu2rJYsWeI8mFxMTIy8vP434f/JJ58oLi5OTz31lMt+Bg0apMGDB6dldAAAAAAA3CrdS7okde3aVV27dk3yujVr1rh8ffjw4dQPBAAAAABAOrBFSce9cX5WAAAAAPAM/+pTsAEAAAAA8CChpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATVDSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmMqR3AMCKAv0WpXgfh0c0dUMSAAAAAHAfZtIBAAAAALAJSjoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm+Do7gAAAAAAj2ans0cxkw4AAAAAgE1Q0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJijpAAAAAADYBCUdAAAAAACboKQDAAAAAGATlHQAAAAAAGyCkg4AAAAAgE1Q0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJijpAAAAAADYBCUdAAAAAACboKQDAAAAAGATlHQAAAAAAGyCkg4AAAAAgE1Q0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJijpAAAAAADYBCUdAAAAAACboKQDAAAAAGATlHQAAAAAAGyCkg4AAAAAgE1Q0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJijpAAAAAADYBCUdAAAAAACbyJDeAQAAAAA8eAr0W5TifRwe0dQNSYB/F2bSAQAAAACwCUo6AAAAAAA2QUkHAAAAAMAmKOkAAAAAANgEJR0AAAAAAJvg6O4AAAAAHlgcZR7/NsykAwAAAABgE5R0AAAAAABsguXud+GOZTESS2MAAAAAAMnHTDoAAAAAADZBSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm+DAcUg2DqYHAAAAAKmLmXQAAAAAAGyCkg4AAAAAgE1Q0gEAAAAAsAlKOgAAAAAANkFJBwAAAADAJijpAAAAAADYBCUdAAAAAACb4DzpANyqQL9FKd7H4RFN3ZAEAAAA+PdhJh0AAAAAAJugpAMAAAAAYBOUdAAAAAAAbIKSDgAAAACATdiipE+YMEEFChSQv7+/KleurP/+97/33P7bb79VsWLF5O/vr1KlSunHH39Mo6QAAAAAAKSedC/ps2bNUq9evTRo0CBFRUWpTJkyatSokU6dOpXk9uvXr1fr1q3VoUMHbdu2TU888YSeeOIJ/frrr2mcHAAAAAAA90r3kj5mzBi99NJLioyMVIkSJTRp0iRlzJhRU6dOTXL7cePG6dFHH1WfPn1UvHhxvfPOOypfvrw+/vjjNE4OAAAAAIB7pet50uPi4rR161b179/fOebl5aX69etrw4YNSd5mw4YN6tWrl8tYo0aNNH/+/Lvez/Xr13X9+nXn1xcuXJAkxcbG3vU2CdevJOdb+Ef3uo/kckcWu+SQ7JPlQcoh2SeLXXJI9snyIOWQ7JPFLjkk+2R5kHJI9slilxySfbI8SDkk+2R5kHJI9slilxySfbLYJYdknyxpkeP29caYe+/IpKNjx44ZSWb9+vUu43369DGVKlVK8jY+Pj7m66+/dhmbMGGCCQ0Nvev9DBo0yEjiwoULFy5cuHDhwoULFy5c0vVy9OjRe/bkdJ1JTyv9+/d3mX1PSEjQuXPnlC1bNjkcDkv7jI2NVXh4uI4ePaqgoCB3Rf3X5rBTFrvksFMWu+SwUxa75LBTFnLYN4tdctgpi11y2CmLXXLYKQs57JvFLjnslMUuOeyUxS453JXFGKOLFy8qd+7c99wuXUt69uzZ5e3trZMnT7qMnzx5Ujlz5kzyNjlz5ryv7SXJz89Pfn5+LmMhISHWQt8hKCgo3R8wdsoh2SeLXXJI9slilxySfbLYJYdknyzkSMwuWeySQ7JPFrvkkOyTxS45JPtkIUdidslilxySfbLYJYdknyx2ySGlPEtwcPA/bpOuB47z9fVVhQoVtHLlSudYQkKCVq5cqapVqyZ5m6pVq7psL0nLly+/6/YAAAAAAPxbpPty9169eqlt27aqWLGiKlWqpLFjx+ry5cuKjIyUJLVp00Z58uTR8OHDJUk9evRQrVq1NHr0aDVt2lQzZ87Uli1bNHny5PT8NgAAAAAASLF0L+mtWrXS6dOnNXDgQJ04cUJly5bVkiVLFBYWJkmKiYmRl9f/JvyrVaumr7/+Wm+//bbefPNNFSlSRPPnz1fJkiXTNLefn58GDRqUaBl9WrNLDjtlsUsOO2WxSw47ZbFLDjtlIYd9s9glh52y2CWHnbLYJYedspDDvlnsksNOWeySw05Z7JIjrbM4jPmn478DAAAAAIC0kK6fSQcAAAAAAP9DSQcAAAAAwCYo6QAAAAAA2AQlHQAAAAAAm6CkAwAAAABwD/Hx8dq+fbv++uuvVL+vdD8F279NXFycoqOjVahQIWXIwI8PSMrChQuTvW3z5s1TMYmrn376SR988IH27NkjSSpRooT69OmjGjVqpFmGpMTHx2vXrl3Knz+/smTJkq5Z0sv58+f1+eefO383Dz30kNq3b6/g4OBUv+9evXole9sxY8akYpL/iYqKko+Pj0qVKiVJWrBggaZNm6YSJUpo8ODB8vX1TZMcwL+RXV7rz58/rzlz5ujgwYPq06ePsmbNqqioKIWFhSlPnjxpmgW4H+ndd+zyHH7ttddUqlQpdejQQfHx8apVq5bWr1+vjBkz6ocfflDt2rVT7b45BVsyXblyRd26ddMXX3whSdq/f78KFiyobt26KU+ePOrXr1+aZbl69aqMMcqYMaMk6ciRI/ruu+9UokQJNWzYMM1y2FVsbKxWrVqlokWLqnjx4ukdxyN5eSVvkY7D4VB8fHwqp7nl//7v/xQZGamWLVuqevXqkqR169bpu+++0/Tp0/Xcc8+lSQ4pfV/07WjLli1q1KiRAgICVKlSJUnS5s2bdfXqVS1btkzly5dP1fuvU6dOsrZzOBxatWpVqma57eGHH1a/fv305JNP6tChQ3rooYfUokULbd68WU2bNtXYsWPTJAdwLzt27FDp0qXlcDjSO4qTXV7rd+7cqfr16ys4OFiHDx/Wvn37VLBgQb399tuKiYnRl19+mar337Jly2RvO2/evFRMgn8yZ84czZ49WzExMYqLi3O5LioqKk2z2KHv2OU5LEl58+bV/PnzVbFiRc2fP19dunTR6tWr9dVXX2nVqlVat25dqt03JT2ZevTooXXr1mns2LF69NFHtXPnThUsWFALFizQ4MGDtW3btjTL0rBhQ7Vs2VKdO3fW+fPnVaxYMfn4+OjMmTMaM2aMXnnllTTLYocXlmeeeUY1a9ZU165ddfXqVZUpU0aHDx+WMUYzZ87Uk08+mSY57nTlypUkfy6lS5dOk/uPj4/Xhx9+eNffz7lz59Ikh10UL15cL7/8snr27OkyPmbMGE2ZMsX5bm1aSM8X/aQcPHhQY8eOdXnHukePHipUqFCa3H+NGjVUuHBhTZkyxfmO/c2bN9WxY0cdOnRIa9euTZMcdhIcHKyoqCgVKlRII0eO1KpVq7R06VKtW7dOzz77rI4ePZreESHp8uXL+umnn5J8je3evXua5UivlSijR4/Wzz//rJkzZ8rf3z9V7yu57PJaX79+fZUvX16jRo1S5syZtWPHDhUsWFDr16/Xc889p8OHD6fq/UdGRiZ722nTpqVikqT98ccfWrhwYZLPnbRasWSHHOPHj9dbb72ldu3aafLkyYqMjNTBgwe1efNmdenSRe+9916qZ/g7O/QduzyHJcnf318HDhxQ3rx59fLLLytjxowaO3asoqOjVaZMGcXGxqbenRskS758+cyGDRuMMcYEBgaagwcPGmOM+f33303mzJnTNEu2bNnMr7/+aowxZsqUKaZ06dImPj7ezJ492xQrVizV7nfBggXm5MmTzq/HjRtnMmfObLp162a8vLxM3759TY0aNUxISIh56623Ui3HncLCwsz27duNMcbMmDHDFC5c2Fy+fNlMnDjRlC1bNs1y3Hbq1CnTtGlT4+XlleQltXzxxRdm7969zq8HDBhg8uTJY0aPHm0cDof55JNPzAsvvGCyZctmxo0bl2o57MrX19f8/vvvicZ///134+fnl6ZZ/Pz8zNGjR40xxrz00kumR48exhhjDh06lOavJ0uWLDG+vr6mUqVKpmfPnqZnz56mUqVKxs/PzyxbtixNMvj7+5s9e/YkGt+9e7cJCAhIkwx2kzlzZrN//35jjDH169c3Y8eONcYYc+TIEePv758umb799lvz9NNPm8qVK5ty5cq5XDwhy5EjR1y+joqKMjlz5jTBwcHGy8vLhIWFGYfDYTJlymQiIiJSLcedNm/ebLJmzWry5MljWrRoYVq0aGHy5s1rsmXLZrZu3Zqq952QkGD69+9vqlevbowxJiQkxGTJkuWul7Rgl9f6oKAgc+DAAWOM69+Nhw8fTvP/59jNihUrTMaMGU3JkiVNhgwZTNmyZU1ISIgJDg42derU8agcRYsWNV9//bUxxvVxMmDAANOlS5c0yfB3dug7dnkOG3Pr57F06VJz8+ZNEx4ebn744QdjjDG//vqrCQkJSdX7pqQnU0BAgPOB+vcH7fbt201QUFCaZ7n9x8LTTz9tBg8ebIwxJiYmJlX/oJ01a5YpUqSI2bdvnzHm1gvLrFmzjDHGOBwO53b9+vVL0xcWf39/ExMTY4wx5sUXXzR9+/Y1xtz6gypTpkxpluO25557zlSvXt1s3rzZZMqUySxbtsx89dVXpmjRos4nd2pYunSpyZcvn/n555+NMcYULFjQLFq0yBjj+vsZPXq0ad26darlSMqlS5fMokWLzCeffGLGjRvnckkrhQoVMpMmTUo0/sknn5jChQunWQ5j0vdF/05ly5Z1Pmf+rm/fvmlWvkJDQ83SpUsTjS9ZssSEhoamSYbbateuberUqXPXS1qpU6eOadOmjfnyyy+Nj4+P8w+WNWvWmPz586f6/dv1TdnbWQIDA03Xrl2Nr6+v6dSpk6lfv74JDg42b775Zqrd7zvvvGNeeeUVk5CQYIwxplatWqZz584mPj7e+Rp74MABU716dTN37txUy3GnRx55xLRr187cuHHDOXbjxg3Ttm1bU6NGjTTJMH/+fGOMMdOmTTPTp0+/6yUt2OW1PkeOHCYqKsoY4/p347Jly0zevHnTLIcdPfzww2bgwIHGmP/9bC5evGiaN29uJk6c6FE5AgICzOHDh40xtx4ztyed9u/fb7JmzZomGe7Mk959xy7PYWOMGTRokAkODjbFihUz+fLlM9euXTPGGPP555+bKlWqpOp9U9KTqUaNGmb8+PHGmFsP2kOHDhljjOnatatp1KhRmmYpVaqUGTdunImJiTFBQUFm/fr1xhhjtmzZYsLCwlL1vlevXm1KlSpljHF9syAgIMBcvHjRGJP2LyxFihQxs2bNMpcuXTI5cuQwK1euNMbcekHJli1bmuW4LWfOnGbTpk3GmFuzYbff1FiwYIFztiG17Nmzx1SuXNkYY0zGjBmdv5/AwEBz/vx5Y4wxBw8eTNM3lm7PNgUFBRlvb2+TI0eOdJltmjhxovH19TWdO3c2X375pfnyyy9Np06djJ+fX5L/M0hN6fmifyc/Pz/njO3f7du3L83ese7WrZvJmzevmTlzpomJiTExMTHmm2++MXnz5nWuMkgrr732msulS5cupnr16iY4ONh07949zXLs2LHDlCxZ0gQFBTnfiDXm1v9z0uJNNru+KXs7S3rMPF25csW0b9/eNGvWzBhjTHBwsHP1kre3t4mLizPGGLN+/XpTtGjRVMtxJ1aiuLLLa32HDh3ME088YeLi4px/Nx45csSUK1cuzV/XChQoYCIiIu56SWuBgYHOVQYhISHO1aHbt29Pkzch7ZQjIiLC+WZOhQoVnI/RpUuXptnqk7+zQ9+xy3P4tm+//daMGTPGuQLSGGOmT5/ufHMytVDSk+nnn382gYGBpnPnzsbf39/06NHDNGjQwGTKlMls2bIlTbN8++23xsfHx3h5eZkGDRo4x4cNG2YeffTRVL//M2fOGGNcX1iKFSvmnAlbvHhxmpb0CRMmmAwZMpiQkBBTpkwZEx8fb4wxZvz48aZ27dppluO2zJkzm+joaGPMrRnTX375xRhzaylzWvzBdLvw/ec//zEbN240xtyaLf3mm2+MMbc+EpCWs5O1atUyL730komPj3f+QR0TE2Nq1qyZprNNxhgzb948U716dZM1a1aTNWtWU7169VR/kb2b9HrRv1PevHnN7NmzE43PmjXLhIeHp0mG69evm+7duxtfX1/nx0L8/PzMa6+95nw8p7dBgwaZ3r17p3cMc/XqVWcZTG12fFP29v2n58zT7dfS7NmzO9/gyp07t/Pfe/bsMRkzZkz1HLfZaSXKkSNH7nlJK3Z4rT9//rypX7++CQkJMd7e3iY8PNz4+PiYmjVrmkuXLqVplrFjx7pc3n//ffPcc8+ZrFmzmuHDh6dpFmNufUzxt99+M8YYU7x4cbNgwQJjzK1ynJYrIO2Qo0OHDs43Yj/++GMTEBDgfNy0b98+TTL8nV36jh2ew+mNkn4fDh48aDp27GgefvhhU7x4cfP888+bnTt3pkuW48ePm6ioKGchNcaYTZs2Jfluemr5+wvL+++/b0JCQkzDhg1NUFCQ6dixY5rlMObWKoJ58+Y5/3A0xpgffvjBWZDTUsWKFc2SJUuMMcY0a9bMvPjii+aPP/4wb7zxhilYsGCa5ejbt6957733jDG3yp+Pj4/5z3/+YzJkyJCqS0Lv9PfZpuDgYOf/EDdu3Jims01I2pAhQ0xISIgZMWKEWbt2rVm7dq0ZPny4CQkJMUOHDk3TLJcvXzY7d+40O3fuNJcvX07T+/4nv//+e7rMaqQ3u70pe2eW9Jx5atCggZkxY4Yxxpjnn3/eNGrUyHz99demXr16zhVNacFOK1EcDsddj8eSmsdkue3GjRtmyJAhLm9+prdffvnFTJgwwYwcOdIsX748veO4+Pjjj027du3S/H4ff/xxM3nyZGOMMb179zaFCxc27777rilfvrypV6+eR+WIj493+ajKN998Y7p162bGjx9vrl+/niYZ7nTgwAHb9B07WLFihenfv7/p0KGDiYyMdLmkJkp6MsTFxZnIyEjnkg/ccucLy//93/+Zrl27mo8++ijNZnrs6KuvvjLTpk0zxtx68yB79uzGy8vL+Pv7m5kzZ6Zbrp9//tl88MEH5vvvv0/T+/37bFORIkWcb2Ck9WxTRESEs3D83V9//ZUuy/3s8Dl9Y24d+GnMmDEmT548xuFwGIfDYfLkyWPGjh3r/OxtWrtw4YL57rvvnG/o2MGXX35pcuXKlar3kSVLFnP69GljjD0OwPV3dnpT1i4zT5s3bzarVq0yxhhz7NgxU79+fRMYGGgqVKiQpn/Q2mklyvbt210umzdvNpMnTzbFihVLs5VTmTJlcq5mS09ffPFFkj//69evmy+++CIdEiV28ODBND9Y6e373bFjhzHm1v8LO3XqZEqVKmVatmzpXCXjSTlgX4MHDzZeXl6mUqVK5vHHHzdPPPGEyyU1cQq2ZAoODtb27dsVERGR3lEk3Tqv8N1OreWJ57tM71No3MuVK1e0d+9e5cuXT9mzZ0+T+7xx44Y6deqkAQMGpPtjtmHDhmrXrp2ee+45vfTSS9q5c6e6d++ur776Sn/99Zc2bdqUJjm8vLx04sQJhYaGuoyfPHlS+fLl0/Xr11PtvmNiYpQvXz7n19u2bVOTJk109epVXbx4UTly5NCpU6eUMWNGhYaG6tChQ6mW5V4uXrwoScqcOXOa3q+dTqN457mFjTE6fvy4tmzZogEDBmjQoEGpdt9ffPGFnn32Wfn5+TnPUXs3bdu2TbUcSUlISFBCQoLzFHkzZszQxo0bVbRoUXXq1Ek+Pj7plmXmzJlav369ihQpok6dOsnX1zfVMxhjdPToUYWGhtrm1GNXrlzRwYMHJUmFChVSxowZ0znR/yxatEjvv/++1qxZk+r39fjjj6tly5Zp/hy5k7e3t44fP57o/zlnz55VaGio4uPj0ynZ/4waNUoTJ05M9dPB4d7Onz+v//73vzp16pQSEhJcrmvTpk2a54mPj9d3333nclrWxx9/3PmamxqyZMkih8ORrG3T8hTCuXLl0qhRo/Tiiy+m2X3eRklPprZt26ps2bKJztmXHmbOnKk2bdqoUaNGWrZsmRo2bKj9+/fr5MmTatGiRZqe7/Kvv/5yOTdriRIlFBkZqaxZs6ZZhpUrV6p58+YqWLCg9u7dq5IlSzr/wC9fvrxWrVqVZlnsxC5vLG3ZskUXL15UnTp1dOrUKbVp08b5B/XUqVNVpkyZVL3/hQsXSpKeeOIJffHFFy7nDY6Pj9fKlSu1fPly7du3L9UyvPvuu/rzzz81YcIEORwO1a5dW8WLF9eECROUIUMGJSQk6ODBg2rbtq169eqVqCg+6HLmzKmlS5eqTJky+vrrrzVo0CDt2LFDX3zxhSZPnpwm52W97c5zC3t5eSlHjhyqW7euGjZsmGY5YG8JCQny9/fX7t27VaRIkXTNcuHCBcXHxyf6/+65c+eUIUMGBQUFpVOy/zlw4IDKlCmjy5cvp/p9TZo0SUOGDNHzzz+vChUqKFOmTC7XN2/ePNUzSP/f3n1HRXWtfwP/ztA7WFCQIlgQBGyIvWNFsEVjF7A3rCjGhl1Rih0LiKhRibGhxoYdsCsgihRRiQoasEQQFdjvH1zOZQTU+3sz+4zh+azFWs6ZyT3fS5k5++y9n6fovSMzMxNVq1aVOR4bG4sOHTpwHWg0atRIZgDEGENGRgZevXqFTZs2YcyYMdyyKKr379+XGiDz+NuJiIjAkCFD8P79e+jq6sr8nCQSCdffEwBISEiAq6srMjIyYGVlBQBISkpC1apVERERAVtbW7mc91s3pkvieQOucuXKuH79OmrVqsXtnMVokP6dli5dCj8/P3Tq1KnMN31PT09uWezt7TF27FhMnDgROjo6iI2NhYWFBcaOHQsjIyMsWrSIS45Lly7B1dUVurq6cHBwAADcunULb968QUREBNq2bcslh6OjI7p3745FixYJ3w9DQ0MMGTIE3bp1w/jx4+WeYfr06ViyZAm0tLQwffr0r76W18y+ItxYUoTZJqlUCqDow+7LtzsVFRXUrFkTfn5+6Nmzp9wyfPjwAZMmTcKrV69w9OhR6Ovr49q1a7CysoKysjI+fPgAFRUVxMTEwN3dHYmJiXLLUpYDBw6UuzLn9u3bcj+/hoYGkpKSYGpqiuHDh8PY2BgrV67E06dPYWNjg/fv38s9gyLLy8sr9XMRY+ClSLM9inCDuH79+ggODkbz5s25nbMs3bt3h4uLCyZMmCBzPCgoCEePHsWJEye4ZXn37p3M4+KVKD4+PkhMTMTdu3flnqH4Pb8sEolE7jPYxQPi2NhY1K9fX2b2saCgAGlpaejWrRvCw8PlmqOkL68Li28+tm/fHvXq1eOSoVKlSkhKSkKVKlW+OWvKa2CalpaGSZMm4cKFC8jLyxOOM8a4/K4AQN26ddGjRw8sX75cIVa/tGjRAlWrVsXOnTthYGAAoOj91s3NDa9evUJ0dLTICfmaPXs2tLW1MX/+fO7nlt+6hX+Z4OBg6Ovr49atW7h165bMcxKJhOsgPTU1Fc7OzgAAVVVV5OTkQCKRYNq0aejYsSO3QfrEiRMxYMAAbN68GUpKSgCKPoAmTJiAiRMnIj4+nkuOBw8eYO/evQAgDHi0tbWxePFi9OrVi8sg/c6dO/j8+bPw7/J871Kef0KdOnWwePFiREVFiXZjiTGG2rVrizrbVDyYsLCwwI0bN7htOShJQ0MDwcHB2LdvH4CimwPFF5LVqlXD48ePUadOHRgYGCA9PV3ueXr27Inx48fD2dkZ69atw9y5c+Hm5oYjR47A3d0dqampuHHjBiZOnCj3LABgamqKmJgYVKpUCSdPnhS+T69fvxZ1KXFeXh7279+PnJwcdO7cmevvcE5ODmbPno3w8HBkZWWVep73UtlvzfbwHKSXdYN43bp1WLx4MdcbxCtXroSXlxc2b94st9ml73Ht2rUyb/62b98ec+fO5ZpFX1+/1OccYwympqbC37W8fXkDibfevXsDAO7evYuuXbtCW1tbeE5VVRU1a9bkuoUHgFy36XyvgIAAYStVYGCguGH+Y+jQoWCMISQkBNWqVeN6jVbs2bNn8PT0VIgBOlD0e3vz5k1hgA4ULUVftmwZmjZtyiXD06dPv/p8ye2D8paXl4etW7fi7NmzsLe3L7W1S64Tb3Ld8U7kokaNGkJRGjs7O6FfbHR0NNf+1+rq6kLV7pISExOZuro6txyK0EJDEdWsWbPcL56F0mxsbFhMTAy38/0IxK4K/eDBA6HTgFg9p0tShDaK06ZNY5MmTRIef/z4kTVo0ICpqKgwPT09pqWlxaKjo7lkYYyxCRMmMGtra3bgwAGmoaHBQkJC2JIlS5iJiQnbvXs3txzF6tSpw6ZMmaIQVfdtbW3Z6NGjWX5+vnAsPz+fjRkzhtna2nLLoa+vLxRrU1dXF624n6amZpmF6uLi4rj3Sb9w4YLM16VLl9iDBw9kisxWBPn5+Sw0NJQ9f/5c1ByfP38uVbwuIyOD+fj4MC8vL3b58mWRkikGLS2tMq9jeerTpw/bv3+/qBlKsre3Z5GRkaWOR0ZGcnt/FbtLREnt27cv96tDhw5yPTfNpP+A2rZtizNnzsDOzg79+/fHlClTcO7cOZw5cwadOnXilqNx48Z48OCBsGel2IMHD+S+z7ik5s2b48qVK7C2tkaPHj0wY8YMxMfH4+DBg6IvQxRTWlqa2BEAKM5sE1BUvyAyMrLM5bohISHccixfvlwo0ubr64sRI0ZgzJgxsLKy4lJTwt/fHz///DOAojvWLVu2BFA041+ca9iwYWjevDk2bNgg9zwTJkyAo6Mj0tPT0blzZ2GVgaWlJZYuXSr38wPA6dOnsXz5cuHxnj178PTpUyQnJ8PMzAweHh5YunQpjh8/ziVPREQEwsLC0L59e7i7u6NNmzaoXbs2zM3NsWfPHgwZMoRLjmKKNNuTkpKCAwcOCCu4gKIiXdOnT0dYWBi3HIoyG+jo6IitW7di/fr1MseDgoLQpEkTrlnatWvH9XzF1q1bhzFjxkBdXR3r1q376mt5rCJTUlLC2LFjhe0YYhk9ejRUVVWxZcsWAEXFQZs2bYq8vDwYGRkhICAAR44cQY8ePbhnKywsREpKSpmfx7xWwzRt2hTp6emlrmN5cnZ2hpeXF+7fvw87O7tSM7W8aigUW7FiBTw9PeHj4yNcQ1+9ehWLFy/GqlWrZLa0yGvb1ZcrUj9//ow7d+7A398fy5Ytk8s5y3P+/Hmu5yuJ9qR/p379+sHR0RGzZ8+WOe7r64sbN27gt99+45YlOzsbeXl5MDY2RmFhIXx9fYVCXPPmzZNZoiJP+/fvx6xZszB58mSZP+SNGzdi5cqVsLa2Fl5rb28vtxyPHj3C+/fvYW9vj5ycHMyYMUP4fvj7+8Pc3Fxu5y5LTk4OVq5cWe5gUKzK3WIxMDBAbm4u8vPzoaqqCg0NDZnnee09W7RoERYvXgwHBwcYGRmVWtZ26NAhLjkUQZUqVeDr6wsPDw9YWlri999/R6NGjeDg4IDRo0dj7NixOH36NAYOHMi9aA1QtJQ7Pj4e5ubm3N7PdHV1cfv2bdSuXRsAMGjQIOjo6GDr1q0AipYA9ujRA8+fP+eSR1tbG/fv34eZmRlMTExw8OBBODo6Ii0tDXZ2dtz36fft2xcDBw7EgAEDuJ63LK1atYKXl5ewrLjY4cOHsXLlSly9elWcYCKJioqCk5MTmjZtKtyoj4yMxI0bN3D69Gm0adOGe6b79++XWeNCXgMOCwsL3Lx5E5UrV/5qsVSJRMLtM9jBwQGrVq3iOnnypbp162LDhg1C0cuNGzdi+fLluH//PvT09DB79mxcv36d+0Dk6tWrGDx4MJ48eVKqVgyvveBA0fbRcePGYejQobC1tS01QJbntWsxsWsofKlknuLrpOKfUcnHYmTj2SVCEdBM+ne6dOkSfHx8Sh3v3r07/Pz8uGYpWRhHKpXC29ub6/mLDRo0CAAwa9asMp8rLtQl7z9kS0tL4d9aWloICgqS27m+x6hRo3Dx4kUMGzaszMEgT4rQmk5RZpuCgoIQGhoqShsNRXPs2DEcO3YMANCxY0ccPXoUjRo1gru7O6ZNm4YDBw7g5s2b3KrMT506FXZ2dhg5ciQKCgrQrl07REdHQ1NTE8eOHUP79u3lnkEqlcpcLF69elWmUIy+vj5ev34t9xzFLC0tkZaWBjMzM9SrVw/h4eFwdHREREQE9PX1ueUoJvZsT1xcnPBvT09PTJkyBSkpKWXeIBaDmMX9WrVqhZiYGKxevRrh4eHQ0NCAvb09goODudcCefToEfr06YP4+HiZYp3Fn4PyuhYouXJMUVaRLV26FDNnzsSSJUvKrAvD4/fj2bNnMr8DkZGR6Nevn9DlZMSIEVw7AhUbN24cHBwccPz4cVGvk169eoXU1FSZrh68rl2LiV1D4Utizhx/i5WVFW7cuCH38/Tt2xehoaHQ1dX95nWQPNte00z6d9LQ0MDdu3dLLYlJTExEo0aN8OHDB655CgoKcPjwYWEpVf369eHq6iqz/E/enjx58t2v5TGb/enTpzJnrnkWmACKLuaPHz+OVq1acT3vl6g1nSwx22gARdtDIiMjYWBgUKodzpd4VFQvpgg9p01MTHD48GE4ODjg8OHDmDhxIs6fP49du3bh3LlziIqKknuGFi1aoH///pg+fToSEhJgb2+PlJQUYVbu4sWLGDFiBLd+wgEBAVBSUoKnpyfOnj0LFxcXMMbw+fNn+Pv7Y8qUKVxyFBN7tkcqlZbZoUGMLMUUrbifInBxcYGSkhK2b98OCwsLXL9+HVlZWZgxYwbWrFnDdVb/06dPSEtLQ61ateTa37k8Zc1IAnxnIStXrozLly/DxsYGAGBsbIzVq1cL22UePXoEW1tb5Obmyj1LSVpaWoiNjRVWLonFxsYG1tbWmDVrVpmF43ivxCRFxO4S4e7ujnXr1kFHRwdubm5fvV6T500umkn/TnZ2dti/fz8WLFggc3zfvn3Cmx8vKSkpcHZ2xp9//incNFixYgVMTU1x/PhxboMQRXnzSkpKwsiRI0u1hRBrOY6BgQHXNkDlmTNnDmbOnCm0pvv9999lWtPxlJqaih07diA1NRVr166FoaEh/vjjD5iZmaF+/fpcMowaNQq//vqrKG00AKBXr15QU1MDgFLLdMUklUplLiYHDhyIgQMHcs3w119/oXr16gCAEydOoH///qhbty48PDywdu1aLhlmzZqFgQMH4vjx40hISECPHj1kls2eOHECjo6OXLIAkGmd6OTkhMTERNy6dQu1a9fmsgTzS2LP9ijK7GhJs2bNwvnz57F582YMGzYMGzduxLNnz7BlyxauM/qKVAk5JiYG586dQ5UqVYT3ltatWwv7XL/W/eSfkpubi8mTJwt9l5OSkmBpaYnJkyejRo0a3FYfKsKMZMOGDbFr1y6sWLECly9fRmZmJjp27Cg8n5qaCmNjY+65mjVrhpSUFNEH6U+ePMHRo0e551C0GgpxcXGwtbWFVCqVWbVUFh6fP2J3iSg58A4NDZX7+cpDM+nfKSIiAn379sXgwYOFN7jIyEj8+uuvOHDgANeL7h49eoAxhj179giDwaysLAwdOhRSqZRbYaNivPeefalVq1ZQVlaGt7d3mcumeBaxA4Ddu3fjyJEj2Llzp6hFlnR0dHD37l3UqlULBgYGuHLlCurXr4/Y2Fj06tWL24zgxYsX0b17d7Rq1QqXLl3CgwcPYGlpiZUrV+LmzZs4cOAAlxxTpkxBWFgY7O3t+bfRUHBi9782NzfHtm3b0KlTJ1hYWGDz5s1wdnZGQkICWrduzW2ZeWRkJI4dO4bq1atj8uTJMn+/ixYtQrt27bgsvf/8+TO6deuGoKAg0VoXKpKdO3eiRYsWqFu3rthRZJiZmQnF/UrWNNi1axf27t3LrT958SqD8vC8UW1gYIDbt2/DwsICtWrVwvbt29GhQwekpqbCzs6Oy4ztlClTEBUVhcDAQHTr1g1xcXGwtLTEkSNH4OPjw+VGgaIo/vw1MjLCixcvMGjQIAQHBwvPT5gwATk5OcINDV4OHTqEefPmwcvLq8ztM7xuRLq4uMDNzY17SzxFq6EglUqRkZEBQ0PDr65a4jXxdfHixVL5qlatitq1a3NfFdOxY0ccPHiw1Dazd+/eoXfv3nJdlUoz6d/JxcUFhw8fxvLly3HgwAFoaGigQYMGOHfuHPdZ04sXL+Lq1asy561cuTJWrlzJdYm1WHvPvnT37l3cunUL9erV43K+sny5fDklJQXVqlVDzZo1S3348FrKrKWlJdw4MTIyQmpqqjBr/ddff3HJAADe3t5YunQppk+fLvRIBYre+HhUDi8WFxeHhg0bAgDu3bsn85xY++Fu3bols2WlUaNG3DMoQv9rd3d3DBgwQLjJ5uTkBKCo/zPPv+tOnTqVW+SJZ59hFRWVb85miCEnJwcXL14s86asPGd7jIyM0LlzZ+zfvx/NmzfH0aNHv/p6XjeIs7OzhZoourq6QpHF1q1bY/z48VwyAIpVCdnW1haxsbGwsLBAs2bN4OvrC1VVVWzdulWmfow8HT58WPhdKfl+Vr9+faSmpnLJUOzNmzcIDg6WeZ/38PAQ9oTLW7t27XDr1i2cPn0a1atXR//+/WWeb9iwIdcVQsWKB8UeHh7CMd57wYGia/tp06YhPj6ea60NRauhkJaWhqpVqwr/FptYXSLKcuHChVKfd0BRHZLLly/L9dw0SP8fODs7w9nZGUDRHZS9e/di5syZuHXrFtc71WpqakKbpJLev3/PZf9osSlTpsDCwgKRkZFl7j3jxcbGhuugsyyKtHy5mKK0pouPj8evv/5a6rihoSHXn5siLD0s9vLlSwwcOBAXLlwQ7s6+efMGHTp0wL59+4QPSx5mzJgBDw8PLF++XLSVHz4+PrC1tUV6ejr69+8vbAtQUlISrTCm2IYOHYrg4GDRCqF96c6dO+jRowdyc3ORk5ODSpUq4a+//oKmpiYMDQ3lOkjv0qULjh49imHDhiEuLu6r77c8L/AVpbhfWavFHBwchP3HvApAAsC8efOQk5MDAFi8eDF69uyJNm3aoHLlyti/fz+XDK9evYKhoWGp4zk5OVxvyN68eRNdu3aFhoaGMBAuvnFy+vRpNG7cmEsOa2trmW47JY0ZM4ZLhi8pwkAQKCpgBxT9rn6Jx3vJ58+fUa9ePRw7dqzcnxEPJbevKspWVkDclbolb5Tfv38fGRkZwuOCggKcPHkSNWrUkG8IuXZh/xe6ePEiGz58ONPS0mJ16tRhs2fPZtevX+eaYdiwYax+/frs6tWrrLCwkBUWFrKYmBhma2vLRowYwS1H5cqVWWxsLGOMMV1dXZaYmMgYYywyMpI1bNiQW47IyEjWokULdv78efbXX3+xt2/fynxVVKmpqcLP5/3792zs2LHMzs6O9e3blz1+/Jhbjho1arCoqCjGGGPa2tosNTWVMcbYwYMHmaWlJbccimTAgAHMwcGB3b9/XziWkJDAHBwc2MCBA7lm0dTUFH4mRHFMmjSJ6erqsiZNmrAxY8awadOmyXzx1q5dOzZ69GhWUFAg/B0/ffqUtW3blv3+++9cMrx+/ZrLeb6Xv78/W7t2LWOMsTNnzjB1dXWmpqbGpFIpCwwMFDkdY8nJyUxTU1PsGCwrK4sVFhZyO1+bNm3YunXrGGNFnzmPHj1ijBX9TXXt2pVbjtatWzM3Nzf2+fNn4djnz5/ZiBEjWJs2bbjlIIrN2NhY5lpAbEeOHCnz6+jRo+z06dPC35M8paamMnt7eyaRSJhUKmUSiUT4t1Qqlfv5GWMy5ys+f8kvTU1NFhwcLN8MjNGe9G/JyMhAaGgogoOD8e7dOwwYMABBQUGIjY3lXjQOKJpxGzFiBCIiIoSlOfn5+XB1dUVoaCi3ZVSKsPcM+G8F1bKKTIhROI7ImjlzJq5du4bffvsNdevWxe3bt5GZmYnhw4dj+PDhXJcR37x5E+Hh4WXemZVnG40v6enp4ezZs2jatKnM8evXr6NLly548+YNtyyK0v/64sWLWLNmjbAs1MbGBl5eXqL0eFYEHTp0KPc5iUTCvTuDvr4+rl27BisrK+jr6yMmJgbW1ta4du0aRowYgcTERK55xFRYWIjVq1fj6NGj+PTpEzp16oSFCxfi5cuXohT3E7sSsqK5cuUKunfvjqFDhyI0NBRjx47F/fv3ER0djYsXL6JJkyZccmhoaODOnTultuzcv38fDg4O3CuqK5rU1FQEBgbKvOdPmTJFtA4sYlm+fDmSkpKwfft2UboQfKm8PekltyO0bt0ahw8fhoGBgVwyKEKXiCdPnoAxBktLS1y/fl1mhaOqqioMDQ3l3lFL/N8GBefi4oJLly7B2dlZKEKipKQkai9ufX19HDlyBMnJycKFkbW1NffqlIqw9wxQrGXMQNEymICAgHIHg8X7Fnl48+YNDhw4gNTUVHh5eaFSpUq4ffs2qlWrJv9lOv+xfPlyTJw4EaampigoKICNjQ0KCgowePBgzJs3j0sGoKgTw/Dhw9G1a1ecPn0aXbp0QVJSEjIzM9GnTx9uOYCii/wv974BRXuReVTRLrmnV+z+10BRsUV3d3f07dtXWDYdFRWFTp06ITQ0FIMHD5Z7BkWjaO9rKioqwg1RQ0NDPH36FNbW1tDT00N6ejr3PGLtjweAZcuWwcfHB05OTtDQ0MDatWvx8uVLhISEiLJUVOxKyCV7Cvfp0+erS8p53Axt3bo17t69i5UrV8LOzk5YWh4TEwM7Ozu5n7+Yrq4unj59WmqQnp6eLlOfpSKJi4uDvb09Tp06BVdXVzRs2FCopRQVFYX69esjIiICnTt3llsGRausfuPGDURGRuL06dOws7ODlpaWzPM8JxAA4MyZM5g7dy6WLVsmbNO4fv065s+fj3nz5kFPTw9jx47FzJkzZYoQ/pMUoUtE8Xu5mJ1NaCb9G5SVleHp6Ynx48fLVNlVUVERbSZdUZw6dQo5OTno27cvUlJS0LNnTyQlJQl7z0q2+ahIFixYgO3bt2PGjBmYN28e5s6di8ePH+Pw4cNYsGABlzd9oOjD0MnJCXp6enj8+DEePnwIS0tLzJs3D0+fPkVYWBiXHMWePn2Ke/fu4f3792jUqBH3qtX29vYYO3YsJk6cCB0dHeEG09ixY2FkZIRFixZxy9KrVy+8efMGe/fuFdrfPHv2DEOGDIGBgQEOHTok1/N/red1SbxWolhbW2PMmDEybceAov2b27ZtE2ZaeHr16hUePnwIALCysuJaJ6CklJQUpKamom3bttDQ0BBmMnjr0qUL3NzcMHjwYIwePRpxcXHw9PTErl278Pr1a1y7do1blm/tj5d3NeQ6depg5syZGDt2LADg7NmzcHZ2xocPH777b+ufJHYl5JI9hd3d3b/az16ePYUVjaenJw4dOoQ1a9agZcuWAIoGol5eXujXrx8CAwPFDchRQUEBlixZgnPnzuHSpUto1KgRunbtWqrmhre3N06fPi3XAruKVlnd3d39q8/z/puxtbXF1q1bhd/ZYlFRURgzZgwSEhJw9uxZeHh4fLP94/+VoqzULZacnIzz58+X2QHny9bc/yQapH/D1atXERwcjP3798Pa2hrDhg3DwIEDYWRkJNogffr06WUel0gkUFdXR+3atdGrVy9RenVnZ2fDwMCA+0Wk2BVUS6pVqxbWrVsHZ2dnmTZo69atw9WrV8ssoiYPTk5OaNy4MXx9fYVBqaWlJaKjozF48GBuLdgUhZaWFhISElCzZk1UrlwZFy5cgJ2dHR48eICOHTvixYsX3LKkp6fD1dUVCQkJMDU1BVB0E8POzg5Hjx6FiYkJtyyKQE1NDQkJCaVWA6WkpMDW1hZ5eXncsuTk5GDy5MnYtWuXcINCSUkJw4cPx/r167kV18vKysKAAQNw/vx5SCQSJCcnw9LSEh4eHjAwMICfnx+XHMVu3ryJv//+Gx06dMDLly8xfPhwREdHo06dOggJCeHa6rJ9+/aoW7cugoKCoKenh9jYWKioqGDo0KGYMmWK3AulqampISUlRfjbBQB1dXWkpKRUuL/dYgUFBVizZo2wBaBjx47w8fGBhoaGKHkKCwuRkpJS5kV127ZtuWT49OkTvLy8EBQUhPz8fABFEzzjx4/HypUrhQKZPJXsKGJjY8OteN3y5csRFRWFI0eOQFlZGerq6oiPjy91sz4pKQn29vZc3/OJLA0NDdy4cQO2trYyx+Pj4+Ho6IgPHz7gyZMnsLa2lttguU2bNpgxYwZ69+6NwYMH4/Xr15g3bx62bt2KW7dulerQI0/btm3D+PHjUaVKFVSvXr1UBxy5dmyS6473f5H379+z4OBg1qpVK6aioiIUhnn37h33LO3bt2e6urpMS0uLNW7cmDVu3Jhpa2szPT091qxZM6avr88MDAxYQkIC92xiuHHjBqtUqRKrUaMG69OnD+vTpw8zMTFhlStXZrdu3eKeR1NTkz158oQxxlj16tWFDKmpqUxXV5dbDl1dXZaSksIYky3Y9vjxY6ampibXc39Z5OprX7zUqFGDxcXFMcYYs7OzY7/++itjjLHo6GiuP5dihYWF7MyZM2zdunVs3bp17MyZM9wzKIpatWqxoKCgUsc3b97MateuzTXLmDFjmKWlJTtx4oRQfPL48eOsVq1abNy4cdxyDBs2jHXt2pWlp6fL/P2ePHmS2djYcMvBWNHv6pMnT9iHDx+4nrc8enp6QqFSPT09oejS1atXmZWVldzPL5VK2cuXL2WOlSxQJobExEQ2ceJE1rFjR9axY0c2ceJE9uDBA27nX7x4MZNKpaxLly6sV69eTF1dnbm7u3M7f0kxMTHMwsKizIJPvIpOlZSTk8Pi4uJYXFwcy8nJ4X5+xhjLzMxkHTp0YBKJhBkYGDADAwMmkUhYx44dS/0uy8ODBw9Ys2bNmI+PD2OMMRMTExYeHl7qdfv372empqZyz0PK16pVK9atWzeZ34uXL1+ybt26CQUPz5w5w+rWrSu3DCdPnhQKkiYnJzMrKysmkUhYlSpVWGRkpNzOWxYzMzO2cuVKrucsRnvSv5OWlhY8PDzg4eGBhw8fCq1xvL290blz52/2bf0nFc+S79ixA7q6ugCAt2/fYtSoUWjdujVGjx6NwYMHY9q0aTh16pTccuTl5WH9+vXlLgHh1Q982rRpcHV1xbZt24Slffn5+Rg1ahSmTp2KS5cucclRzMTEBC9evICZmRlq1aol7Ie7ceMG1zvnampqpQoKAUV3quW9dPfL/UK3b99Gfn4+rKyshAxKSkrcCvgARbMnZ86cgZ2dHfr3748pU6bg3LlzOHPmTLm9sf9pHz58QGRkJHr27AmJRILIyEh8/PgRQFFLmtOnT2Px4sVQV1fnkqdYZGQkIiMjy/w7DgkJkfv5Z8yYAU9PT9y9e1dmWWhoaCjWrl0r9/OX9Pvvv+PAgQNo3769cKxHjx7Q0NDAgAEDsHnzZi45Tp8+jVOnTpWama1Tpw6ePHnCJUMxxhhq166NhIQE7ttUyiL2/njGGNzc3GTez/Py8jBu3DiZ/aS89pL+/vvvGDhwIBwcHNCiRQsARasA7ezssG/fPqEntTyFhYVh06ZNpbYAbN++nfsWgHHjxsHBwQHHjx+HkZGRKNtDStLU1OS6F74skydPxt9//42EhASh1df9+/cxYsQIeHp6Yu/evXI9f7169RAdHY3Vq1cDAEaPHo0xY8bg0aNHMu/5q1atKne1qLz8+eefOHr0aJn1Lfz9/blkOHDgQLl1jHhdSxfbvn07evfuDRMTE2G1UHp6OiwtLXHkyBEARS2f5VlTqH379sLqk9q1ayMxMVG0lbqvX79G//79uZ6zGC13//9QUFCAiIgIhISEcB2k16hRA2fOnCm11D4hIQFdunTBs2fPcPv2bXTp0kWufaiHDBmC06dP46effkK1atVK/eHwqtqtaBVUvb29oauri19++QX79+/H0KFDUbNmTTx9+hTTpk3j1vd41KhRyMrKQnh4OCpVqoS4uDgoKSmhd+/eaNu2Lbf9cP7+/rhw4QJ27twpVAJ9/fo13N3dhSVNPGRnZyMvLw/GxsYoLCyEr6+vsFx33rx5cqtSWlJQUBCOHz+OiIgIAICOjg7q168vLAlNTEzErFmzSu3NlqdFixZh8eLFcHBwKPOCVt7740uex8/PT1iKaW1tDS8vL/Tq1YvL+Ytpamri1q1bpXrWJiQkwNHRUegBLW86Ojq4ffs26tSpI7Ndpbj3clZWFpccxerXr4/g4GA0b96c63nLIvb++G/tIS3Gay9prVq1MGTIkFK9nhcuXIjdu3cjNTVV7hkUaQuAlpYWYmNjuRfTLebh4fHN10gkErkV3SqLInUUAYpudAUGBsLPzw/Pnz8HABgbG8PLywuenp7cBmKRkZFwdXWFpaUlEhMTYWtri8ePH4MxhsaNG3PporFu3TrMnTsXbm5u2Lp1K9zd3ZGamoobN25g4sSJWLZsmdwzfKmwsBCnT59GUlISgKK6LJ07d5b7DbdXr15h+PDhOHv2LAoLC9G0aVPs3r1btL9lABg5ciSaNm2KcePG8T+5KPP35P+LlpYWO3/+fKnj58+fZ9ra2oyxoqXVOjo6cs2hq6vLrly5ItdzfA9DQ0N26tSpUsdPnjzJDA0NRUgkKyYmhvn5+bGjR49yPe+bN2+Yk5MT09fXZ0pKSszU1JSpqKiwNm3asPfv33PLYWxszO7du1fqeHx8PDMyMuKWQxG0bt1a5veg5DJmxhjbtWsXa968OddM1atXZ2FhYVzPWdLnz5/ZokWLWHp6umgZSurYsSPr37+/zNLu3Nxc1r9/f9apUyduObp3787mzZvHGPvvUuqCggLWv39/1q9fP245ih09epS1bt2axcfHcz/3l27cuMHOnTvHGCtaxtu1a1emo6PDGjduzO7evStyOv40NDRYcnJyqeNJSUlMQ0ODSwZF2gLQoUMH9scff3A/b7HevXuX++Xi4sI0NDS4L7vX1tZmd+7cKXX89u3bcr9W/JZ3796JsnWUMcaaNm3KFixYwBj77+fx33//zVxdXdmmTZu4ZLCyshK235W8Jpg/fz6bOHEilwzFPn36xJSUlER7n3d3d2fVq1dny5cvZ/7+/szKyoq1b99elCzFli9fzqpUqcJGjBjB1qxZw9auXSvzJU+03P0H1KtXL3h4eMDPz0+4K3rjxg3MnDkTvXv3BlB0d7Ru3bpyzVGjRg2FaCPy888/Y+TIkWVWUB00aBD3PFlZWahcuTKAoiVCJ06cwIcPH+Dg4MA1h56eHs6cOYOoqCjExsbi/fv3aNy4MZycnLjmePfuHV69elXq+KtXr/D333/L/fz5+fkoKCiQWZqamZmJoKAg5OTkwNXVFa1bt5Z7DqCoEFrJZY/q6uoyd6YdHR0xceJELlmKffr0qVQVV56UlZXh6+uL4cOHi5ahpLVr16Jr164wMTERiqHFxsZCXV1drtuHvuTr64tOnTrh5s2b+PTpE2bNmoWEhARkZ2cjKiqKW45iw4cPR25uLho0aABVVdVSBcF4tZZkjMHQ0FAoamRoaIiTJ09yObeiat++PS5fvlxqtunKlStc+gkDirUFYPLkyZgxYwYyMjLKbCsp7x725a0+OnLkCH755ReoqanJtSJ0WTp27IgpU6aU6igybdo0btu9yiPmdeSDBw+Epf7Kysr48OEDtLW1sXjxYvTq1Qvjx4+Xe4anT58Kn8EaGhrCddGwYcPQvHlzbNiwQe4ZiqmoqMDMzIxLV5eynDlzBqGhoejatSsAoGfPnrC2tsbHjx9FKbQIAFu3boW2tjYuXrxYqpOGRCKRa8cmGqT/gLZs2YJp06Zh4MCBwp4NZWVljBgxAgEBAQCK9v9s375drjn8/Pwwe/ZsBAUFidIbttiaNWsgkUgwfPjwMiuo8hIfHw8XFxekp6ejTp062LdvH7p164acnBxIpVIEBATgwIEDwo0UeTl37hwmTZqEq1evQldXF61atRL6kL59+xb169dHUFAQt4u3Pn36wN3dHX5+fkLPzWvXrsHLy0vuVZiBor1vqqqq2LJlCwDg77//RtOmTZGXlwcjIyMEBATgyJEj6NGjh9yzvHnzRtiDDqDUzYvCwkKZ53kYNWoUfv31V8yfP5/reUvq1KkTLl68iJo1a4qWoZitrS2Sk5OxZ88eJCYmAgAGDRqEIUOGcK1UbWtri6SkJGzYsAE6Ojp4//49+vbti4kTJ8LIyIhbjmKK0i6KKdj+eLGU3GLn6uqK2bNn49atW8J2hKtXr+K3337j1lpyxIgRpY4NHTqUy7m/VLwHv+Sy8+K2cLzaSpYUFRUFb29v3L59G5MmTYK3tzeX7VUlbdiwAa6urqhZs6bMPmNbW1vs3r2bS4ZGjRp99zJ2XvuwtbS0hD3gRkZGSE1NRf369QFArttFS6pevTqys7Nhbm4OMzMzXL16FQ0aNEBaWlq5rQzlae7cufjll1+wa9cu7l2inj9/LtMppE6dOlBTU8OLFy9Euz5IS0sT5bwA7Un/ob1//17o4WhpaQltbW2u53/16hUGDBiAS5cuQVNTs9Tdal4zK8Vyc3OFvXe1atXi1iqpWPfu3aGsrAxvb2/s2rULx44dQ9euXbFt2zYARXf3b926hatXr8o1h6urKzp06FDuvuZ169bh/Pnz3PYa5+bmYubMmQgJCcHnz58BFN1UGjlyJFavXi0zyyIPdevWxYYNG9ClSxcAwMaNG7F8+XLcv38fenp6mD17Nq5fv47z58/LNQdQ9IGzcuXKcgs5hYeH45dffkFKSorcsxSbMmUKwsLCYG9vD3t7+1J/xzwK5wQFBWHRokUYMmQImjRpUup3wtXVVe4ZyI9DkfbHi+V794aKMSgV27cKK/KaVLh//z5mz56NkydPYvjw4Vi0aJGoLfoYYzh79qxw89Ha2prryrqSN4zy8vKwadMm2NjYyBQ7TEhIwIQJE7BixQoumXr37g1nZ2eMHj0aM2fOxJEjR+Dm5oaDBw/CwMAAZ8+elXuGUaNGwdTUFAsXLsTGjRvh5eWFVq1a4ebNm+jbty/X2gVA0c2UlJQUfP78Gebm5qU+j+V5A0VJSQkZGRkyxY11dXURGxv71Z72/1Y0SCf/Z05OTnj69ClGjhxZZuG4su6sy0NYWBiaNm1aqtBTXl4ewsPDuS2jrVKlCs6dOwd7e3u8f/8eurq6uHHjhlDBPDExEc2bN5d7gRZzc3OcPHmy1PejWGJiIrp06YKnT5/KNceXcnJyZG6iyHtwXkxLSwv37t0T3uD79u0LExMTrFu3DkDRhVT79u3x8uVLuWeZMmUKzp49i1u3bpWq4F68JcLJyYlrRfMOHTqU+5xEIuFSOOdrAw7eg4xz587h4MGDePz4MSQSCSwtLdGvXz9uvZWBoi0ixZ07Tpw4IawQAoouYpydnbllKUteXl6pCsTFeXmIiIiAr68vNm/eXKqXLyFiS09Px4IFC7B792707NkTy5cvL/fzuKIaNWoUjIyMsGTJEpnjCxcuRHp6OpeuIgDw6NEjvH//Hvb29sjJycGMGTOEgrL+/v5cbugUFhaisLBQ6E60b98+IcPYsWOhqqoq9wwlfWv1jTyLQkulUujp6cmMJ968eQNdXV2Z6wTek4BidQCgQfoP6ubNm+W2a+DV9kVTUxMxMTEyS1PEIJVKoaWlhdDQUJkZyszMTBgbG3O7wJdKpcjIyIChoSEAyFRk5plHXV0d9+7dK7caZvG+6A8fPsg1R1nnTU1NRdu2baGhoSEsPZS3ypUr4/Lly0I3BGNjY6xevRpDhgwBUPQhbWtry6ULQGZmJho2bAhVVVVMmjRJqBvx8OFDbNiwAfn5+bhz5w6qVasm9yyktHHjxmHr1q0wMDBA3bp1wRhDcnIy3rx5gwkTJmD9+vVyz3Ds2DHMnz9faGOoo6MjU1FeIpFg//79+Omnn+SepaScnBzMnj0b4eHhZVaW53kjxcDAALm5ucjPzxd1fzxRbPfv3y/zGkneK3M0NTUhkUgwadIkYatZWXitECosLERoaKjMzUcLCwv89NNPGDZsmCgt6vT09HDz5s1SW1aSk5Ph4OCAt2/fyj1DQUEBoqKiYG9vD319fbmfrzxPnz6FqalpqZ8DYwzp6ekwMzMTKRl/O3fu/K7X8ZoEBMTtAEB70n9A+/btw/Dhw9G1a1ecPn0aXbp0QVJSEjIzM9GnTx9uOerVq8d9oFeeRYsWYdiwYYiPj4ePj49oOb58kxXjw69GjRpfHaTHxcVx3dOalZWFAQMG4Pz585BIJEhOToalpSVGjhwJAwMD+Pn5yfX8DRs2xK5du7BixQpcvnwZmZmZ6Nixo/B8amqqUEhH3qpVq4bo6GiMHz8e3t7ewn4ziUSCzp07Y9OmTTRAF8mhQ4ewY8cOhISEYMSIEcLfbvEF7vjx49G5c2e5X1hv3boVkydPljmWkpIi3Ozz9fVFSEgI90H6rFmzcP78eWzevBnDhg3Dxo0b8ezZM2zZsoVr7Q9AcfbHK5IbN27g/PnzePnyJQoLC2We49XrWVE8evQIffr0QXx8vLAXHfjv57G8byjl5eUBAFavXi30Bf8SrxVCjDG4urrixIkTaNCgAezs7MAYw4MHD4Rl3YcPH5Z7ji9paGggKiqq1CA9Kiqq1CozeVFSUkKXLl3w4MEDUQfpFhYWePHihTDBUyw7OxsWFhaibFd58+YNDhw4gNTUVHh5eaFSpUq4ffs2qlWrhho1asjtvDwH399rzpw5mDlzJhYtWgQdHR38/vvvMDQ0xJAhQ9CtWzf5nlyuteOJXNjZ2bENGzYwxv7brqGwsJCNHj1aaCXBw6lTp1jLli3Z+fPn2V9//cXevn0r88WLRCJhmZmZLCYmhlWvXp3169eP5ebmsoyMDK5tTiQSCevRowfr06cP69OnD1NWVmZdunQRHvfo0YNLnkmTJjFbW1uZFlLFcnNzma2tLZs8ebLccxQbNmwY69q1K0tPT5dpL3Ly5ElmY2Mj9/NfuHCBaWhoMEtLS6ahocE8PDxknh8/fjwbPny43HN8KSsri127do1du3aNZWVlcT9/STdu3GBeXl7s559/Fn5fi7/kKTc3l0VERAiPvb292bRp04SvmTNnlvl7LA8uLi7M29u73OdnzZrFXF1d5Z6jZs2aLDExUXj8ZZu+uLg4VrVqVbnn+JKpqanQ+lNHR0do+RUWFsa6d+/OPQ/5r2XLljGJRMLq1avH2rVrx9q3by98dejQQex43PXs2ZP16tWLvXr1imlra7P79++zy5cvM0dHR3bp0iWx43EVEhLCdHR0hJaFJUVGRjIdHR22c+dO7rlWrFjB1NXV2eTJk9muXbvYrl272KRJk5impiZbsWIFtxxNmjRhZ8+e5Xa+skgkklLtCxlj7PHjx0xTU5N7ntjYWFa1alVWu3ZtpqysLHz+zJ07lw0bNox7HrFpa2uzlJQUxhhj+vr6Qkvhu3fvMnNzc7mem5a7/4C0tLSQkJCAmjVronLlyrhw4QLs7Ozw4MEDdOzYES9evOCSo3h/SFlLdHjuI1VSUhLuQj59+hSurq6QSCQICgpCy5YtueVwd3f/rtft2LFDrjkyMzPRuHFjKCkpYdKkSbCysgJQtBd948aNKCgoEO6I8lC9enWcOnUKDRo0kNkC8OjRI2H/vrw9ePAAp0+fRvXq1dG/f3+ZvU1bt26Fo6MjGjZsKPcciuhbK3Pk+fsaFBSE48ePIyIiAkDR0u769esLy5cTExMxa9ascosg/pNMTExw8OBBoQPBl65du4Z+/frhzz//lGsOdXV1JCYmCpVsb968iQYNGggF/dLS0lCvXj3uXQC0tbVx//59mJmZyXyv0tLSYGdnx+XvuCxi749XBNWqVcOqVavg5uYmdhSFULI+jJ6eHq5fvw4rKyucO3cOM2bMELaSVARdunRBx44d4e3tXebzy5cvx8WLF7m2lywWHh6OtWvX4sGDBwCKCtlNmTIFAwYM4Jbh5MmTmDNnDpYsWVJm0VJ5vpdMnz4dQFHbz9GjR8sUOy4oKMC1a9egpKTEveWmk5MTGjduDF9fX5lrtujoaAwePBiPHz/mmkds1atXx/nz52FtbQ0bGxusXLkSrq6uiI2NRatWreT62UfL3X9ABgYGQh/F4qXNdnZ2ePPmDZd9tcW+Vg07Pj6eW46S95nMzMwQHR2NIUOGoHPnztwyAPIffH+vkkuq58yZI7PUr2vXrti4cSPXJdU5OTllVtrPzs7m1vfS2tq63MI9Y8aM4ZJBUS1fvhwBAQGYOHEidHR0sHbtWlhYWGDs2LFy3xaxZ88ezJo1S+bYr7/+Kizt3r17NzZu3MhlkP7XX399tfKyiYlJmXux/2mVKlVCSkqKMEh3cHCQeT45OZl7WxygqINIWloazMzMUK9ePYSHh8PR0RERERHcl4oq0v54RSCVSr+697miKSgoEHpvV6lSBc+fP4eVlRXMzc3x8OFDkdPxFRcXB19f33Kf7969u1BElbcBAwZwHZCXpbj1avHkTjEek03FN4sYY4iPj5cpEKeqqooGDRpg5syZcjt/eW7cuCG0rC2pRo0ayMjI4J5HbM2bN8eVK1dgbW2NHj16YMaMGYiPj8fBgwfl3mGEBuk/oLZt2+LMmTOws7ND//79MWXKFJw7dw5nzpxBp06duOVo166dzOO///4be/fuxfbt23Hr1i1MmjSJS46FCxfKtJ/T1NTEoUOHsHDhQly6dIlLBkVjbm6OEydO4PXr10hJSQFjDHXq1OHemxUA2rRpg7CwMKGKq0QiQWFhIXx9fb9aWZzwkZqaKlQLV1VVRU5ODiQSCaZNm4aOHTvKtc9ycRHDYurq6jKrHBwdHTFx4kS5nb+kT58+lWo/V5KysnKpGVt5aNu2LdatW1dua6R169ZxrTRfzN3dHbGxsWjXrh28vb3h4uKCDRs24PPnz9z3PCvS/nhFMG3aNGzcuJH26v+Hra2t0LKpWbNm8PX1haqqKrZu3SrcAKwosrOzv3pTvlq1anj9+jXHRLI+ffpUZh0FXsXSeLRe/da53d3dsXbtWoVZAaSmpoZ3796VOp6UlCTTGq2i8Pf3F2bLFy1ahPfv32P//v1CBwB5ouXuP6Ds7Gzk5eXB2NhYGOwUt2uYN28e94HYpUuXEBwcjN9//x3Gxsbo27cv+vXrh6ZNm3LNQRTTvXv30KlTJ6EKpqurKxISEpCdnY2oqCjUqlVL7IgVmomJCf744w/Y2dnB3t4ec+bMwaBBgxATE4Nu3brJtcquhoYG7t69K2zJ+FJiYiIaNmwoFGKSJ6lUijFjxpS56gMAcnNzsW3bNrnP0t65cwctWrSAi4sLZs2aJdMBYNWqVTh+/Diio6PRuHFjueYoVlhYiNWrV+Po0aP49OkTOnXqhIULF+Lly5e4desWateuDXt7ey5ZipmZmSEsLAzt27eHrq4ubt++jdq1a2PXrl3Yu3cvTpw4wTWP2AoLC+Hs7IykpCTY2NiUutnEq+OLojh16hRycnLQt29fpKSkoGfPnkhKSkLlypWxf/9+mcKh/3Zl9Z0uiXcXnGLJycnw8PBAdHS0zHHe2yVJaaNGjUJWVhbCw8NRqVIlxMXFQUlJCb1790bbtm253wxkXxR+rEhoJv0HVHKpo1QqLXevkTxlZGQgNDQUwcHBePfuHQYMGICPHz/i8OHDQqsr3spqtyKRSODi4iJKHlLE1tYWSUlJWL9+PXR0dPD+/Xv07dsXEydO5FplnpRNzJU5JiYmuHfvXrmD9Li4uK8uQf8ntW3b9ptLYXnMYDdq1Aj79+/HqFGjSg2uDAwMsG/fPm4DdABYtmwZfHx84OTkBA0NDaxduxYvX75ESEgIlx7CZcnOzhZmRHV1dYWWa61bt8b48eNFySQmT09PnD9/Hh06dEDlypUr5MVsSV27dhX+Xbt2bSQmJiI7OxsGBgYV7nvDGIObm1u5W8t417Yo5ubmBmVlZRw7dgxGRkai/lzevHmD4OBgYW98/fr14eHhAT09PW4ZFKGtcjE/Pz/89NNPMDQ0xIcPH9CuXTu8ePECLVq0wLJly7jlCAsLw+rVq5GcnAwAqFu3Lry8vDBs2DBuGYCi5f+FhYVo1qyZzPHimgFfbkn7J9FM+g+irKUn5ZH3khkXFxdcunQJzs7OQgsCJSUlqKioIDY2lvsgXex2K6RsISEhGDJkCLd95+T/RsyVOVOmTMHZs2dx69atUm13Pnz4AAcHBzg5OWHt2rVyy6CocnNzcerUKeECpU6dOujSpUupwkbyVqdOHcycORNjx44FAJw9exbOzs748OGDzNYEnuzt7bF+/Xq0a9cOTk5OaNiwIdasWYN169bB19dX7sX9FI2Ojg727dsnbFshiuXWrVvCANDGxobrTTZFKWj7JS0tLdy6dQv16tXjet4v3bx5E127doWGhoZQNPTGjRv48OEDTp8+zeVnJWbx1q+5cuUK4uLi8P79ezRp0oTrdlp/f3/Mnz8fkyZNEuptXLlyBRs3bsTSpUu51Kkp5ujoiFmzZpVqe3rw4EGsWrUK165dk9u5aZD+g5BKpd+808hrmZCysjI8PT0xfvx4mR6XYg3SXVxcoKSkhO3bt8PCwgLXr19HVlYWZsyYgTVr1qBNmzZc85AiJavuA4CxsTGio6OFglhiEfOCSdHk5+fj119/RdeuXUXpz56ZmYmGDRtCVVUVkyZNklnavWHDBuTn5+POnTvUO15EampqSElJgampqXBMXV0dKSkp3FY5fCkgIABKSkrw9PTE2bNn4eLiAsaYsD9+ypQpouQSi7m5OU6dOiX6gEdsffv2/eZrlJWVUb16dXTu3Fnuq+xevnyJgQMH4sKFC0JxxTdv3qBDhw7Yt29fhdzfW6xp06YICAhA69atRc3Rpk0b1K5dG9u2bYOyctHi4vz8fIwaNQqPHj3iUtfI3t4eY8eOFYq3FtdTKC7eKs+6MCXFxMQgKysLPXv2FI7t3LkTCxcuRG5uLnr37o3169dzmXixsLDAokWLMHz4cJnjO3fuhI+PD9LS0uSeoZi2tjbi4uJK1bNIS0uDvb29UMhbHmi5+w/ie4tb8KiqfuXKFQQHB6NJkyawtrbGsGHDMHDgQLmftzwxMTE4d+4cqlSpAqlUCqlUitatW2PFihXw9PSsUO1WFMmX9//+/vvvUsVheKILptKUlZUxbtw44aYFbyU7EXh7e8usguncuTM2bdpEA3SR5efnl1rloKKigs+fP3PP8uX++OfPn2PhwoVITEwUbX+8IvDx8cHChQuxY8eOcmsqVATfszy5sLAQycnJ2L59O2bOnInFixfLLc/kyZPx999/IyEhQegucv/+fYwYMQKenp7Yu3ev3M6t6FatWoVZs2Zh+fLlsLOzK1VHgVcRtZs3b8oM0IGiz8VZs2bJdRlzSWIWby1p8eLFaN++vTBIj4+Px+jRozFixAhYW1tj9erVMDY2ho+Pj9yzvHjxAi1btix1vGXLltzaTBdTU1NDZmZmqUH6ixcvZH5v5EKuXdgJF+/evWNbtmxhTZs2ZVKplNt5379/z4KDg1mrVq2YiooKk0qlLDAwkL17945bBsYY09fXZ48ePWKMMWZpacnOnTvHGGMsJSWFaWhocM1C/ksikbDMzEzhsba2NktNTRUtz4ABA5iDgwO7f/++cCwhIYE5ODiwgQMHipZLbO3atWOHDx8WOwbLyspi165dY9euXWNZWVlixyH/IZFIWI8ePVifPn2EL2VlZdalSxeZYzwsXryYSaVS1qVLF9arVy+mrq7O3N3duZxbkTVs2JDp6OgwbW1tZmtryxo1aiTzRUqLiIhgpqamcj2Hrq4uu379eqnj165dY3p6enI9t6KTSCRMIpEwqVQq81V8jBdDQ0N26tSpUsdPnjzJDA0NuWSoUaMGi4uLY4wxZmdnx3799VfGGGPR0dFMV1eXSwbGGKtevTq7ceOG8PiXX35hrVq1Eh6Hh4cza2trLlnq16/Pli1bVur4kiVLmK2tLZcMxQYOHMjatWvH3rx5Ixx7/fo1a9euHevfv79cz00z6T+wsqqqb9y4kdv5tbS04OHhAQ8PDzx8+BDBwcFYuXIlvL290blzZxw9epRLDmq3opgkEonMFo0vH/N28uRJnD17VqZfuo2NDTZu3IguXbqIlktsEyZMwPTp05Geno4mTZqU2vPMa2ayUqVKwp5AojhGjBhR6tjQoUNFSFJUSGjTpk2l9sdv375dtP3xiqB3795iR/jhtG7dWu4zpYWFhWW2dVRRURF1VZkiELP1WUk///wzRo4ciTVr1ggzt1FRUZg5cya3FaKK0lb59evXMivXLl68iO7duwuPmzZtivT0dC5ZFi1ahJ9//hmXLl0S9qRHRUUhMjIS4eHhXDIUW7NmDdq2bQtzc3M0atQIAHD37l1Uq1YNu3btkuu5aU/6D6asqupBQUGi7AUvS0FBASIiIhASEsJtkE7tVhSTVCqFnp6eMDB/8+YNdHV1S11MF1dmljcdHR1cvnwZDRs2lDl+584dtGvX7n8qzvhvUtbgprgAI7XCIYpEEffHE1KeXr164c2bN9i7dy+MjY0BAM+ePcOQIUNgYGCAQ4cOiZyQfPr0CV5eXggKCkJ+fj4YY1BVVcWECROwbNkyaGhoyD2DorRVNjc3x65du9C2bVt8+vQJ+vr6iIiIEG4UxMfHo127dtyu2W7duoWAgABhO561tTVmzJghDJR5ysnJwZ49exAbGwsNDQ3Y29tj0KBBZd6E+yfRIP0HomhV1RVZRW23okh27tz5Xa8ra6ZOHuiCqWxPnjz56vNitdkSkyK05Ll9+zZUVFRgZ2cHADhy5Ah27NgBGxsb+Pj4QFVVlVsWRVFWz2cdHR3ExcXBwsJCxGSElJaeng5XV1ckJCQIN5bS09Nha2uLo0ePVvgbS4rwPlssNzcXqampAIBatWph8+bNWL16NTIyMrhnEcv48eMRGxuLVatW4fDhw9i5cyeeP38ufNbs2bMHgYGBuHHjhshJKw4apP9AFK2qOiE/ErpgIt9DEVryAEVLC729vdGvXz88evQI9evXR58+fXDjxg04OzsjMDCQSw5FIpVK0b17d5nqwhEREejYsaPMNg3efYXFVlBQgICAgHL7LPOa+SKlMcZw9uxZJCYmAiiaDXRychIly65duxAUFIS0tDTExMTA3NwcgYGBsLCwQK9evbhmEft99uPHj/Dx8cGZM2egpqYGLy8v9O7dGzt27MC8efOgpKSEiRMnYvbs2XLL8Pz5c/j7+2PBggWlCuW9ffsWS5cuxcyZM7kVT/3rr7/Qt29fXLlyBdra2ti5cyf69OkjPN+pUyc0b96ca690AMjLyyv1nsarsGCx1NRUBAYGynQGmjJlCmrVqiXX89Ig/Qdy9epVBAcHY//+/TJV1Y2MjCr0ID0vLw/r16/H+fPn8fLly1J7vW7fvi1SMqJoFOmCSdHcv3+/zAt8V1dXkRKJQxFa8gBFlapv376NWrVqYdWqVTh37hxOnTqFqKgoDBw4kNveQEWiqD2fxbZgwQJs374dM2bMwLx58zB37lw8fvwYhw8fxoIFC+Dp6Sl2RCKyzZs3Y8GCBZg6dSqWLVuGe/fuwdLSEqGhodi5cyf3PeJiv8/Onj0bW7ZsgZOTE6Kjo/Hq1Su4u7vj6tWr+OWXX9C/f38oKSnJNcPMmTPx7t07bN26tcznx40bBz09PaxatUquOb709u1baGtrl/r/n52dDW1tbS6ruHJzczFr1iyEh4cjKyur1PM8t+GdOnUKrq6uaNiwocz++NjYWERERKBz587yO7lcy9IRuVCUquqKYvDgwaxKlSps3LhxbOHChczHx0fmixDGGNu5cyfLy8srdfzjx49s586dIiRSDKmpqcze3l6oqvtl1V1eUlJS2KRJk1inTp1Yp06d2OTJk1lKSgq38xdTV1dnDx48KHU8ISGBa7cIHR0dlpSUxBhjzMnJiQUGBjLGGHvy5AlTV1fnloMoPktLS3bs2DHGWFEXjeK/m7Vr17JBgwaJGU00YWFhrGXLlszIyIg9fvyYMcZYQEAAt04WBQUFLDg4mDk7O7P69eszW1tb5uLiwnbu3MkKCwu5ZCjJ2tqaHTp0iDEm22klPj6eVa5cmXsesd9nLSws2JEjRxhjRd8DiUTC3N3duf5s6tevzy5fvlzu81FRUczGxoZbHrFZW1uz+fPnM8YYmzBhArO2tmYHDhxgGhoaLCQkhC1ZsoSZmJiw3bt3c83VsGFDNnv27FLHZ8+eLffuGTRI/8ElJiYyLy8vVr16daaurs5cXFzEjsSdrq4uu3LlitgxiIKTSqUyLeGK/fXXX1wHo4qmZ8+erFevXuzVq1dMW1ub3b9/n12+fJk5OjqyS5cucclw8uRJpqqqyhwdHdm0adPYtGnTmKOjI1NTU2OnT5/mkqGYIrTkYYyxDh06sOHDh7OwsDCmoqLCkpOTGWOMXbhwgZmbm3PLQRSfpqYme/LkCWOsqI3SrVu3GGNFN+B4tnBSFJs2bWJVqlRhS5cuZRoaGsKAdMeOHax9+/ZyP39hYSFzdnZmEomENWzYkA0cOJD9/PPPws3QXr16yT3Dl9TV1YWbFSUH6UlJSaLc9BP7fVZFRYX9+eefwmN1dXWhDRovJf9uy/LkyROmqanJMZG4nj9/zurWrcsYY8zU1JSdP3+eMVZ0w7r48y8sLIx1796day41NTXhhnlJDx8+ZGpqanI9d8XtWfIvYWVlBV9fX/z555/Yu3ev2HFEUaNGDejo6Igdgyg49p9q5V/6888/RSlUoyhiYmKwePFiVKlSBVKpFFKpFK1bt8aKFSu4LZP19vbGtGnTcO3aNfj7+8Pf3x/Xrl3D1KlT5bonsCzFLXn279+P9PR0pKenY9++fRg1ahQGDRrELUdgYCBu376NSZMmYe7cuahduzYA4MCBA0KrIEIAwMTEBC9evABQVPTq9OnTAIr2+Jbcv19RrF+/Htu2bcPcuXNlluw6ODggPj5e7ucPDQ3FpUuXEBkZiTt37mDv3r3Yt28fYmNjcfbsWZw7dw5hYWFyz1GShYUF7t69W+r4yZMnZdqS8lLe++zIkSO5tD4rKCiQWbatrKwMbW1tuZ+3JA0NDTx+/Ljc5x8/fsyluryiGDBgAObNmwegaGl9cQtlXV1doa5G69atuW05K1a1atUy/3bu3r0LQ0NDuZ6b+qT/SygpKaF3794Vsl+qn58fZs+ejaCgoApZifpHwv5TAoNn1f1GjRoJPdo7deok7H8Dij6o09LS0K1bN255FE1BQYFwk6tKlSp4/vw5rKysYG5ujocPH3LJ8ODBgzJ7n3p4eHAvkLZmzRpIJBIMHz4c+fn5AIqKc44fPx4rV67klsPe3r7MAcXq1avlvleS/Fj69OmDyMhINGvWDJMnT8bQoUMRHByMp0+fYtq0aWLH4y4tLa3MNk1qamrIycmR+/n37t2LX375BR06dCj1XMeOHeHt7Y09e/Zg+PDhcs9SbPr06Zg4cSLy8vLAGMP169exd+9erFixAtu3b+eWo9iX77Psi9Zn8sYYg5ubm3ATKy8vD+PGjZMpQAnItwhls2bNhJZnZQkLCxOK6lUEr169QkxMDIYNGwZLS0ukpaXBzMwM9erVQ3h4OBwdHREREQF9fX0ueRYvXoyZM2di9OjRGDNmDB49eiTcII+KisKqVaswffp0uWagQTr54Tk4OCAvLw+WlpbQ1NQs1beQKtuKLywsDKtXr0ZycjIAoG7duvDy8sKwYcPkfu7iG1d3795F165dZe6Wq6qqombNmujXr5/ccygqW1tbxMbGwsLCAs2aNYOvry9UVVWxdetW4U62vBXfqS7ZtQLgc6f6S6qqqli7di1WrFgh05JHU1OTa47yqKurix2BKJiSN49+/vlnmJmZISYmBnXq1IGLi4uIycRRPGv85U17XrPGcXFx8PX1Lff57t27Y926dXLPUdKoUaOgoaGBefPmITc3F4MHD4axsTHWrl3LZeb6S+W9z27evBkWFhZyb332ZevXoUOHyvV8ZZk5cyY6d+4MPT09eHl5CVXcMzMz4evri9DQUGFVTEVw7do1REdHAygqEhobG4t27drB29sbLi4u2LBhAz5//gx/f38ueRYtWoRx48Zh/vz50NHRgZ+fH+bMmQMAMDY2ho+Pj9xXG1J1d/LDc3JywtOnTzFy5EhUq1at1Cwtrz7cpGz+/v6YP38+Jk2aJFTGvHLlCjZu3IilS5dym+nZuXMnfv75ZxrkfOHUqVPIyclB3759kZycDBcXFyQlJaFy5crYt28fOnXqJPcMixcvRkBAALy9vcu8Uz1//ny5ZyjPu3fvcO7cOVhZWXFdFkpttQj5v9m+fTt8fHzg5+eHkSNHYvv27UhNTRVmjeU9KFVVVcWTJ09gZGRU5vPPnz+HhYUFPn78KNcc5cnNzcX79++53wAFFKP1mSLZsmULpkyZgs+fP0NXVxcSiQRv376FiooKAgICMH78eLEjKoTHjx/j9u3bqF27Nuzt7bmcUyqVIiMjQ+bv5O+//wYAbltsaZBOfniampqIiYlBgwYNxI5CymBhYYFFixaVWtq3c+dO+Pj4IC0tTaRkpDzZ2dkwMDDgti2BMYbAwED4+fnh+fPnAIruVHt5ecHT05Pr9ogBAwagbdu2mDRpEj58+IAGDRrg8ePHYIxh37593FZdUFst8r9ITk4utw3pggULREolnj179sDHx0eYpTU2NsaiRYswcuRIuZ9bSUkJGRkZqFq1apnPZ2ZmwtjYmGsbKUWhCK3PFM2zZ88QHh6OlJQUMMZQt25d/PTTTzAxMRE7WoUmlUqRmZlZ7t8xDzRIJz+8xo0bY9OmTWjevLnYUUgZ1NXVce/ePaHwVbHk5GTY2dkhLy9PbueuVKkSkpKSUKVKlW8OOivazKSHh8d3vS4kJETOSWTxvlP9perVq+PUqVNo0KABfv31VyxcuBCxsbHYuXMntm7dijt37nDJUatWLaxbtw7Ozs7Q0dHB3bt3hWNXr17Fr7/+yiUHUXzbtm3D+PHjUaVKFVSvXl3mfU4ikeD27dsiphOXGLPGUqkU3bt3L7do38ePH3Hy5Em5D9KL67F8D16/I5aWlggMDISrqyvu3bsHe3t7uLm5ITg4mOvNWKKYYmJikJWVhZ49ewrHwsLCsHDhQuTk5KB3795Yv349l4KYUqkUenp63/y9lOe1I+1JJz+8lStXYsaMGVi2bBns7OxK7UnX1dUVKRkBgNq1ayM8PBy//PKLzPH9+/eX2oP8TwsICBAGe7wLkCm60NBQmJubo1GjRhD7Xm3Hjh1x8OBB6OvrywzO3717h969e+PcuXPcsrx9+xaVKlUCULSHtV+/ftDU1ISzszO8vLy45cjIyICdnR0AQFtbG2/fvgUA9OzZU9Tl/0TxLF26FMuWLaswS4S/x19//YXHjx9DIpGgZs2aXM/9PVvseBSNK1lIOC8vD5s2bYKNjQ1atGgBALh69SoSEhIwYcIEuWcp9ueff6JJkyYAiuqhqKmpYdq0aTRAJwCKtr61b99eGKTHx8dj5MiRcHNzg7W1NVavXi3sB+dh0aJFonb/oUE6+eEVV+b+cu9sccutirikTJEsWrQIP//8My5duiTsSY+KikJkZGSZFb3/ScUXS/n5+ZBIJOjatatQnKWiGz9+PPbu3Yu0tDS4u7tj6NChwuCUtwsXLpTacw0UXVhevnyZaxZTU1PExMSgUqVKOHnyJPbt2wcAeP36Ndd6BsVttczMzIS2Wo0bN66wbbVI+V6/fo3+/fuLHUMhJCQkYPz48YiKipI53q5dO2zevBlWVlZyz7Bjxw65n+N7LFy4UPj3qFGj4OnpiSVLlpR6TXp6OrdMitD6jCiuu3fvyvyO7tu3D82aNcO2bdsAFH0+L1y4kNsgfeDAgaLUbihGg3Tywzt//ny5z/HoiUq+rl+/frh27RoCAgJw+PBhAIC1tTWuX79eZpsceVBWVsa4cePw4MEDLuf7EWzcuBH+/v44ePAgQkJCMGfOHDg7O2PkyJHo0qULl5mNuLg44d/379+XqehbUFCAkydPokaNGnLPUdLUqVMxZMgQaGtrw9zcHO3btwcAXLp0SZjZ5oHaapHv1b9/f5w+fRrjxo0TO4qoMjIy0K5dO1StWhX+/v6oV68eGGO4f/8+tm3bhjZt2uDevXuiXnSL5bfffsPNmzdLHR86dCgcHBy4bWtShNZnRHG9fv1aZiLl4sWL6N69u/C4adOm3G4qKcLqDtqTTv51/v77b+zduxfbt2/HrVu3aCadAADat2+PqVOnyiwBJP/15MkThIaGIiwsDPn5+UhISJD7DIdUKhU+CMv6KNLQ0MD69eu/e//8P+XmzZtIT09H586dhe/B8ePHoa+vL6wG4S0mJqZCt9Ui5VuxYgX8/f3h7Oxc5pavilJkcPbs2Th79iyioqJKrXr58OEDWrdujS5dumDFihUiJRRP9erVsXLlSri5uckcDw0NxezZs5GZmcklh7u7+3e9TlFWIxC+zM3Nhd7xnz59gr6+PiIiIoSVsvHx8WjXrh2XGkJlVXfnjWbSyb/GpUuXEBwcjN9//x3Gxsbo27cvNm7cKHasCk9JSQkvXrwo9UaXlZUFQ0NDbjdRJkyYgBkzZgh74r68c8+rrYeiKh4wM8a4/UzS0tLAGIOlpSWuX78uU0VVVVUVhoaGolT6dXBwgIODA4CiGf34+Hi0bNkSBgYG3LMUa9GihbCXlJCStm7dCm1tbVy8eBEXL16UeU4ikVSYQfqZM2fg7e1d5rYUDQ0NeHl5wdfXt0IO0qdOnYrx48fj9u3bcHR0BFDUlzokJIRrjQsafJOv6dGjB7y9vbFq1SocPnwYmpqaaNOmjfB8XFwcatWqxSXLl10yxEAz6eSHlpGRgdDQUAQHB+Pdu3cYMGAAgoKCEBsbCxsbG7HjEZR/N/L58+eoVasWPnz4wC3Hl4oHpRW1dsHHjx+F5e5XrlxBz5494e7ujm7dupX5/aoIpk6dCjs7O4wcORIFBQVo164doqOjoampiWPHjgnL33mgtlrkWxhjePr0KQwNDaGhoSF2HFHp6+vj5s2bpTqJFEtJSYGDgwPevHnDN5iCCA8Px9q1a4VtX9bW1pgyZQoGDBggcrKKraCgAAEBAQgPD8fTp09L1WepSJ1n/vrrL/Tt2xdXrlyBtrY2du7ciT59+gjPd+rUCc2bN8eyZctETMkPDdLJD8vFxQWXLl2Cs7MzhgwZgm7dukFJSQkqKio0SFcA69atAwBMmzYNS5YskVk6XVBQgEuXLuHx48fcWlo9efLkq8+bm5tzyaEoJkyYgH379sHU1BQeHh4YMmQIqlSpImqm+/fvl3mR4urqyi2DiYkJDh8+DAcHBxw+fBgTJ07E+fPnsWvXLpw7d65UQSp5obZa5HsUFhZCXV0dCQkJcu+WoejKW7VVLDMzEzVq1EB+fj7nZISUb8GCBdi+fTtmzJiBefPmYe7cuXj8+DEOHz6MBQsWVJiVMCW9ffsW2trapVbSZWdnQ1tbW6b44L8ZDdLJD0tZWRmenp4YP368zMUJDdIVg4WFBYCiwbGJiYnMm62qqipq1qyJxYsXo1mzZnI5/86dO9G8eXMu1Xx/RFKpFGZmZt/spcujgM+jR4/Qp08fxMfHC6sbgP8WbuG5ykFdXR0pKSkwMTHBmDFjoKmpicDAQKSlpaFBgwZ49+4dlxzm5uaYMGECtdUi31S/fn0EBwejefPmYkcRlZKSEpKSkmS2zZSUmZmJevXqcX0/2bVrF4KCgpCWloaYmBiYm5sjMDAQFhYW6NWrF7ccxT59+lTmyhwzMzPuWUiRWrVqYd26dXB2doaOjg7u3r0rHLt69Sp+/fVXsSMSkdCedPLDunLlCoKDg9GkSRNYW1tj2LBhGDhwoNixyH+kpaUBADp06ICDBw9y389rZGSELl26YP/+/WjevDmOHj361dfznK1VBMOHD1eI6qUAMGXKFFhYWCAyMhIWFha4fv06srKyMGPGDKxZs4ZrlmrVquH+/fswMjLCyZMnsXnzZgBAbm4u1/3x1FaLfK+VK1fCy8sLmzdvhq2trdhxRMMYQ926db/6PM/3vM2bN2PBggWYOnUqli1bJtwc0NfXR2BgINdBenJyMjw8PBAdHS1zvCJv91IUGRkZQucQbW1tvH37FgDQs2dPrvUCiOKhmXTyw8vJycH+/fsREhKC69evo6CgAP7+/vDw8ICOjo7Y8YiIYmNjMWzYMMTFxX11jzVdpIirSpUqOHfuHOzt7aGnp4fr16/DysoK586dw4wZM7htiQAAHx8fBAYGwsjICLm5uUhKSoKamhpCQkKwbds2xMTEcMkxcuRING3atMK31SLfZmBggNzcXOTn50NVVbXU3vSKsqf1y6J55WnXrp2ckxSxsbHB8uXL0bt3b+jo6CA2NhaWlpa4d+8e2rdvj7/++otLDgBo1aoVlJWV4e3tDSMjo1I3Kxo0aMAtC5FlZWWFsLAwNGvWDK1bt0bPnj3h7e2N/fv3Y/LkyXj58qXYEYlIaCad/PC0tLTg4eEBDw8PPHz4EMHBwVi5ciW8vb3RuXPnb86gkn/e9OnTsWTJEmhpaWH69Olffa2/v7/ccjRo0ACXLl0CoBiVOknZCgoKhBtqVapUwfPnz2FlZQVzc3M8fPiQaxYfHx/Y2toiPT0d/fv3F/r5Kikpwdvbm1uO2rVrY/78+bh69WqFbqtFvi0wMFDsCAqB1+D7e6WlpaFRo0aljqupqSEnJ4drlrt37+LWrVuoV68e1/OSb+vTpw8iIyPRrFkzTJ48GUOHDkVwcDCePn2KadOmiR2PiIgG6eRfxcrKSmixEhERgZCQELEjVUh37tzB58+fAQC3b98ud4khj6WH+vr6cj8H+f9ja2uL2NhYWFhYoFmzZvD19YWqqiq2bt0KS0tL7nl++umnUsdGjBjBNQO11SLfi/fvJvk+FhYWuHv3bqmipCdPnoS1tTXXLDY2Nlxn7sn3W7lypfDvn3/+Gebm5oiOjkadOnXg4uIiYjIiNlruTgipMCIjIxEQECDTgmbq1KlwcnISOVnFdurUKeTk5KBv375ISUlBz549kZSUhMqVK2P//v3o2LEj1zwXL17EmjVrhN8TGxsbeHl5yfRrJUSRpKamYseOHUhNTcXatWthaGiIP/74A2ZmZqhfv77Y8Sqk7du3w8fHB35+fhg5ciS2b9+O1NRUrFixAtu3b+daQ+fcuXOYN28eli9fXubKHF1dXW5ZiKxLly6hZcuWUFaWnTfNz89HdHQ02rZtK1IyIjYapBNC5Obz58/Q0NDA3bt3RS9otGnTJkyZMgU//fQTWrRoAQC4evUqDhw4gICAAEycOFHUfERWdnY2DAwMuBe32717N9zd3dG3b1+0atUKABAVFYVDhw4hNDQUgwcP5pqHkG+5ePEiunfvjlatWuHSpUt48OABLC0tsXLlSty8eRMHDhwQO2KFtWfPHvj4+CA1NRUAYGxsjEWLFmHkyJFccxTXZPny/ZQKx4mvvNaBWVlZMDQ0pJ9NBUaDdEKIXFlaWuLQoUOiF6YxMTGBt7c3Jk2aJHN848aNWL58OZ49eyZSMqJIrK2tMWbMmFJ7Af39/bFt2zZhdl0eFKWWA/mxtGjRAv3798f06dNlCpRdv34dffv2xZ9//il2xAovNzcX79+/L7eHu7x9q6ieou3nr0ikUikyMzNLtQ5MSkqCg4MDt7afRPHQnnRCiFzNnTsXv/zyC3bt2oVKlSqJluPNmzfo1q1bqeNdunShXtQi8fDw+K7X8awt8ejRozL3Abq6uuKXX36R67lL1nL4WkV7RWmdRxRDfHx8mb2UDQ0NK/w+5OIbFCYmJqLm0NTUhKampmjnp0G44unbty+AovdzNzc3oUgpUFRMNS4uDi1bthQrHlEANEgnhMjVhg0bkJKSAmNjY5ibm0NLS0vm+du3b3PJ4erqikOHDsHLy0vm+JEjR9CzZ08uGYis0NBQmJubo1GjRlCURV2mpqaIjIxE7dq1ZY6fPXsWpqamcj33+fPny/w3IV+jr6+PFy9ewMLCQub4nTt3UKNGDZFSiaewsBBLly6Fn58f3r9/DwDQ0dHBjBkzMHfu3K+24/z/1ahRo+++icbrs6+k3NxcPH36FJ8+fZI5bm9vzz1LRaenpwegaMuBjo6OTOtEVVVVNG/eHKNHjxYrHlEANEgnhMhVr169FGLmz8bGBsuWLcOFCxdk9qRHRUVhxowZWLdunfBaqpzNx/jx47F3716kpaXB3d0dQ4cOFXW1BQDMmDEDnp6euHv3rjCLERUVhdDQUKxdu1bUbISUZeDAgZg9ezZ+++03SCQSFBYWIioqCjNnzsTw4cPFjsfd3LlzhVasxXUlrly5Ah8fH+Tl5WHZsmVyO3fv3r2Ff+fl5WHTpk2wsbGR+cxJSEjAhAkT5JahLK9evYK7uzv++OOPMp+nfc/87dixAwBQs2ZNzJw5s9QEBiG0J50QUiF8OctUHolEgkePHsk5DSn28eNHHDx4ECEhIYiOjoazszNGjhyJLl26iHZz59ChQ/Dz85PpAuDl5YVevXrJ/dyKuAWAKLZPnz5h0qRJCA0NRX5+PpSVlVFQUIDBgwcjNDQUSkpKYkfkytjYGEFBQXB1dZU5fuTIEUyYMIFb/ZFRo0bByMgIS5YskTm+cOFCpKenc/0bHjJkCJ48eYLAwEC0b98ehw4dQmZmprDiwNnZmVsWQsj3oUE6IUSuLC0tcePGDVSuXFnm+Js3b9C4cWMaEBPBkydPEBoairCwMOTn5yMhIQHa2trczp+fn4/ly5fDw8NDtD2sUqn0u7YAHDp0iGMqoogKCwuxevVqHD16FJ8+fYK9vT369euH9+/fo1GjRqhTp47YEUWhrq6OuLg41K1bV+b4w4cP0bBhQ3z48IFLDj09Pdy8ebPUzyE5ORkODg54+/YtlxwAYGRkhCNHjsDR0RG6urq4efMm6tati6NHj8LX1xdXrlzhloXIyszMxMyZMxEZGYmXL1+Wet+nVQ4VFy13J4TI1ePHj8v8kPn48aOoVYcLCgoQHx8Pc3NzGBgYiJaD/JdUKoVEIgFjTJQLE2VlZfj6+oq6RFgRtwAQxbRs2TL4+PjAyckJGhoa+PXXX8EYq/CrLBo0aIANGzbIbGECiuqj8OwyoqGhgaioqFKD9KioKKirq3PLAQA5OTlCZXkDAwO8evUKdevWhZ2dnSh748l/ubm54enTp5g/fz6MjIwUYnsgUQw0SCeEyMXRo0eFf586dUookgIUDZAjIyO/ewn6P2Hq1Kmws7PDyJEjUVBQgLZt2yImJgaampo4duwY2rdvzy0L+a+Sy92vXLmCnj17YsOGDejWrZtcCzyVp1OnTrh48SJq1qzJ/dxAUUtAf39/4XsyZ84chdgCQBRPWFgYNm3ahLFjxwIoKm7o7OyM7du3i/K3oyh8fX3h7OyMs2fPCnvBY2JikJ6ejhMnTnDLMXXqVIwfPx63b9+Go6MjAODatWsICQnB/PnzueUAACsrKzx8+BA1a9ZEgwYNsGXLFtSsWRNBQUEwMjLimoXIunLlCi5fvoyGDRuKHYUoGFruTgiRi+KLxOKZ0ZJUVFRQs2ZN+Pn5causbmJigsOHD8PBwQGHDx/GxIkTcf78eezatQvnzp1DVFQUlxzkvyZMmIB9+/bB1NQUHh4eGDJkCKpUqSJqpqCgICxatAhDhgxBkyZNShXz+XKfq7yJvQWAKC41NTWkpKTIdB1QV1dHSkqK6C3HxPb8+XNs3LgRiYmJAIrqSkyYMAHGxsZcc4SHh2Pt2rUy9S2mTJmCAQMGcM2xe/du5Ofnw83NDbdu3UK3bt2QnZ0NVVVVhIaG4ueff+aah/yXjY0N9uzZg0aNGokdhSgYGqQTQuTKwsICN27cEH3wVfLidcyYMdDU1ERgYCDS0tLQoEEDvHv3TtR8FZFUKoWZmdk32xYdPHiQa6bySCQS7svw09PTsWPHDoSGhuLTp09ITEykQToBACgpKSEjIwNVq1YVjuno6CAuLo7rKiXy48nNzUViYiLMzMxE/2yu6E6fPg0/Pz9hdQMhxWi5OyFErtLS0kode/PmDfT19bnmqFatGu7fvw8jIyOcPHkSmzdvBlB0sVLRqh8riuHDhyvc8u3CwkKxIyjcFgCimBhjcHNzg5qamnAsLy8P48aNk1kBwvMml1ji4uJga2sLqVSKuLi4r76Wd0/wT58+4eXLl6XeW8zMzLic//Pnz6hXrx6OHTsGa2trAICmpiYaN27M5fzk637++Wfk5uaiVq1a0NTUhIqKiszz2dnZIiUjYqNBOiFErlatWoWaNWsKy+n69++P33//HUZGRjhx4gS3Qj7u7u4YMGCAUJjFyckJQNEewXr16nHJQGSFhoaKHUHhfLkFYO/evTTTRco0YsSIUseGDh0qQhLxNWzYEBkZGTA0NETDhg3L3GYF8F0Nk5ycDA8PD0RHR8scZ4xxzaGiooK8vDwu5yL/u8DAQLEjEAVFy90JIXJlYWGBPXv2oGXLljhz5gwGDBiA/fv3Izw8HE+fPsXp06e5ZTlw4ADS09PRv39/Yc/mzp07oa+vz6UHNlFcHz58QGRkpFAjYc6cOfj48aPwvJKSEpYsWSL3qsyKuAWAEEX35MkTmJmZQSKR4MmTJ199rbm5OZdMrVq1grKyMry9vcus2s2z0vzy5cuRlJSE7du3Q1mZ5ucI+RHQIJ0QIlcaGhpISkqCqakppkyZgry8PGzZsgVJSUlo1qwZXr9+LXZEQhAUFITjx48jIiICQNHe3vr160NDQwMAkJiYiFmzZmHatGlyzeHm5vZdWwB27Ngh1xyE/Bt9+PBB+JuWNy0tLdy6dUshVmr16dMHkZGR0NbWhp2dXamCmHTTTzHk5eXh06dPMsd0dXVFSkPERrfTCCFyZWBggPT0dJiamuLkyZNYunQpAHDrhd2jRw/s3btXaAG3cuVKjBs3TtgTn5WVhTZt2uD+/ftyz0IU1549ezBr1iyZY7/++issLS0BFFVH3rhxo9wH6bQFgJB/3sePH7FhwwasXr0aGRkZXM5pY2ODv/76i8u5vkVfXx/9+vUTOwYpQ05ODmbPno3w8HBkZWWVep53sVKiOGiQTgiRq759+2Lw4MGoU6cOsrKy0L17dwDAnTt3ULt2bbmf/9SpUzLLlpcvX44BAwYIg/T8/Hw8fPhQ7jmIYktJSYGdnZ3wWF1dXaZIm6OjIyZOnChGNELId/j48SN8fHxw5swZqKqqYtasWejduzd27NiBuXPnQklJSe432UpatWoVZs2aheXLl8POzq5UQTCeM6S08kZxzZo1C+fPn8fmzZsxbNgwbNy4Ec+ePcOWLVuwcuVKseMREdEgnRAiVwEBAahZsybS09Ph6+srtI968eIFJkyYIPfzf7mjh3b4kLK8efNG5mbOq1evZJ4vLCyUeZ4QolgWLFiALVu2wMnJCdHR0ejfvz/c3d1x9epV+Pv7o3///lw7eRQXJ+3UqZPMcd6F44hii4iIQFhYGNq3bw93d3e0adMGtWvXhrm5Ofbs2YMhQ4aIHZGIhAbphBC5UlFRwcyZM0sd5zmjQci3mJiY4N69e7Cysirz+bi4OKHYICFE8fz2228ICwuDq6sr7t27B3t7e+Tn5yM2NlaUVo/nz5/nfs4vpaamYtmyZQgJCQFQ1Pbt/fv3wvNKSkq4cuVKue97RP6ys7OFbVW6urpCy7XWrVtj/PjxYkYjIqNBOiHkH3f06FF0794dKioqOHr06Fdf6+rqKtcsEomk1AWaovXmJuLr0aMHFixYAGdn51IV3D98+IBFixbB2dlZpHSEkG/5888/0aRJEwCAra0t1NTUMG3aNNHe79u1ayfKeUtav349qlWrJjx+/fo1FixYAENDQwDA/v37ERAQgKCgILEiVniWlpZIS0uDmZkZ6tWrh/DwcDg6OiIiIkLYlkcqJqruTgj5x0mlUqFnbcl9vV/iseRPKpWie/fuUFNTA1C0tKxjx45CdduPHz/i5MmTtPSwgsvMzETDhg2hqqqKSZMmoW7dugCAhw8fYsOGDcjPz8edO3dkLngJIYpDSUkJGRkZqFq1KoCiDg1xcXGwsLAQNVdubi6ePn1aqmq3vb293M9tZ2eH4OBgODo6Aij6nsTGxgoztxcvXsSoUaOQnJws9yykbAEBAVBSUoKnpyfOnj0LFxcXMMbw+fNn+Pv7Y8qUKWJHJCKhQToh5F/N3d39u15HhXVIWloaxo8fjzNnzgi1CyQSCTp37oxNmzYJF7aEEMXzrRuyxXi1G3v16hXc3d3xxx9/lPk8jxvDOjo6ePDggbBVZ9q0aZg3bx4qV64MoKi/fL169fDhwwe5ZyHf5/Hjx7h9+zZq167N5UYOUVw0SCeEEEJKyM7ORkpKCgCgdu3aqFSpksiJCCHfomg3ZIcMGYInT54gMDAQ7du3x6FDh5CZmYmlS5fCz8+Py/YZPT09nDlzRphJ/9L169fh5OSEd+/eyT0LIeR/Q3vSCSFyU1hYiNDQUBw8eBCPHz+GRCKBhYUFfvrpJwwbNoz2hhOFVKlSpXIvagkhiknRVkOdO3cOR44cgYODA6RSKczNzdG5c2fo6upixYoVXAbp9evXx9mzZ8t9Pzt16hRsbW3lnoOUFhMTg6ysLPTs2VM4FhYWhoULFyInJwe9e/fG+vXrhZUhpOIpf7MoIYT8f2CMwdXVFaNGjcKzZ89gZ2eH+vXr48mTJ3Bzc0OfPn3EjkgIIYTIRU5OjlCgzcDAQGjraGdnh9u3b3PJ4O7ujmXLluH48eOlnouIiMDKlSu/ewUC+WctXrwYCQkJwuP4+HiMHDkSTk5O8Pb2RkREBFasWCFiQiI2mkknhMhFaGgoLl26hMjISHTo0EHmuXPnzqF3794ICwvD8OHDRUpICCGEyIeVlRUePnyImjVrokGDBtiyZQtq1qyJoKAgGBkZcckwevRonDt3Di4uLqhXr57Qau3hw4d4+PAh+vXrh9GjR3PJQmTdvXsXS5YsER7v27cPzZo1w7Zt2wAApqamWLhwIXx8fERKSMRGe9IJIXLRpUsXdOzYEd7e3mU+v3z5cly8eBGnTp3inIwQQgiRr927dyM/Px9ubm64desWunXrhuzsbKiqqiI0NBQ///wztyz79u3Dvn37kJSUBACoU6cOBg0ahIEDB3LLQGSpq6sjOTkZpqamAIr6onfv3h1z584FUFRAzs7ODn///beYMYmIaJBOCJGL6tWr4+TJk2jYsGGZz9+5cwfdu3dHRkYG32CEEEIIZ7m5uUhMTISZmRmqVKkidhwiMnNzc+zatQtt27bFp0+foK+vj4iICHTq1AlA0fL3du3aITs7W+SkRCy0J50QIhfZ2dlf7SldrVo1vH79mmMiQr5PamoqJk+eDCcnJzg5OcHT0xOpqalixyKE/CA+f/6MWrVq4cGDB8IxTU1NNG7cmAboBADQo0cPeHt74/Lly5gzZw40NTXRpk0b4fm4uDjUqlVLxIREbDRIJ4TIRUFBAZSVyy97oaSkhPz8fI6JCPm2U6dOwcbGBtevX4e9vT3s7e1x7do11K9fH2fOnBE7HiHkB6CiooK8vDyxYxAFtmTJEigrK6Ndu3bYtm0btm3bBlVVVeH5kJAQdOnSRcSERGy03J0QIhdSqRTdu3cvt33Ix48fcfLkSRQUFHBORkj5GjVqhK5du2LlypUyx729vXH69GluVZkJIT+25cuXIykpCdu3b//qDWtSsb19+xba2tpQUlKSOZ6dnQ1tbW2ZgTupWGiQTgiRi+9t66JovW1Jxaauro74+HjUqVNH5nhSUhLs7e1pdowQ8l369OmDyMhIaGtrw87ODlpaWjLPHzx4UKRkhJAfAd3aI4TIBQ2+yY+oatWquHv3bqlB+t27d4Wex4QQ8i36+vro16+f2DFK+fPPPwEAJiYmIichhHwNDdIJIYSQ/xg9ejTGjBmDR48eoWXLlgCAqKgorFq1CtOnTxc5HSHkR6FIN6oLCwuxdOlS+Pn54f379wAAHR0dzJgxA3PnzoVUSiWqCFE0tNydEEII+Q/GGAIDA+Hn54fnz58DAIyNjeHl5QVPT09IJBKRExJCyP9mzpw5CA4OxqJFi9CqVSsAwJUrV+Dj44PRo0dj2bJlIickhHyJBumEEEJIGf7++28ARTNOhBDyPVJTU7Fs2TKEhIQAAMzMzITZa6Cos8mVK1dgZWXFLZOxsTGCgoLg6uoqc/zIkSOYMGECnj17xi0LIeT70PoWQggh5D86duyIN2/eACganBcP0N+9e4eOHTuKmIwQ8iNYv349qlWrJjx+/fo15syZg4CAAAQEBKBp06YICAjgmik7Oxv16tUrdbxevXrIzs7mmoUQ8n1oTzohhBDyHxcuXMCnT59KHc/Ly8Ply5dFSEQI+ZFERkYiODhY5li/fv1gaWkJAKhZsyZGjRrFNVODBg2wYcMGrFu3Tub4hg0b0KBBA65ZCCHfhwbphBBCKry4uDjh3/fv30dGRobwuKCgACdPnkSNGjXEiEYI+YE8fvwYxsbGwuNRo0ZBT09PeFyzZk2hwjovvr6+cHZ2xtmzZ9GiRQsAQExMDNLT03HixAmuWQgh34f2pBNCCKnwpFKpUBSurI9FDQ0NrF+/Hh4eHryjEUJ+IHp6ejhz5gwcHR3LfP769etwcnLCu3fvuOZ6/vw5Nm7ciMTERACAtbU1JkyYIHNDgRCiOGgmnRBCSIWXlpYGxhgsLS1x/fp1VK1aVXhOVVUVhoaGUFJSEjEhIeRHUL9+fZw9e7bcQfqpU6dga2vLOVVR8Tiq4k7Ij4MG6YQQQio8c3NzAEX9hAkh5P/K3d0dU6dORYMGDeDs7CzzXEREBFauXInAwEC554iLi4OtrS2kUqnMdp6y2Nvbyz0PIeR/Q8vdCSGEkC/cv38fT58+LVVE7ssWRoQQ8qVBgwZh//79qFevntBq7eHDh3j48CH69euH8PBwuWeQSqXIyMiAoaGhsJ2nrEt+iUSCgoICuechhPxvaJBOCCGE/MejR4/Qp08fxMfHy1zUFu9Xp4tZQsj32LdvH/bt24ekpCQAQJ06dTBo0CAMHDiQy/mfPHkCMzMzSCQSPHny5KuvLV5JRAhRHDRIJ4QQQv7DxcUFSkpK2L59OywsLHD9+nVkZWVhxowZWLNmDdq0aSN2REII+cd8+PABGhoaYscghHxBKnYAQgghRFHExMRg8eLFqFKlCqRSKaRSKVq3bo0VK1bA09NT7HiEEPKP+PjxI/z8/GBhYSF2FEJIGWiQTgghhPxHQUEBdHR0AABVqlTB8+fPARQtB3348KGY0Qgh5H/y8eNHzJkzBw4ODmjZsiUOHz4MANixYwcsLCwQGBiIadOmiRuSEFImqu5OCCGE/IetrS1iY2NhYWGBZs2awdfXF6qqqti6dSssLS3FjkcIId9twYIF2LJlC5ycnBAdHY3+/fvD3d0dV69ehb+/P/r370+tJQlRUDRIJ4QQQv5j3rx5yMnJAQAsXrwYPXv2RJs2bVC5cmXs379f5HSEEPL9fvvtN4SFhcHV1RX37t2Dvb098vPzERsbKxTDJIQoJiocRwghhHxFdnY2DAwM6KKWEPJ/8ueffwIATExMuJ5XVVUVaWlpqFGjBgBAQ0MD169fh52dHdcchJD/He1JJ4QQQr6iUqVKNEAnhPxPCgsLsXjxYujp6cHc3Bzm5ubQ19fHkiVLUFhYyCVDQUEBVFVVhcfKysrQ1tbmcm5CyP8fWu5OCCGkwvPw8Piu14WEhMg5CSHk32Du3LkIDg7GypUr0apVKwDAlStX4OPjg7y8PCxbtkzuGRhjcHNzg5qaGgAgLy8P48aNg5aWlszrDh48KPcshJD/DS13J4QQUuFJpVKYm5ujUaNG+NrH4qFDhzimIoT8qIyNjREUFARXV1eZ40eOHMGECRPw7NkzuWdwd3f/rtft2LFDzkkIIf8rGqQTQgip8CZOnIi9e/fC3Nwc7u7uGDp0KCpVqiR2LELID0pdXR1xcXGoW7euzPGHDx+iYcOG+PDhg0jJCCE/AtqTTgghpMLbuHEjXrx4gVmzZiEiIgKmpqYYMGAATp069dWZdUIIKUuDBg2wYcOGUsc3bNiABg0aiJCIEPIjoZl0Qggh5AtPnjxBaGgowsLCkJ+fj4SEBCq4RAj5bhcvXoSzszPMzMzQokULAEBMTAzS09Nx4sQJtGnTRuSEhBBFRjPphBBCyBekUikkEgkYYygoKBA7DiHkB9OuXTskJSWhT58+ePPmDd68eYO+ffvi4cOHNEAnhHwTzaQTQgghAD5+/IiDBw8iJCQEV65cQc+ePeHu7o5u3bpBKqV72oQQQgjhg1qwEUIIqfAmTJiAffv2wdTUFB4eHti7dy+qVKkidixCyA8kLi4Otra2kEqliIuL++pr7e3tOaUihPyIaCadEEJIhSeVSmFmZoZGjRpBIpGU+zrqJ0wIKY9UKkVGRgYMDQ1ltsx8SSKR0DYaQshX0Uw6IYSQCm/48OFfHZwTQsi3pKWloWrVqsK/CSHk/4pm0gkhhBBCCOHkw4cP0NDQEDsGIUSBUSUcQgghhBBC5Ozjx4/w8/ODhYWF2FEIIQqOBumEEEIIIYT8Az5+/Ig5c+bAwcEBLVu2xOHDhwEAO3bsgIWFBQIDAzFt2jRxQxJCFB4tdyeEEEIIIeQfMHv2bGzZsgVOTk6Ijo7Gq1ev4O7ujqtXr+KXX35B//79oaSkJHZMQoiCo8JxhBBCCCGE/AN+++03hIWFwdXVFffu3YO9vT3y8/MRGxtLxSkJId+NZtIJIYQQQgj5B6iqqiItLQ01atQAAGhoaOD69euws7MTORkh5EdCe9IJIYQQQgj5BxQUFEBVVVV4rKysDG1tbRETEUJ+RLTcnRBCCCGEkH8AYwxubm5QU1MDAOTl5WHcuHHQ0tKSed3BgwfFiEcI+UHQIJ0QQgghhJB/wIgRI2QeDx06VKQkhJAfGe1JJ4QQQgghhBBCFATtSSeEEEIIIYQQQhQEDdIJIYQQQgghhBAFQYN0QgghhBBCCCFEQdAgnRBCCCGEEEIIURA0SCeEEELIP6p9+/aYOnWq2DEIIYSQHxIN0gkhhJB/CTc3N0gkklJf3bp1++Z/W7NmTQQGBso/JCGEEEK+ivqkE0IIIf8i3bp1w44dO2SOqampiZSGEEIIIf8rmkknhBBC/kXU1NRQvXp1mS8DAwMwxuDj4wMzMzOoqanB2NgYnp6eAIqWpz958gTTpk0TZt8BICsrC4MGDUKNGjWgqakJOzs77N27V+Z8OTk5GD58OLS1tWFkZAQ/P79SmV6/fo3hw4fDwMAAmpqa6N69O5KTk4Xnnzx5AhcXFxgYGEBLSwv169fHiRMn5PhdIoQQQhQXDdIJIYSQCuD3339HQEAAtmzZguTkZBw+fBh2dnYAgIMHD8LExASLFy/Gixcv8OLFCwBAXl4emjRpguPHj+PevXsYM2YMhg0bhuvXrwv/u15eXrh48SKOHDmC06dP48KFC7h9+7bMud3c3HDz5k0cPXoUMTExYIyhR48e+Pz5MwBg4sSJ+PjxIy5duoT4+HisWrUK2tranL4zhBBCiGKh5e6EEELIv8ixY8dKDXB/+eUXqKuro3r16nBycoKKigrMzMzg6OgIAKhUqRKUlJSgo6OD6tWrC/9djRo1MHPmTOHx5MmTcerUKYSHh8PR0RHv379HcHAwdu/ejU6dOgEAdu7cCRMTE+G/SU5OxtGjRxEVFYWWLVsCAPbs2QNTU1McPnwY/fv3x9OnT9GvXz/hpoGlpaV8vjmEEELID4AG6YQQQsi/SIcOHbB582aZY5UqVUJOTg4CAwNhaWmJbt26oUePHnBxcYGycvmXAgUFBVi+fDnCw8Px7NkzfPr0CR8/foSmpiYAIDU1FZ8+fUKzZs1kzmVlZSU8fvDgAZSVlWVeU7lyZVhZWeHBgwcAAE9PT4wfPx6nT5+Gk5MT+vXrB3t7+3/k+0EIIYT8aGi5OyGEEPIvoqWlhdq1a8t8VapUCaampnj48CE2bdoEDQ0NTJgwAW3bthWWnJdl9erVWLt2LWbPno3z58/j7t276Nq1Kz59+vSPZh41ahQePXqEYcOGIT4+Hg4ODli/fv0/eg5CCCHkR0GDdEIIIaSC0NDQgIuLC9atW4cLFy4gJiYG8fHxAABVVVUUFBTIvD4qKgq9evXC0KFD0aBBA1haWiIpKUl4vlatWlBRUcG1a9eEY69fv5Z5jbW1NfLz82Vek5WVhYcPH8LGxkY4ZmpqinHjxuHgwYOYMWMGtm3b9o///yeEEEJ+BLTcnRBCCPkX+fjxIzIyMmSOKSsr49ixYygoKECzZs2gqamJ3bt3Q0NDA+bm5gCK+qRfunQJAwcOhJqaGqpUqYI6dergwIEDiI6OhoGBAfz9/ZGZmSkMrrW1tTFy5Eh4eXmhcuXKMDQ0xNy5cyGV/ncOoE6dOujVqxdGjx6NLVu2QEdHB97e3qhRowZ69eoFAJg6dSq6d++OunXr4vXr1zh//jysra05fccIIYQQxUIz6YQQQsi/yMmTJ2FkZCTz1bp1a+jr62Pbtm1o1aoV7O3tcfbsWURERKBy5coAgMWLF+Px48eoVasWqlatCgCYN28eGjdujK5du6J9+/aoXr06evfuLXO+1atXo02bNnBxcYGTkxNat26NJk2ayLxmx44daNKkCXr27IkWLVqAMYYTJ05ARUUFQNHe94kTJ8La2hrdunVD3bp1sWnTJvl/swghhBAFJGGMMbFDEEIIIYQQQgghhGbSCSGEEEIIIYQQhUGDdEIIIYQQQgghREHQIJ0QQgghhBBCCFEQNEgnhBBCCCGEEEIUBA3SCSGEEEIIIYQQBUGDdEIIIYQQQgghREHQIJ0QQgghhBBCCFEQNEgnhBBCCCGEEEIUBA3SCSGEEEIIIYQQBUGDdEIIIYQQQgghREHQIJ0QQgghhBBCCFEQNEgnhBBCCCGEEEIUxP8D9k+qHQn/lIYAAAAASUVORK5CYII=",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"estado\"])[\"acesso_agua\"].sum().plot(kind='bar')\n",
+ "plt.title(\"Estados do Brasil e o Acesso a água encanada\")\n",
+ "plt.xlabel(\"Estados\")\n",
+ "plt.ylabel(\"Porcentagem da População com acesso a água encanada\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Em relação ao acesso a água encanada não há relação com o aumento de casos, já que os Estados com mais acesso, também são os que apresentam maior índice de casos."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 28,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Text(0, 0.5, 'Frenguência relatada de escassez de água')"
+ ]
+ },
+ "execution_count": 28,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA/YAAANACAYAAACBi/Y8AAAAP3RFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMS5wb3N0MSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8kixA/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAD3gElEQVR4nOzdd1iV9ePG8fsAMhyACxBFxFEu1NRMcmSmopJl+s2GpallFu7S9JuzNEc5MleWaUO/qallmnuWK3PnTlEsBUsFnKDw+f3hxfl5YojHwzj1fl3XueI8z+c8z31YefN5hsUYYwQAAAAAAJySS24HAAAAAAAA9qPYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAIBss2bNGo0cOVJXr17N7SgA8I9FsQcA5AmNGjVSo0aNcjuGTp48KYvFotmzZ+d2lGxlsVg0bNgw6/PZs2fLYrHo5MmTuZYJuSM7f/Z+++03tW3bVv7+/sqfP3+27AMAQLEHgH+81MKW0WPbtm1Z3tbBgwc1bNgwyt9dSP1Dwe0Pb29v1ahRQ5MnT1ZycnJuRwSyRWJiotq1a6cePXro5Zdfzu04APCP5pbbAQAAOeOdd95RSEhImuXly5fP8jYOHjyo4cOHq1GjRipTpowD0/3zPffcc2rZsqUkKT4+Xj/88IN69OihU6dO6f3338/xPNeuXZObG/8MQPY5cOCAOnXqpB49euR2FAD4x+P/6ADwL9GiRQvVrl07t2P8a9WsWVMvvPCC9fnrr7+uhx56SHPnzs202BtjdP36dXl5eTk0j6enp0O3B/xdzZo1VbNmzdyOAQD/ChyKDwCw+vrrr1WrVi0VKlRI3t7eCg0N1Ycffijp1iH9Tz/9tCTp0UcftR5WvmHDBknSd999p4iICAUGBsrDw0PlypXTu+++m+6h5jNmzFC5cuXk5eWlOnXq6Mcff0w3z7lz59SlSxf5+/vL09NT1atX1+eff35XuTMTFxenl156ST4+PvL19VXHjh0VFxeX7th169apQYMGKlCggHx9ffXkk0/q0KFDd9xHRiwWi/z9/dPMmpcpU0aPP/64Vq5cqdq1a8vLy0sff/yxJGnWrFlq3Lix/Pz85OHhocqVK2vatGlptv3LL78oPDxcxYoVk5eXl0JCQtS5c+c0+7/9HPu7cfjwYf3nP/9RkSJF5Onpqdq1a2vJkiVZeu2VK1f0xhtvKCgoSB4eHrr//vv1wQcfyBiTpddv375dzZs3l4+Pj/Lnz69HHnlEmzdvthlz6dIl9e7dW2XKlJGHh4f8/PzUtGlT7dq1K822WrZsqcKFC6tAgQKqVq2azffNvn379NJLL6ls2bLy9PRUQECAOnfurPPnz9/1/o4dO6a2bdsqICBAnp6eKlWqlJ599lnFx8fbbOurr75SrVq15OXlpSJFiujZZ5/V6dOnreszO7UmK+fJZ/VnLzExUUOHDlX58uXl4eGhoKAg9e/fX4mJiXfcx48//qinn35apUuXtr62T58+unbtWpqxCxYsUOXKleXp6amqVatq8eLFeumll2yOCNqwYYPN75pU6V0PI6tfMwD4p2HGHgD+JeLj4/XXX3/ZLLNYLCpatKgkafXq1Xruuef02GOPacyYMZKkQ4cOafPmzerVq5caNmyonj17atKkSfrvf/+rSpUqSZL1v7Nnz1bBggXVt29fFSxYUOvWrdOQIUOUkJBgMyM9c+ZMvfrqq3r44YfVu3dvnThxQk888YSKFCmioKAg67hr166pUaNG+u2339S9e3eFhIRowYIFeumllxQXF6devXplKXdGjDF68skn9dNPP6lbt26qVKmSFi9erI4dO6YZu2bNGrVo0UJly5bVsGHDdO3aNX300UeqV6+edu3alaXTEq5evWr9/CckJGj58uVasWKFBg4cmGbskSNH9Nxzz+nVV1/VK6+8ovvvv1+SNG3aNFWpUkVPPPGE3Nzc9P333+v1119XSkqKIiMjJd36Y0izZs1UvHhxDRgwQL6+vjp58qQWLVp0x4xZceDAAdWrV08lS5bUgAEDVKBAAc2fP1+tW7fWwoUL9dRTT2X4WmOMnnjiCa1fv15dunRRjRo1tHLlSvXr109//PGHJkyYkOm+161bpxYtWqhWrVoaOnSoXFxcrH/s+PHHH1WnTh1JUrdu3fTNN9+oe/fuqly5ss6fP6+ffvpJhw4dss4gr169Wo8//rhKlCihXr16KSAgQIcOHdLSpUttvrdOnDihTp06KSAgQAcOHNCMGTN04MABbdu2TRaLJUv7S0pKUnh4uBITE9WjRw8FBATojz/+0NKlSxUXFycfHx9J0siRIzV48GC1a9dOL7/8sv7880999NFHatiwoXbv3i1fX181bNhQX375pc3n5dSpUxo0aJD8/Pwy/fxl9WcvJSVFTzzxhH766Sd17dpVlSpV0v79+zVhwgQdPXpU3377bab7WbBgga5cuaLXXntNRYsW1fbt2/XRRx/p999/14IFC6zjli1bpmeeeUahoaEaNWqULl68qC5duqhkyZKZbj8zWf2aAcA/jgEA/KPNmjXLSEr34eHhYR3Xq1cv4+3tbW7evJnhthYsWGAkmfXr16dZd/Xq1TTLXn31VZM/f35z/fp1Y4wxSUlJxs/Pz9SoUcMkJiZax82YMcNIMo888oh12cSJE40k89VXX1mXJSUlmbCwMFOwYEGTkJCQ5dzp+fbbb40kM3bsWOuymzdvmgYNGhhJZtasWdblNWrUMH5+fub8+fPWZXv37jUuLi6mQ4cOme4nKioqw8//a6+9ZlJSUmzGBwcHG0lmxYoVabaV3uc4PDzclC1b1vp88eLFRpLZsWNHprkkmaFDh1qfp36fREVFZfq6xx57zISGhlq/psYYk5KSYh5++GFToUKFTF+b+jkfMWKEzfL//Oc/xmKxmN9++y3D16akpJgKFSqY8PBwm8/Z1atXTUhIiGnatKl1mY+Pj4mMjMxwWzdv3jQhISEmODjYXLx4Mc1+bt/23/3vf/8zksymTZuyvL/du3cbSWbBggUZjjl58qRxdXU1I0eOtFm+f/9+4+bmlmZ5qmvXrplatWqZwMBAc/bs2Qy3fzc/e19++aVxcXExP/74o802pk+fbiSZzZs3Z7gfY4y5fPlymmUjRowwFovFnDp1yrosNDTUlCpVyly6dMm6bMOGDUaSCQ4Oti5bv359ur93Un+2bv9ZzerXDAD+aTgUHwD+JaZMmaLVq1fbPJYvX25d7+vrqytXrmj16tV2bf/2c8AvXbqkv/76Sw0aNNDVq1d1+PBhSbcOET937py6desmd3d36/jUw+Fv98MPPyggIEDPPfecdVm+fPnUs2dPXb58WRs3bryn3D/88IPc3Nz02muvWZe5urqmudDX2bNntWfPHr300ksqUqSIdXm1atXUtGlT/fDDD1naX9euXa2f94ULFyoyMlIff/yx+vbtm2ZsSEiIwsPD0yy//XOcegTGI488ohMnTlgP6fb19ZUkLV26VDdu3MhStqy6cOGC1q1bp3bt2lm/xn/99ZfOnz+v8PBwHTt2TH/88UeGr//hhx/k6uqqnj172ix/4403ZIyx+X78uz179ujYsWN6/vnndf78eeu+r1y5oscee0ybNm1SSkqKpFufg+3bt+vMmTPpbmv37t2KiopS7969rZ+vVLfP6N7++b5+/br++usv1a1bV5JsDrO/0/5Sv7dXrlyZ4b3cFy1apJSUFLVr18763v766y8FBASoQoUKWr9+fbqve/3117V//34tXLhQAQEB6Y6R7u5nb8GCBapUqZIqVqxok6Vx48aSlGGWVAUKFLB+nJKSouvXrys8PFzGGO3evVuSdObMGe3fv18dOnRQwYIFreMfeeQRhYaGZrr9zGT1awYA/zQcig8A/xJ16tTJ9OJ5r7/+uubPn68WLVqoZMmSatasmdq1a6fmzZtnafsHDhzQoEGDtG7dOiUkJNisSy2dp06dkiRVqFDBZn2+fPlUtmxZm2WnTp1ShQoV5OJi+zfo1EP/U7dlb+5Tp06pRIkSNqVCkvWw99vHpbc8NcvKlSt15coVmzKTngoVKqhJkybW523atJHFYtHEiRPVuXNnmzKT3t0LJGnz5s0aOnSotm7dmqYgxsfHy8fHR4888ojatm2r4cOHa8KECWrUqJFat26t559/Xh4eHplmvJPffvtNxhgNHjxYgwcPTnfMuXPnMjyU+tSpUwoMDFShQoVslv/9a5qeY8eOSVK6p0qkio+PV+HChTV27Fh17NhRQUFBqlWrllq2bKkOHTpYv8eOHz8uSapatWqG25Ju/SFj+PDh+vrrr3Xu3Lk0+0p1p/2FhISob9++Gj9+vObMmaMGDRroiSee0AsvvGAt1ceOHZMxJs3PRqp8+fKlWfbxxx9r1qxZ+vjjj63lNSN387N37NgxHTp0SMWLF093W3//XPzdmTNnNGLECH3//fc6e/aszXU2/v67IL27cpQvX97uEp7VrxkA/NNQ7AEAkiQ/Pz/t2bNHK1eu1PLly7V8+XLNmjVLHTp0SPeCdbeLi4vTI488Im9vb73zzjsqV66cPD09tWvXLr311lvWmdS8lju3PfbYY5o8ebI2bdpkU+zTuwL+8ePH9dhjj6lixYoaP368goKC5O7urh9++EETJkywfo4tFou++eYbbdu2Td9//71Wrlypzp07a9y4cdq2bVuaP2TcjdR9vPnmm+keUSDd3e0T7dn3+++/rxo1aqQ7JvW9tWvXTg0aNNDixYu1atUqvf/++xozZowWLVqkFi1aZHmf7dq105YtW9SvXz/VqFFDBQsWVEpKipo3b27zPZ2V/Y0bN04vvfSSvvvuO61atUo9e/bUqFGjtG3bNpUqVUopKSmyWCxavny5XF1dM3xvqX7++Wf16tVLL7/8srp27Zrl95QVKSkpCg0N1fjx49Ndf/v5+Om9tmnTpjp//rzefvttVa5cWQUKFNDp06fVrl07u34XZHRefHoX5szq1wwA/mko9gAAK3d3d7Vq1UqtWrVSSkqKXn/9dX388ccaPHiwypcvn+E/sDds2KDz589r0aJFatiwoXV5VFSUzbjg4GBJt2YEUw/rlaQbN24oKipK1atXtxm7b98+paSk2Mzapx7Wn7qtrOROT3BwsNauXavLly/blKYjR46km/nvy1OzFCtW7I6z9Rm5efOmJOny5ct3HPv9998rMTFRS5YsUenSpa3LMzosum7duqpbt65GjhypuXPnqn379vr666/18ssv25VVknVmN1++fDZHH2RVcHCw1qxZo0uXLtnM2qf3Nf27cuXKSZK8vb2ztO8SJUro9ddf1+uvv65z586pZs2aGjlypFq0aGHd1q+//prhti5evKi1a9dq+PDhGjJkiHV56pEDd7O/VKGhoQoNDdWgQYO0ZcsW1atXT9OnT9eIESNUrlw5GWMUEhKi++67L9P39ueff+o///mPatSooSlTptzxcyHd3c9euXLltHfvXj322GN3fbG5/fv36+DBg/rqq6/Uvn176/K/H8WTmue3335Ls42/LytcuLAkpbljxd+P8LjbrxkA/JNwjj0AQJLS3A7KxcVF1apVkyTrLa5SC+zf/4GdOsNobrtlWVJSkqZOnWozrnbt2ipevLimT5+upKQk6/LZs2en2WbLli0VExOjefPmWZfdvHlTH330kQoWLKhHHnkky7nT07JlS928edPmdnHJycn66KOPbMaVKFFCNWrU0Oeff26T8ddff9WqVavUsmXLDPdxJ99//70k2ZSqjKT3OY6Pj9esWbNsxl28eDHNreNSZ7izcquyzPj5+alRo0b6+OOPdfbs2TTr//zzz0xf37JlSyUnJ2vy5Mk2yydMmCCLxZLpbHqtWrVUrlw5ffDBB+n+ISR138nJyWkOufbz81NgYKD1/desWVMhISGaOHFimu+71M9dep9vSZo4caLN86zsLyEhwfpHnFShoaFycXGxjmnTpo1cXV01fPjwNPs0xli/z5OTk/Xss88qKSlJCxcutDlfPjN387PXrl07/fHHH/rkk0/SbOfatWu6cuVKhvtJ/UPA7dd3SElJSXPHg8DAQFWtWlVffPGFzddz48aN2r9/v83Y4OBgubq6atOmTTbL//77JatfMwD4J2LGHgD+JZYvX26dGb3dww8/rLJly+rll1/WhQsX1LhxY5UqVUqnTp3SRx99pBo1aljPga5Ro4ZcXV01ZswYxcfHy8PDQ40bN9bDDz+swoULq2PHjurZs6csFou+/PLLNP/Azpcvn0aMGKFXX31VjRs31jPPPKOoqCjNmjUrzXm+Xbt21ccff6yXXnpJO3fuVJkyZfTNN99o8+bNmjhxonXGNyu509OqVSvVq1dPAwYM0MmTJ1W5cmUtWrQo3fNw33//fbVo0UJhYWHq0qWL9XZ3Pj4+Wb4X/K5du/TVV19JunVxwbVr12rhwoV6+OGH1axZszu+vlmzZtYjE1599VVdvnxZn3zyifz8/GxK9ueff66pU6fqqaeeUrly5XTp0iV98skn8vb2vqc/QqSaMmWK6tevr9DQUL3yyisqW7asYmNjtXXrVv3+++/au3dvhq9t1aqVHn30Ub399ts6efKkqlevrlWrVum7775T7969rTPp6XFxcdGnn36qFi1aqEqVKurUqZNKliypP/74Q+vXr5e3t7e+//57Xbp0SaVKldJ//vMfVa9eXQULFtSaNWu0Y8cOjRs3zrqtadOmqVWrVqpRo4Y6deqkEiVK6PDhwzpw4IBWrlwpb29vNWzYUGPHjtWNGzdUsmRJrVq1Ks1RKFnZ37p169S9e3c9/fTTuu+++3Tz5k19+eWXcnV1Vdu2bSXdmiUfMWKEBg4cqJMnT6p169YqVKiQoqKitHjxYnXt2lVvvvmmpk+frnXr1qlbt25pjtbw9/dX06ZN0/383c3P3osvvqj58+db91GvXj0lJyfr8OHDmj9/vlauXJnh9ToqVaqksmXL6s0339SZM2dUqFAhLVy4MM2MvSS99957evLJJ1WvXj116tRJFy9e1OTJk1W1alWbsu/j46Onn35aH330kSwWi8qVK6elS5emOYc+q18zAPhHyo1L8QMAck5mt7vTbbeK+uabb0yzZs2Mn5+fcXd3N6VLlzavvvpqmltoffLJJ6Zs2bLG1dXV5hZUmzdvNnXr1jVeXl4mMDDQ9O/f36xcuTLd21RNnTrVhISEGA8PD1O7dm2zadMm88gjj9jccssYY2JjY02nTp1MsWLFjLu7uwkNDbW5tdXd5E7P+fPnzYsvvmi8vb2Nj4+PefHFF623Jvv7ftasWWPq1atnvLy8jLe3t2nVqpU5ePDgHfeR3u3u3NzcTNmyZU2/fv1sbvVlzK3b3UVERKS7rSVLlphq1aoZT09PU6ZMGTNmzBjz2Wef2dymbteuXea5554zpUuXNh4eHsbPz888/vjj5pdffrHZluy83Z0xxhw/ftx06NDBBAQEmHz58pmSJUuaxx9/3HzzzTd3fO2lS5dMnz59TGBgoMmXL5+pUKGCef/999Pc9i8ju3fvNm3atDFFixY1Hh4eJjg42LRr186sXbvWGGNMYmKi6devn6levbopVKiQKVCggKlevbqZOnVqmm399NNPpmnTptZx1apVMx999JF1/e+//26eeuop4+vra3x8fMzTTz9tzpw5Y/O5y8r+Tpw4YTp37mzKlStnPD09TZEiRcyjjz5q1qxZkybTwoULTf369U2BAgVMgQIFTMWKFU1kZKQ5cuSIMcaYoUOHZviz/Pefn/Rk9WcvKSnJjBkzxlSpUsV4eHiYwoULm1q1apnhw4eb+Pj4TPfx66+/msaNG5uCBQua4sWLm27dupn9+/en+3P19ddfm4oVKxoPDw9TtWpVs2TJEtO2bVtTsWJFm3F//vmnadu2rcmfP78pXLiwefXVV82vv/6aZptZ+ZoBwD+RxZi/TacAAAAAuaRGjRoqXry43bfeBIB/I86xBwAAQI67ceNGmmsPbNiwQXv37lWjRo1yJxQAOClm7AEAAJDjTp48qSZNmuiFF15QYGCgDh8+rOnTp8vHx0e//vqrihYtmtsRAcBpcPE8AAAA5LjChQurVq1a+vTTT/Xnn3+qQIECioiI0OjRoyn1AHCXmLEHAAAAAMCJ5eo59snJyRo8eLBCQkLk5eWlcuXK6d1337W5PZIxRkOGDFGJEiXk5eWlJk2a6NixYzbbuXDhgtq3by9vb2/5+vqqS5cuae5xu2/fPjVo0ECenp4KCgrS2LFjc+Q9AgAAAACQnXK12I8ZM0bTpk3T5MmTdejQIY0ZM0Zjx47VRx99ZB0zduxYTZo0SdOnT9f27dtVoEABhYeH6/r169Yx7du314EDB7R69WotXbpUmzZtUteuXa3rExIS1KxZMwUHB2vnzp16//33NWzYMM2YMSNH3y8AAAAAAI6Wq4fiP/744/L399fMmTOty9q2bSsvLy999dVXMsYoMDBQb7zxht58801JUnx8vPz9/TV79mw9++yzOnTokCpXrqwdO3aodu3akqQVK1aoZcuW+v333xUYGKhp06bp7bffVkxMjNzd3SVJAwYM0LfffqvDhw9nKWtKSorOnDmjQoUKyWKxOPgzAQAAAACALWOMLl26pMDAQLm4ZDIvf7c3vnekkSNHmuDgYHPkyBFjjDF79uwxfn5+5quvvjLGGHP8+HEjyezevdvmdQ0bNjQ9e/Y0xhgzc+ZM4+vra7P+xo0bxtXV1SxatMgYY8yLL75onnzySZsx69atM5LMhQsX0s12/fp1Ex8fb30cPHjQSOLBgwcPHjx48ODBgwcPHjxy9HH69OlMu3WuXhV/wIABSkhIUMWKFeXq6qrk5GSNHDlS7du3lyTFxMRIkvz9/W1e5+/vb10XExMjPz8/m/Vubm4qUqSIzZiQkJA020hdV7hw4TTZRo0apeHDh6dZfvr0aXl7e9vzdgEAAAAAyLKEhAQFBQWpUKFCmY7L1WI/f/58zZkzR3PnzlWVKlW0Z88e9e7dW4GBgerYsWNuRtPAgQPVt29f6/PUT6i3tzfFHgAAAACQY+50OniuFvt+/fppwIABevbZZyVJoaGhOnXqlEaNGqWOHTsqICBAkhQbG6sSJUpYXxcbG6saNWpIkgICAnTu3Dmb7d68eVMXLlywvj4gIECxsbE2Y1Kfp475Ow8PD3l4eNz7mwQAAAAAIBvl6lXxr169muYCAK6urkpJSZEkhYSEKCAgQGvXrrWuT0hI0Pbt2xUWFiZJCgsLU1xcnHbu3Gkds27dOqWkpOihhx6yjtm0aZNu3LhhHbN69Wrdf//96R6GDwAAAACAs8jVYt+qVSuNHDlSy5Yt08mTJ7V48WKNHz9eTz31lKRbhxv07t1bI0aM0JIlS7R//3516NBBgYGBat26tSSpUqVKat68uV555RX9/PPP2rx5s7p3765nn31WgYGBkqTnn39e7u7u6tKliw4cOKB58+bpww8/tDnUHgAAAAAAZ5Srt7u7dOmSBg8erMWLF+vcuXMKDAzUc889pyFDhlhvS2eM0dChQzVjxgzFxcWpfv36mjp1qu677z7rdi5cuKDu3bvr+++/l4uLi9q2batJkyapYMGC1jH79u1TZGSkduzYoWLFiqlHjx566623spw1ISFBPj4+io+P5xx7AAAAAEC2y2oPzdVi70wo9gAAAACAnJTVHpqrh+IDAAAAAIB7Q7EHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAibnldgAAAAAAALKqzIBl97yNk6MjHJAk72DGHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiuVrsy5QpI4vFkuYRGRkpSbp+/boiIyNVtGhRFSxYUG3btlVsbKzNNqKjoxUREaH8+fPLz89P/fr1082bN23GbNiwQTVr1pSHh4fKly+v2bNn59RbBAAAAAAgW+Vqsd+xY4fOnj1rfaxevVqS9PTTT0uS+vTpo++//14LFizQxo0bdebMGbVp08b6+uTkZEVERCgpKUlbtmzR559/rtmzZ2vIkCHWMVFRUYqIiNCjjz6qPXv2qHfv3nr55Ze1cuXKnH2zAAAAAABkA4sxxuR2iFS9e/fW0qVLdezYMSUkJKh48eKaO3eu/vOf/0iSDh8+rEqVKmnr1q2qW7euli9frscff1xnzpyRv7+/JGn69Ol666239Oeff8rd3V1vvfWWli1bpl9//dW6n2effVZxcXFasWJFlrMlJCTIx8dH8fHx8vb2duwbBwAAAABkSZkBy+55GydHRzggSfbLag/NM+fYJyUl6auvvlLnzp1lsVi0c+dO3bhxQ02aNLGOqVixokqXLq2tW7dKkrZu3arQ0FBrqZek8PBwJSQk6MCBA9Yxt28jdUzqNjKSmJiohIQEmwcAAAAAAHlNnin23377reLi4vTSSy9JkmJiYuTu7i5fX1+bcf7+/oqJibGOub3Up65PXZfZmISEBF27di3DPKNGjZKPj4/1ERQUdC9vDwAAAACAbJFniv3MmTPVokULBQYG5nYUSdLAgQMVHx9vfZw+fTq3IwEAAAAAkIZbbgeQpFOnTmnNmjVatGiRdVlAQICSkpIUFxdnM2sfGxurgIAA65iff/7ZZlupV82/fczfr6QfGxsrb29veXl5ZZjJw8NDHh4e9/S+AAAAAADIbnlixn7WrFny8/NTRMT/X8CgVq1aypcvn9auXWtdduTIEUVHRyssLEySFBYWpv379+vcuXPWMatXr5a3t7cqV65sHXP7NlLHpG4DAAAAAABnluvFPiUlRbNmzVLHjh3l5vb/BxD4+PioS5cu6tu3r9avX6+dO3eqU6dOCgsLU926dSVJzZo1U+XKlfXiiy9q7969WrlypQYNGqTIyEjrbHu3bt104sQJ9e/fX4cPH9bUqVM1f/589enTJ1feLwAAAAAAjpTrh+KvWbNG0dHR6ty5c5p1EyZMkIuLi9q2bavExESFh4dr6tSp1vWurq5aunSpXnvtNYWFhalAgQLq2LGj3nnnHeuYkJAQLVu2TH369NGHH36oUqVK6dNPP1V4eHiOvD8AAAAAALJTnrqPfV7GfewBAAAAIPdxH/u0cv1QfAAAAAAAYD+KPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAATswttwMAAAD7lBmw7J63cXJ0hAOSAACA3MSMPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxHK92P/xxx964YUXVLRoUXl5eSk0NFS//PKLdb0xRkOGDFGJEiXk5eWlJk2a6NixYzbbuHDhgtq3by9vb2/5+vqqS5cuunz5ss2Yffv2qUGDBvL09FRQUJDGjh2bI+8PAAAAAIDslKvF/uLFi6pXr57y5cun5cuX6+DBgxo3bpwKFy5sHTN27FhNmjRJ06dP1/bt21WgQAGFh4fr+vXr1jHt27fXgQMHtHr1ai1dulSbNm1S165dresTEhLUrFkzBQcHa+fOnXr//fc1bNgwzZgxI0ffLwAAAAAAjuaWmzsfM2aMgoKCNGvWLOuykJAQ68fGGE2cOFGDBg3Sk08+KUn64osv5O/vr2+//VbPPvusDh06pBUrVmjHjh2qXbu2JOmjjz5Sy5Yt9cEHHygwMFBz5sxRUlKSPvvsM7m7u6tKlSras2ePxo8fb/MHAAAAAAAAnE2uztgvWbJEtWvX1tNPPy0/Pz898MAD+uSTT6zro6KiFBMToyZNmliX+fj46KGHHtLWrVslSVu3bpWvr6+11EtSkyZN5OLiou3bt1vHNGzYUO7u7tYx4eHhOnLkiC5evJhutsTERCUkJNg8AAAAAADIa3K12J84cULTpk1ThQoVtHLlSr322mvq2bOnPv/8c0lSTEyMJMnf39/mdf7+/tZ1MTEx8vPzs1nv5uamIkWK2IxJbxu37+PvRo0aJR8fH+sjKCjoHt8tAAAAAACOl6vFPiUlRTVr1tR7772nBx54QF27dtUrr7yi6dOn52YsSdLAgQMVHx9vfZw+fTq3IwEAAAAAkEauFvsSJUqocuXKNssqVaqk6OhoSVJAQIAkKTY21mZMbGysdV1AQIDOnTtns/7mzZu6cOGCzZj0tnH7Pv7Ow8ND3t7eNg8AAAAAAPKaXC329erV05EjR2yWHT16VMHBwZJuXUgvICBAa9euta5PSEjQ9u3bFRYWJkkKCwtTXFycdu7caR2zbt06paSk6KGHHrKO2bRpk27cuGEds3r1at1///02V+AHAAAAAMDZ5Gqx79Onj7Zt26b33ntPv/32m+bOnasZM2YoMjJSkmSxWNS7d2+NGDFCS5Ys0f79+9WhQwcFBgaqdevWkm7N8Ddv3lyvvPKKfv75Z23evFndu3fXs88+q8DAQEnS888/L3d3d3Xp0kUHDhzQvHnz9OGHH6pv37659dYBAAAAAHCIXL3d3YMPPqjFixdr4MCBeueddxQSEqKJEyeqffv21jH9+/fXlStX1LVrV8XFxal+/fpasWKFPD09rWPmzJmj7t2767HHHpOLi4vatm2rSZMmWdf7+Pho1apVioyMVK1atVSsWDENGTKEW90BAAAAAJyexRhjcjuEM0hISJCPj4/i4+M53x4AkCeUGbDsnrdxcnSEA5IAAJBz/k3//8tqD73nGfvr168rKSnJZhnFFwAAAACAnGHXOfZXr15V9+7d5efnpwIFCqhw4cI2DwAAAAAAkDPsKvb9+vXTunXrNG3aNHl4eOjTTz/V8OHDFRgYqC+++MLRGQEAAAAAQAbsOhT/+++/1xdffKFGjRqpU6dOatCggcqXL6/g4GDNmTPH5uJ3AAAAAAAg+9g1Y3/hwgWVLVtW0q3z6S9cuCBJql+/vjZt2uS4dAAAAAAAIFN2FfuyZcsqKipKklSxYkXNnz9f0q2ZfF9fX4eFAwAAAAAAmbOr2Hfq1El79+6VJA0YMEBTpkyRp6en+vTpo379+jk0IAAAAAAAyJhd59j36dPH+nGTJk10+PBh7dy5U+XLl1e1atUcFg4AAAAAAGTunu9jL0nBwcEKDg52xKYAAAAAAMBdsKvYv/POO5muHzJkiF1hAAAAAADA3bGr2C9evNjm+Y0bNxQVFSU3NzeVK1eOYg8AAAAAQA6xq9jv3r07zbKEhAS99NJLeuqpp+45FAAAAAAAyBq7roqfHm9vbw0fPlyDBw921CYBAAAAAMAdOKzYS1J8fLzi4+MduUkAAAAAAJAJuw7FnzRpks1zY4zOnj2rL7/8Ui1atHBIMAAAAAAAcGd2FfsJEybYPHdxcVHx4sXVsWNHDRw40CHBAGS/MgOW3fM2To6OcEASAAAAAPayq9hHRUU5OgcAAAAAALCDQ8+xBwAAAAAAOcuuGfunnnpKFoslzXKLxSJPT0+VL19ezz//vO6///57DggAAAAAADJm14y9j4+P1q1bp127dslischisWj37t1at26dbt68qXnz5ql69eravHmzo/MCAAAAAIDb2DVjHxAQoOeff16TJ0+Wi8utvw2kpKSoV69eKlSokL7++mt169ZNb731ln766SeHBgYAAAAAAP/Prhn7mTNnqnfv3tZSL926Mn6PHj00Y8YMWSwWde/eXb/++qvDggIAAAAAgLTsKvY3b97U4cOH0yw/fPiwkpOTJUmenp7pnocPAAAAAAAcx65D8V988UV16dJF//3vf/Xggw9Kknbs2KH33ntPHTp0kCRt3LhRVapUcVxSAAAAAACQhl3FfsKECfL399fYsWMVGxsrSfL391efPn301ltvSZKaNWum5s2bOy4pAAAAAABIw65i7+rqqrfffltvv/22EhISJEne3t42Y0qXLn3v6QAAAAAAQKbsKva3+3uhBwAAAAAAOcfuYv/NN99o/vz5io6OVlJSks26Xbt23XMwAAAAAABwZ1m6Kv6SJUt07tw56/NJkyapc+fOCggI0I4dO9SsWTMVLFhQUVFRatmyZbaFBQAAAAAAtrJU7K9fv6769evr6NGjkqSpU6fq008/1aRJk2SM0ejRo7Vp0yZ169ZNcXFx2ZkXAAAAAADcJkvFvl27dpoxY4b+85//SJKio6NVt25dSbfuV3/58mVJUufOnfW///0vm6ICAAAAAIC/y1Kxl6RGjRpp/fr1kqSAgACdP39ekhQcHKwtW7ZIko4fP54NEQEAAAAAQEayXOwlqWjRopKkxo0ba8mSJZKkLl266JlnnlF4eLieeeYZtWnTxvEpAQAAAABAuuy6Kv6MGTOUkpIiSXrzzTdVokQJbdu2Ta1atdKrr77q0IAAAAAAACBjdhV7FxcXubj8/2R/+/bt1b59e4eFAgAAAAAAWXNXh+IDAAAAAIC8hWIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxu4v9zZs3tWbNGn388ce6dOmSJOnMmTO6fPmyw8IBAAAAAIDM2XVV/FOnTql58+aKjo5WYmKimjZtqkKFCmnMmDFKTEzU9OnTHZ0TAAAAAACkw64Z+169eql27dq6ePGivLy8rMufeuoprV271mHhAAAAAABA5uyasf/xxx+1ZcsWubu72ywvU6aM/vjjD4cEAwAAAAAAd2bXjH1KSoqSk5PTLP/9999VqFChew4FAAAAAACyxq5i36xZM02cONH63GKx6PLlyxo6dKhatmzpqGwAAAAAAOAO7DoUf9y4cQoPD1flypV1/fp1Pf/88zp27JiKFSum//3vf47OCAAAAAAAMmBXsS9VqpT27t2rr7/+Wvv27dPly5fVpUsXtW/f3uZiegAAAAAAIHvZVewlyc3NTS+88IIjswAAAAAAgLuU5WK/ZMmSLG/0iSeesCsMAAAAAAC4O1ku9q1bt7Z5brFYZIxJs0xSulfMBwAAAAAAjpflq+KnpKRYH6tWrVKNGjW0fPlyxcXFKS4uTsuXL1fNmjW1YsWK7MwLAAAAAABuY9c59r1799b06dNVv35967Lw8HDlz59fXbt21aFDhxwWEAAAAAAAZMyu+9gfP35cvr6+aZb7+Pjo5MmT9xgJAAAAAABklV3F/sEHH1Tfvn0VGxtrXRYbG6t+/fqpTp06DgsHAAAAAAAyZ1ex/+yzz3T27FmVLl1a5cuXV/ny5VW6dGn98ccfmjlzpqMzAgAAAACADNh1jn358uW1b98+rV69WocPH5YkVapUSU2aNLFeGR8AAAAAAGQ/u4q9dOvWds2aNVOzZs0cmQcAAAAAANwFuw7FBwAAAAAAeQPFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYnYV+8aNG2v48OFpll+8eFGNGze+51AAAAAAACBr7Loq/oYNG7R//37t3r1bc+bMUYECBSRJSUlJ2rhxo0MDAgAAAACAjNl9KP6aNWsUExOjunXr6uTJkw6MBAAAAAAAssruYl+iRAlt3LhRoaGhevDBB7VhwwYHxgIAAAAAAFlhV7G3WCySJA8PD82dO1e9evVS8+bNNXXqVIeGAwAAAAAAmbOr2BtjbJ4PGjRIc+bM0bhx4+5qO8OGDZPFYrF5VKxY0br++vXrioyMVNGiRVWwYEG1bdtWsbGxNtuIjo5WRESE8ufPLz8/P/Xr1083b960GbNhwwbVrFlTHh4eKl++vGbPnn13bxgAAAAAgDzKrovnRUVFqVixYjbL2rZtq/vvv187d+68q21VqVJFa9as+f9Abv8fqU+fPlq2bJkWLFggHx8fde/eXW3atNHmzZslScnJyYqIiFBAQIC2bNmis2fPqkOHDsqXL5/ee+89a9aIiAh169ZNc+bM0dq1a/Xyyy+rRIkSCg8Pt+ftAwAAAACQZ9hV7IODgyVJv/32m44fP66GDRvKy8tLVapUUdWqVe8ugJubAgIC0iyPj4/XzJkzNXfuXOst9GbNmqVKlSpp27Ztqlu3rlatWqWDBw9qzZo18vf3V40aNfTuu+/qrbfe0rBhw+Tu7q7p06crJCTEejRBpUqV9NNPP2nChAkUewAAAACA07PrUPzz58+rSZMmuu+++9SyZUudPXtWktSlSxe9+eabd7WtY8eOKTAwUGXLllX79u0VHR0tSdq5c6du3LihJk2aWMdWrFhRpUuX1tatWyVJW7duVWhoqPz9/a1jwsPDlZCQoAMHDljH3L6N1DGp28hIYmKiEhISbB4AAAAAAOQ1dhX7Pn36yM3NTdHR0cqfP791+TPPPKPly5dneTsPPfSQZs+erRUrVmjatGmKiopSgwYNdOnSJcXExMjd3V2+vr42r/H391dMTIwkKSYmxqbUp65PXZfZmISEBF27di3DbKNGjZKPj4/1ERQUlOX3BQAAAABATrHrUPxVq1Zp5cqVKlWqlM3yChUq6NSpU1neTosWLawfV6tWTQ899JCCg4M1f/58eXl52RPNYQYOHKi+fftanyckJFDuAQAAAAB5jl0z9leuXLGZqU914cIFeXh42B3G19dX9913n3777TcFBAQoKSlJcXFxNmNiY2Ot5+QHBASkuUp+6vM7jfH29s70jwceHh7y9va2eQAAAAAAkNfYVewbNGigL774wvrcYrEoJSVFY8eO1aOPPmp3mMuXL+v48eMqUaKEatWqpXz58mnt2rXW9UeOHFF0dLTCwsIkSWFhYdq/f7/OnTtnHbN69Wp5e3urcuXK1jG3byN1TOo2AAAAAABwZnYdij927Fg99thj+uWXX5SUlKT+/fvrwIEDunDhgvVWdFnx5ptvqlWrVgoODtaZM2c0dOhQubq66rnnnpOPj4+6dOmivn37qkiRIvL29laPHj0UFhamunXrSpKaNWumypUr68UXX9TYsWMVExOjQYMGKTIy0nrkQLdu3TR58mT1799fnTt31rp16zR//nwtW7bMnrcOAAAAAECeYlexr1q1qo4eParJkyerUKFCunz5stq0aaPIyEiVKFEiy9v5/fff9dxzz+n8+fMqXry46tevr23btql48eKSpAkTJsjFxUVt27ZVYmKiwsPDNXXqVOvrXV1dtXTpUr322msKCwtTgQIF1LFjR73zzjvWMSEhIVq2bJn69OmjDz/8UKVKldKnn37Kre4AAAAAAP8IFmOMye0QziAhIUE+Pj6Kj4/nfHv8Y5QZcO9HrpwcHeGAJADswc8wAODf6N/0/7+s9lC7zrFfsWKFfvrpJ+vzKVOmqEaNGnr++ed18eJFezYJAAAAAADsYFex79evnxISEiRJ+/fvV9++fdWyZUtFRUXZ3CIOAAAAAABkL7vOsY+KirJedX7hwoVq1aqV3nvvPe3atUstW7Z0aEAAAAAAAJAxu2bs3d3ddfXqVUnSmjVr1KxZM0lSkSJFrDP5AAAAAAAg+9k1Y1+/fn317dtX9erV088//6x58+ZJko4ePapSpUo5NCAAAAAAAMiYXTP2kydPlpubm7755htNmzZNJUuWlCQtX75czZs3d2hAAAAAAACQMbtm7EuXLq2lS5emWT5hwoR7DgQAAAAAALLOrhn7Xbt2af/+/dbn3333nVq3bq3//ve/SkpKclg4AAAAAACQObuK/auvvqqjR49Kkk6cOKFnn31W+fPn14IFC9S/f3+HBgQAAAAAABmzq9gfPXpUNWrUkCQtWLBADRs21Ny5czV79mwtXLjQkfkAAAAAAEAm7Cr2xhilpKRIunW7u9R71wcFBemvv/5yXDoAAAAAAJApu4p97dq1NWLECH355ZfauHGjIiIiJElRUVHy9/d3aEAAAAAAAJAxu4r9xIkTtWvXLnXv3l1vv/22ypcvL0n65ptv9PDDDzs0IAAAAAAAyJhdt7urVq2azVXxU73//vtydXW951AAAAAAACBr7Cr2GfH09HTk5gAAAAAAwB3YVeyTk5M1YcIEzZ8/X9HR0WnuXX/hwgWHhAMAAAAAAJmz6xz74cOHa/z48XrmmWcUHx+vvn37qk2bNnJxcdGwYcMcHBEAAAAAAGTErmI/Z84cffLJJ3rjjTfk5uam5557Tp9++qmGDBmibdu2OTojAAAAAADIgF3FPiYmRqGhoZKkggULKj4+XpL0+OOPa9myZY5LBwAAAAAAMmVXsS9VqpTOnj0rSSpXrpxWrVolSdqxY4c8PDwclw4AAAAAAGTKrmL/1FNPae3atZKkHj16aPDgwapQoYI6dOigzp07OzQgAAAAAADImF1XxR89erT142eeeUbBwcHasmWLKlSooFatWjksHAAAAAAAyJxD7mNft25d1a1b1xGbAgAAAAAAd8GuQ/FHjRqlzz77LM3yzz77TGPGjLnnUAAAAAAAIGvsKvYff/yxKlasmGZ5lSpVNH369HsOBQAAAAAAssbu292VKFEizfLixYtbr5YPAAAAAACyn13FPigoSJs3b06zfPPmzQoMDLznUAAAAAAAIGvsunjeK6+8ot69e+vGjRtq3LixJGnt2rXq37+/3njjDYcGBAAAAAAAGbOr2Pfr10/nz5/X66+/rqSkJEmSp6en3nrrLQ0cONChAQEAAAAAQMbsKvYWi0VjxozR4MGDdejQIXl5ealChQry8PBwdD4AAAAAAJAJu86xT1WwYEE9+OCDKl26tJYvX65Dhw45KhcAAAAAAMgCu4p9u3btNHnyZEnStWvXVLt2bbVr107VqlXTwoULHRoQAAAAAABkzK5iv2nTJjVo0ECStHjxYhljFBcXp0mTJmnEiBEODQgAAAAAADJmV7GPj49XkSJFJEkrVqxQ27ZtlT9/fkVEROjYsWMODQgAAAAAADJm933st27dqitXrmjFihVq1qyZJOnixYvy9PR0aEAAAAAAAJAxu66K37t3b7Vv314FCxZU6dKl1ahRI0m3DtEPDQ11ZD4AAAAAAJAJu4r966+/rjp16uj06dNq2rSpXFxuTfyXLVuWc+wBAAAAAMhBdhV7Sapdu7aqVaumqKgolStXTm5uboqIiHBkNgAAAAAAcAd2nWN/9epVdenSRfnz51eVKlUUHR0tSerRo4dGjx7t0IAAAAAAACBjdhX7gQMHau/evdqwYYPNxfKaNGmiefPmOSwcAAAAAADInF2H4n/77beaN2+e6tatK4vFYl1epUoVHT9+3GHhAAAAAABA5uyasf/zzz/l5+eXZvmVK1dsij4AAAAAAMhedhX72rVra9myZdbnqWX+008/VVhYmGOSAQAAAACAO7LrUPz33ntPLVq00MGDB3Xz5k19+OGHOnjwoLZs2aKNGzc6OiMAAAAAAMiAXTP29evX1549e3Tz5k2FhoZq1apV8vPz09atW1WrVi1HZwQAAAAAABmw+z725cqV0yeffOLILAAAAAAA4C7ZNWMPAAAAAADyBoo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODE7qnY//bbb1q5cqWuXbsmSTLGOCQUAAAAAADIGruK/fnz59WkSRPdd999atmypc6ePStJ6tKli9544w2HBgQAAAAAABmzq9j36dNHbm5uio6OVv78+a3Ln3nmGa1YscJh4QAAAAAAQObsuo/9qlWrtHLlSpUqVcpmeYUKFXTq1CmHBAP+qcoMWOaQ7ZwcHeGQ7QAAAABwbnbN2F+5csVmpj7VhQsX5OHhcc+hAAAAAABA1thV7Bs0aKAvvvjC+txisSglJUVjx47Vo48+6rBwAAAAAAAgc3Ydij927Fg99thj+uWXX5SUlKT+/fvrwIEDunDhgjZv3uzojAAAAAAAIAN2zdhXrVpVR48eVf369fXkk0/qypUratOmjXbv3q1y5co5OiMAAAAAAMiAXTP2kuTj46O3337bkVkAAAAAAMBdynKx37dvX5Y3Wq1aNbvCAAAAAACAu5PlYl+jRg1ZLBYZY2SxWKzLjTGSZLMsOTnZgREBAAAAAEBGsnyOfVRUlE6cOKGoqCgtXLhQISEhmjp1qvbs2aM9e/Zo6tSpKleunBYuXJideQEAAAAAwG2yPGMfHBxs/fjpp5/WpEmT1LJlS+uyatWqKSgoSIMHD1br1q0dGhIAAAAAAKTPrqvi79+/XyEhIWmWh4SE6ODBg/ccCgAAAAAAZI1dxb5SpUoaNWqUkpKSrMuSkpI0atQoVapUyWHhAAAAAABA5uy63d306dPVqlUrlSpVynoF/H379slisej77793aEAAAAAAAJAxu2bs69SpoxMnTmjEiBGqVq2aqlWrppEjR+rEiROqU6eO3WFGjx4ti8Wi3r17W5ddv35dkZGRKlq0qAoWLKi2bdsqNjbW5nXR0dGKiIhQ/vz55efnp379+unmzZs2YzZs2KCaNWvKw8ND5cuX1+zZs+3OCQAAAABAXmHXjL0kFShQQF27dnVYkB07dujjjz+2HgGQqk+fPlq2bJkWLFggHx8fde/eXW3atNHmzZsl3bq1XkREhAICArRlyxadPXtWHTp0UL58+fTee+9JunVF/4iICHXr1k1z5szR2rVr9fLLL6tEiRIKDw932HsAAAAAACCn2TVj72iXL19W+/bt9cknn6hw4cLW5fHx8Zo5c6bGjx+vxo0bq1atWpo1a5a2bNmibdu2SZJWrVqlgwcP6quvvlKNGjXUokULvfvuu5oyZYr1GgDTp09XSEiIxo0bp0qVKql79+76z3/+owkTJuTK+wUAAAAAwFHyRLGPjIxURESEmjRpYrN8586dunHjhs3yihUrqnTp0tq6daskaevWrQoNDZW/v791THh4uBISEnTgwAHrmL9vOzw83LqN9CQmJiohIcHmAQAAAABAXmP3ofiO8vXXX2vXrl3asWNHmnUxMTFyd3eXr6+vzXJ/f3/FxMRYx9xe6lPXp67LbExCQoKuXbsmLy+vNPseNWqUhg8fbvf7AgAAAAAgJ+TqjP3p06fVq1cvzZkzR56enrkZJY2BAwcqPj7e+jh9+nRuRwIAAAAAII1cLfY7d+7UuXPnVLNmTbm5ucnNzU0bN27UpEmT5ObmJn9/fyUlJSkuLs7mdbGxsQoICJAkBQQEpLlKfurzO43x9vZOd7Zekjw8POTt7W3zAAAAAAAgr7Gr2CcnJ+uDDz5QnTp1FBAQoCJFitg8suqxxx7T/v37tWfPHuujdu3aat++vfXjfPnyae3atdbXHDlyRNHR0QoLC5MkhYWFaf/+/Tp37px1zOrVq+Xt7a3KlStbx9y+jdQxqdsAAAAAAMBZ2VXshw8frvHjx+uZZ55RfHy8+vbtqzZt2sjFxUXDhg3L8nYKFSqkqlWr2jwKFCigokWLqmrVqvLx8VGXLl3Ut29frV+/Xjt37lSnTp0UFhamunXrSpKaNWumypUr68UXX9TevXu1cuVKDRo0SJGRkfLw8JAkdevWTSdOnFD//v11+PBhTZ06VfPnz1efPn3sefsAAAAAAOQZdhX7OXPm6JNPPtEbb7whNzc3Pffcc/r00081ZMgQ623oHGXChAl6/PHH1bZtWzVs2FABAQFatGiRdb2rq6uWLl0qV1dXhYWF6YUXXlCHDh30zjvvWMeEhIRo2bJlWr16tapXr65x48bp008/5R72AAAAAACnZ9dV8WNiYhQaGipJKliwoOLj4yVJjz/+uAYPHnxPgTZs2GDz3NPTU1OmTNGUKVMyfE1wcLB++OGHTLfbqFEj7d69+56yAQAAAACQ19g1Y1+qVCmdPXtWklSuXDmtWrVKkrRjxw7r4e8AAAAAACD72VXsn3rqKevF6Hr06KHBgwerQoUK6tChgzp37uzQgAAAAAAAIGN2HYo/evRo68fPPPOMSpcura1bt6pChQpq1aqVw8IBAAAAAIDM2VXs/y4sLIxbxwEAAAAAkAuyXOyXLFmS5Y0+8cQTdoUBAAAAAAB3J8vFvnXr1jbPLRaLjDFplklScnLyvScDAAAAAAB3lOWL56WkpFgfq1atUo0aNbR8+XLFxcUpLi5Oy5cvV82aNbVixYrszAsAAAAAAG5j1zn2vXv31vTp01W/fn3rsvDwcOXPn19du3bVoUOHHBYQAAAAAABkzK7b3R0/fly+vr5plvv4+OjkyZP3GAkAAAAAAGSVXcX+wQcfVN++fRUbG2tdFhsbq379+qlOnToOCwcAAAAAADJnV7H/7LPPdPbsWZUuXVrly5dX+fLlVbp0af3xxx+aOXOmozMCAAAAAIAM2HWOffny5bVv3z6tXr1ahw8fliRVqlRJTZo0sV4ZHwAAAAAAZD+7ir1069Z2zZo1U7NmzRyZBwAAAAAA3AW7i/2VK1e0ceNGRUdHKykpyWZdz5497zkYAAAAAAC4M7uK/e7du9WyZUtdvXpVV65cUZEiRfTXX38pf/788vPzo9gDAAAAAJBD7Lp4Xp8+fdSqVStdvHhRXl5e2rZtm06dOqVatWrpgw8+cHRGAAAAAACQAbuK/Z49e/TGG2/IxcVFrq6uSkxMVFBQkMaOHav//ve/js4IAAAAAAAyYFexz5cvn1xcbr3Uz89P0dHRkiQfHx+dPn3acekAAAAAAECm7DrH/oEHHtCOHTtUoUIFPfLIIxoyZIj++usvffnll6pataqjMwIAAAAAgAzYNWP/3nvvqUSJEpKkkSNHqnDhwnrttdf0559/6uOPP3ZoQAAAAAAAkDG7Zuxr165t/djPz08rVqxwWCAAAAAAAJB1ds3YN27cWHFxcWmWJyQkqHHjxveaCQAAAAAAZJFdxX7Dhg1KSkpKs/z69ev68ccf7zkUAAAAAADImrs6FH/fvn3Wjw8ePKiYmBjr8+TkZK1YsUIlS5Z0XDoAAAAAAJCpuyr2NWrUkMVikcViSfeQey8vL3300UcOCwcAAAAAADJ3V8U+KipKxhiVLVtWP//8s4oXL25d5+7uLj8/P7m6ujo8JAAAAAAASN9dFfvg4GBJUkpKSraEAQAAAAAAd8eu292lOnjwoKKjo9NcSO+JJ564p1AAAAAAACBr7Cr2J06c0FNPPaX9+/fLYrHIGCNJslgskm5dSA8AAAAAAGQ/u25316tXL4WEhOjcuXPKnz+/Dhw4oE2bNql27drasGGDgyMCAAAAAICM2DVjv3XrVq1bt07FihWTi4uLXFxcVL9+fY0aNUo9e/bU7t27HZ0TAAAAAACkw64Z++TkZBUqVEiSVKxYMZ05c0bSrYvrHTlyxHHpAAAAAABApuyasa9atar27t2rkJAQPfTQQxo7dqzc3d01Y8YMlS1b1tEZAQAAAABABuwq9oMGDdKVK1ckSe+8844ef/xxNWjQQEWLFtW8efMcGhAAAAAAAGTMrmIfHh5u/bh8+fI6fPiwLly4oMKFC1uvjA8AAAAAALLfPd3H/nZFihRx1KYAAAAAAEAWZbnYt2nTJssbXbRokV1hAAAAAADA3clysffx8cnOHAAAAAAAwA5ZLvazZs3KzhwAAAAAAMAOdt3HXpJu3rypNWvW6OOPP9alS5ckSWfOnNHly5cdFg4AAAAAAGTOrovnnTp1Ss2bN1d0dLQSExPVtGlTFSpUSGPGjFFiYqKmT5/u6JwAAAAAACAdds3Y9+rVS7Vr19bFixfl5eVlXf7UU09p7dq1DgsHAAAAAAAyZ9eM/Y8//qgtW7bI3d3dZnmZMmX0xx9/OCQYAAAAAAC4M7tm7FNSUpScnJxm+e+//65ChQrdcygAAAAAAJA1dhX7Zs2aaeLEidbnFotFly9f1tChQ9WyZUtHZQMAAAAAAHdg16H4H3zwgZo3b67KlSvr+vXrev7553Xs2DEVK1ZM//vf/xydEQAAAAAAZMCuYh8UFKS9e/dq3rx52rt3ry5fvqwuXbqoffv2NhfTAwAAAAAA2euui/2NGzdUsWJFLV26VO3bt1f79u2zIxcAAAAAAMiCuz7HPl++fLp+/Xp2ZAEAAAAAAHfJrovnRUZGasyYMbp586aj8wAAAAAAgLtg1zn2O3bs0Nq1a7Vq1SqFhoaqQIECNusXLVrkkHAAAAAAACBzdhV7X19ftW3b1tFZAAAAAADAXbKr2M+aNcvROQAAAAAAgB3sOsceAAAAAADkDRR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBidl0VX5KuXLmijRs3Kjo6WklJSTbrevbsec/BAAAAAADAndlV7Hfv3q2WLVvq6tWrunLliooUKaK//vpL+fPnl5+fH8UeAAAAAIAcYteh+H369FGrVq108eJFeXl5adu2bTp16pRq1aqlDz74wNEZAQAAAABABuwq9nv27NEbb7whFxcXubq6KjExUUFBQRo7dqz++9//OjojAAAAAADIgF3FPl++fHJxufVSPz8/RUdHS5J8fHx0+vRpx6UDAAAAAACZsusc+wceeEA7duxQhQoV9Mgjj2jIkCH666+/9OWXX6pq1aqOzggAAAAAADJg14z9e++9pxIlSkiSRo4cqcKFC+u1117Tn3/+qRkzZjg0IAAAAAAAyJhdxb527dp69NFHJd06FH/FihVKSEjQzp07Vb169SxvZ9q0aapWrZq8vb3l7e2tsLAwLV++3Lr++vXrioyMVNGiRVWwYEG1bdtWsbGxNtuIjo5WRESE9Yr8/fr1082bN23GbNiwQTVr1pSHh4fKly+v2bNn2/O2AQAAAADIc+wq9o5SqlQpjR49Wjt37tQvv/yixo0b68knn9SBAwck3br6/vfff68FCxZo48aNOnPmjNq0aWN9fXJysiIiIpSUlKQtW7bo888/1+zZszVkyBDrmKioKEVEROjRRx/Vnj171Lt3b7388stauXJljr9fAAAAAAAcLcvn2NesWVNr165V4cKF9cADD8hisWQ4dteuXVnaZqtWrWyejxw5UtOmTdO2bdtUqlQpzZw5U3PnzlXjxo0lSbNmzVKlSpW0bds21a1bV6tWrdLBgwe1Zs0a+fv7q0aNGnr33Xf11ltvadiwYXJ3d9f06dMVEhKicePGSZIqVaqkn376SRMmTFB4eHhW3z4AAAAAAHlSlov9k08+KQ8PD0lS69atHR4kOTlZCxYs0JUrVxQWFqadO3fqxo0batKkiXVMxYoVVbp0aW3dulV169bV1q1bFRoaKn9/f+uY8PBwvfbaazpw4IAeeOABbd261WYbqWN69+7t8PcAAAAAAEBOy3KxHzp0aLof36v9+/crLCxM169fV8GCBbV48WJVrlxZe/bskbu7u3x9fW3G+/v7KyYmRpIUExNjU+pT16euy2xMQkKCrl27Ji8vr3RzJSYmKjEx0fo8ISHhnt4nAAAAAADZwa5z7Hfs2KHt27enWb59+3b98ssvd7Wt+++/X3v27NH27dv12muvqWPHjjp48KA9sRxq1KhR8vHxsT6CgoJyOxIAAAAAAGnYVewjIyN1+vTpNMv/+OMPRUZG3tW23N3dVb58edWqVUujRo1S9erV9eGHHyogIEBJSUmKi4uzGR8bG6uAgABJUkBAQJqr5Kc+v9MYb2/vDGfrJWngwIGKj4+3PtJ7vwAAAAAA5Da7iv3BgwdVs2bNNMsfeOCBe55tT0lJUWJiomrVqqV8+fJp7dq11nVHjhxRdHS0wsLCJElhYWHav3+/zp07Zx2zevVqeXt7q3LlytYxt28jdUzqNjLi4eFhvQ1f6gMAAAAAgLwmy+fY387Dw0OxsbEqW7aszfKzZ8/KzS3rmxw4cKBatGih0qVL69KlS5o7d642bNiglStXysfHR126dFHfvn1VpEgReXt7q0ePHgoLC1PdunUlSc2aNVPlypX14osvauzYsYqJidGgQYMUGRlpvdBft27dNHnyZPXv31+dO3fWunXrNH/+fC1btsyetw4AAAAAQJ5iV7Fv1qyZBg4cqO+++04+Pj6SpLi4OP33v/9V06ZNs7ydc+fOqUOHDjp79qx8fHxUrVo1rVy50rqNCRMmyMXFRW3btlViYqLCw8M1depU6+tdXV21dOlSvfbaawoLC1OBAgXUsWNHvfPOO9YxISEhWrZsmfr06aMPP/xQpUqV0qeffsqt7gAAAAAA/wh2FfsPPvhADRs2VHBwsB544AFJ0p49e+Tv768vv/wyy9uZOXNmpus9PT01ZcoUTZkyJcMxwcHB+uGHHzLdTqNGjbR79+4s5wIAAAAAwFnYVexLliypffv2ac6cOdq7d6+8vLzUqVMnPffcc8qXL5+jMwIAAAAAgAzYVewlqUCBAuratasjswAAAAAAgLtkd7E/duyY1q9fr3PnziklJcVm3ZAhQ+45GAAAAAAAuDO7iv0nn3yi1157TcWKFVNAQIAsFot1ncViodgDAAAAAJBD7Cr2I0aM0MiRI/XWW285Og8AAAAAALgLLva86OLFi3r66acdnQUAAAAAANwlu4r9008/rVWrVjk6CwAAAAAAuEt2HYpfvnx5DR48WNu2bVNoaGiaW9z17NnTIeEAAAAAAEDm7Cr2M2bMUMGCBbVx40Zt3LjRZp3FYqHYAwAAAACQQ+wq9lFRUY7OAQAAAAAA7GDXOfapkpKSdOTIEd28edNReQAAAAAAwF2wq9hfvXpVXbp0Uf78+VWlShVFR0dLknr06KHRo0c7NCAAAAAAAMhYlov9tWvX1KtXL0nSwIEDtXfvXm3YsEGenp7WMU2aNNG8efMcnxIAAAAAAKQrS8X+l19+UZ06dVSlShVJ0uLFizV58mTVr19fFovFOq5KlSo6fvx49iQFAAAAAABpZKnYb9iwQf7+/nrhhRckSX/99Zf8/PzSjLty5YpN0QcAAAAAANkrS8X+zTff1BNPPKEGDRpIkmrXrq1ly5ZZ16eW+U8//VRhYWHZEBMAAAAAAKQny7e769mzp1q1aiVJeu+999SiRQsdPHhQN2/e1IcffqiDBw9qy5Ytae5rDwAAAAAAss9dXRU/JCREklS/fn3t2bNHN2/eVGhoqFatWiU/Pz9t3bpVtWrVypagAAAAAAAgrSzP2P9duXLl9MknnzgyCwAAAAAAuEt2FfvU+9ZnpHTp0naFAQAAAAAAd8euYl+mTJlMr36fnJxsdyAAAAAAAJB1dhX73bt32zy/ceOGdu/erfHjx2vkyJEOCQYAAAAAAO7MrmJfvXr1NMtq166twMBAvf/++2rTps09BwMAAAAAAHd2V1fFv5P7779fO3bscOQmAQAAAABAJuyasU9ISLB5bozR2bNnNWzYMFWoUMEhwQAAAAAAwJ3ZVex9fX3TXDzPGKOgoCB9/fXXDgkGAAAAAADuzK5iv379epvnLi4uKl68uMqXLy83N7s2CQAAAAAA7GBXC3/kkUccnQMAAAAAANjBrmK/ZMmSdJdbLBZ5enqqfPnyCgkJuadgAAAAAADgzuwq9q1bt5bFYpExxmZ56jKLxaL69evr22+/VeHChR0SFAAAAAAApGXX7e5Wr16tBx98UKtXr1Z8fLzi4+O1evVqPfTQQ1q6dKk2bdqk8+fP680333R0XgAAAAAAcBu7Zux79eqlGTNm6OGHH7Yue+yxx+Tp6amuXbvqwIEDmjhxojp37uywoLg7ZQYsu+dtnBwd4YAkAAAAAIDsZNeM/fHjx+Xt7Z1mube3t06cOCFJqlChgv766697SwcAAAAAADJlV7GvVauW+vXrpz///NO67M8//1T//v314IMPSpKOHTumoKAgx6QEAAAAAADpsutQ/JkzZ+rJJ59UqVKlrOX99OnTKlu2rL777jtJ0uXLlzVo0CDHJQUAAAAAAGnYVezvv/9+HTx4UKtWrdLRo0ety5o2bSoXl1sHAbRu3dphIQEAAAAAQPrsKvaS5OLioubNm6t58+aOzAMAAAAAAO6C3cV+7dq1Wrt2rc6dO6eUlBSbdZ999tk9BwMAAAAAAHdmV7EfPny43nnnHdWuXVslSpSQxWJxdC4AAAAAAJAFdhX76dOna/bs2XrxxRcdnQcAAAAAANwFu253l5SUpIcfftjRWQAAAAAAwF2ya8b+5Zdf1ty5czV48GBH5wEAAACyVZkBy+55GydHRzggCQA4hl3F/vr165oxY4bWrFmjatWqKV++fDbrx48f75BwAAAAAAAgc3YV+3379qlGjRqSpF9//dVmHRfSAwAAAAAg59hV7NevX+/oHAAAAAAAwA52XTwv1W+//aaVK1fq2rVrkiRjjENCAQAAAACArLGr2J8/f16PPfaY7rvvPrVs2VJnz56VJHXp0kVvvPGGQwMCAAAAAICM2VXs+/Tpo3z58ik6Olr58+e3Ln/mmWe0YsUKh4UDAAAAAACZs+sc+1WrVmnlypUqVaqUzfIKFSro1KlTDgkGAAAAAADuzK4Z+ytXrtjM1Ke6cOGCPDw87jkUAAAAAADIGrtm7Bs0aKAvvvhC7777rqRbt7hLSUnR2LFj9eijjzo0IAAAklRmwLJ73sbJ0REOSAIAAJC32FXsx44dq8cee0y//PKLkpKS1L9/fx04cEAXLlzQ5s2bHZ0RAAAAAABkwK5D8atWraqjR4+qfv36evLJJ3XlyhW1adNGu3fvVrly5RydEQAAAAAAZOCuZ+xv3Lih5s2ba/r06Xr77bezIxMAAAAAAMiiu56xz5cvn/bt25cdWQAAAAAAwF2y61D8F154QTNnznR0FgAAAAAAcJfsunjezZs39dlnn2nNmjWqVauWChQoYLN+/PjxDgkHAAAAAAAyZ1ex//XXX1WzZk1J0tGjR23WWSyWe08FAAAAAACy5K6K/YkTJxQSEqL169dnVx4AAAAAAHAX7uoc+woVKujPP/+0Pn/mmWcUGxvr8FAAAAAAACBr7qrYG2Nsnv/www+6cuWKQwMBAAAAAICss+uq+AAAAAAAIG+4q2JvsVjSXByPi+UBAAAAAJB77uriecYYvfTSS/Lw8JAkXb9+Xd26dUtzu7tFixY5LiEAAAAAAMjQXRX7jh072jx/4YUXHBoGAAAAAADcnbsq9rNmzcquHAAAAAAAwA65evG8UaNG6cEHH1ShQoXk5+en1q1b68iRIzZjrl+/rsjISBUtWlQFCxZU27Zt09xiLzo6WhEREcqfP7/8/PzUr18/3bx502bMhg0bVLNmTXl4eKh8+fKaPXt2dr89AAAAAACyXa4W+40bNyoyMlLbtm3T6tWrdePGDTVr1szmFnp9+vTR999/rwULFmjjxo06c+aM2rRpY12fnJysiIgIJSUlacuWLfr88881e/ZsDRkyxDomKipKERERevTRR7Vnzx717t1bL7/8slauXJmj7xcAAAAAAEe7q0PxHW3FihU2z2fPni0/Pz/t3LlTDRs2VHx8vGbOnKm5c+eqcePGkm6dDlCpUiVt27ZNdevW1apVq3Tw4EGtWbNG/v7+qlGjht5991299dZbGjZsmNzd3TV9+nSFhIRo3LhxkqRKlSrpp59+0oQJExQeHp7j7xsAAAAAAEfJU/exj4+PlyQVKVJEkrRz507duHFDTZo0sY6pWLGiSpcura1bt0qStm7dqtDQUPn7+1vHhIeHKyEhQQcOHLCOuX0bqWNStwEAAAAAgLPK1Rn726WkpKh3796qV6+eqlatKkmKiYmRu7u7fH19bcb6+/srJibGOub2Up+6PnVdZmMSEhJ07do1eXl5pcmTmJioxMRE6/OEhIR7e4MAcBfKDFh2z9s4OTrCAUkAAACQ1+WZGfvIyEj9+uuv+vrrr3M7iqRbF/bz8fGxPoKCgnI7EgAAAAAAaeSJYt+9e3ctXbpU69evV6lSpazLAwIClJSUpLi4OJvxsbGxCggIsI75+1XyU5/faYy3t3e6s/WSNHDgQMXHx1sfp0+fvqf3CAAAAABAdsjVYm+MUffu3bV48WKtW7dOISEhNutr1aqlfPnyae3atdZlR44cUXR0tMLCwiRJYWFh2r9/v86dO2cds3r1anl7e6ty5crWMbdvI3VM6jbS4+HhIW9vb5sHAAAAAAB5Ta6eYx8ZGam5c+fqu+++U6FChaznxPv4+MjLy0s+Pj7q0qWL+vbtqyJFisjb21s9evRQWFiY6tatK0lq1qyZKleurBdffFFjx45VTEyMBg0apMjISHl4eEiSunXrpsmTJ6t///7q3Lmz1q1bp/nz52vZsns/hxUAAAAAgNyUqzP206ZNU3x8vBo1aqQSJUpYH/PmzbOOmTBhgh5//HG1bdtWDRs2VEBAgBYtWmRd7+rqqqVLl8rV1VVhYWF64YUX1KFDB73zzjvWMSEhIVq2bJlWr16t6tWra9y4cfr000+51R0AAAAAwOnl6oy9MeaOYzw9PTVlyhRNmTIlwzHBwcH64YcfMt1Oo0aNtHv37rvOCAAAAABAXpYnLp4HAAAAAADsQ7EHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnJhbbgcAAADOrcyAZQ7ZzsnREQ7ZDgAA/zbM2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MbfcDgAAAAAg95QZsMwh2zk5OsIh2wFw95ixBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIm55XYAAMhLygxYds/bODk6wgFJAAAAgKxhxh4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACfmltsBAAAAAADpKzNg2T1v4+ToCAckQV7GjD0AAAAAAE6MYg8AAAAAgBPL9WK/adMmtWrVSoGBgbJYLPr2229t1htjNGTIEJUoUUJeXl5q0qSJjh07ZjPmwoULat++vby9veXr66suXbro8uXLNmP27dunBg0ayNPTU0FBQRo7dmx2vzUAAAAAALJdrhf7K1euqHr16poyZUq668eOHatJkyZp+vTp2r59uwoUKKDw8HBdv37dOqZ9+/Y6cOCAVq9eraVLl2rTpk3q2rWrdX1CQoKaNWum4OBg7dy5U++//76GDRumGTNmZPv7AwAAAAAgO+X6xfNatGihFi1apLvOGKOJEydq0KBBevLJJyVJX3zxhfz9/fXtt9/q2Wef1aFDh7RixQrt2LFDtWvXliR99NFHatmypT744AMFBgZqzpw5SkpK0meffSZ3d3dVqVJFe/bs0fjx423+AAAAAAAAgLPJ9Rn7zERFRSkmJkZNmjSxLvPx8dFDDz2krVu3SpK2bt0qX19fa6mXpCZNmsjFxUXbt2+3jmnYsKHc3d2tY8LDw3XkyBFdvHgxh94NAAAAAACOl+sz9pmJiYmRJPn7+9ss9/f3t66LiYmRn5+fzXo3NzcVKVLEZkxISEiabaSuK1y4cJp9JyYmKjEx0fo8ISHhHt8NAAAAAACOl6dn7HPTqFGj5OPjY30EBQXldiQAAAAAANLI08U+ICBAkhQbG2uzPDY21rouICBA586ds1l/8+ZNXbhwwWZMetu4fR9/N3DgQMXHx1sfp0+fvvc3BAAAAACAg+XpYh8SEqKAgACtXbvWuiwhIUHbt29XWFiYJCksLExxcXHauXOndcy6deuUkpKihx56yDpm06ZNunHjhnXM6tWrdf/996d7GL4keXh4yNvb2+YBAAAAAEBek+vF/vLly9qzZ4/27Nkj6dYF8/bs2aPo6GhZLBb17t1bI0aM0JIlS7R//3516NBBgYGBat26tSSpUqVKat68uV555RX9/PPP2rx5s7p3765nn31WgYGBkqTnn39e7u7u6tKliw4cOKB58+bpww8/VN++fXPpXQMAAAAA4Bi5fvG8X375RY8++qj1eWrZ7tixo2bPnq3+/fvrypUr6tq1q+Li4lS/fn2tWLFCnp6e1tfMmTNH3bt312OPPSYXFxe1bdtWkyZNsq738fHRqlWrFBkZqVq1aqlYsWIaMmQIt7oDAAAAADi9XC/2jRo1kjEmw/UWi0XvvPOO3nnnnQzHFClSRHPnzs10P9WqVdOPP/5od04AAAAAAPKiXD8UHwAAAAAA2I9iDwAAAACAE6PYAwAAAADgxHL9HHsgp5QZsOyet3FydIQDkgAAAACA4zBjDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgx7mMPAADgYGUGLLvnbZwcHeGAJACAfwNm7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ0axBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGLe7AwBkitt2AQAA5G3M2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE+PieQAAAABwG0dcOFbi4rHIOczYAwAAAADgxJixBwAA+AfjlpUA8M/HjD0AAAAAAE6MYg8AAAAAgBOj2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAE6PYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOzC23A/zTlBmw7J63cXJ0hAOSAAAAAAD+DZixBwAAAADAiVHsAQAAAABwYhR7AAAAAACcGMUeAAAAAAAnRrEHAAAAAMCJcVV8AADugiPufiJxBxQAAJxdXrojGsUe2Yp/AAMAAClv/QMYeRffJ4B9OBQfAAAAAAAnRrEHAAAAAMCJUewBAAAAAHBiFHsAAAAAAJwYxR4AAAAAACdGsQcAAAAAwIlR7AEAAAAAcGIUewAAAAAAnBjFHgAAAAAAJ+aW2wEAAAAcpcyAZfe8jZOjIxyQBACAnEOxBwAAAABkij+c5m0cig8AAAAAgBNjxh5AruMvwAAAAID9mLEHAAAAAMCJUewBAAAAAHBiHIoPAAAA5AJORQPgKMzYAwAAAADgxCj2AAAAAAA4MYo9AAAAAABOjGIPAAAAAIATo9gDAAAAAODEKPYAAAAAADgxij0AAAAAAE7sX1Xsp0yZojJlysjT01MPPfSQfv7559yOBAAAAADAPfnXFPt58+apb9++Gjp0qHbt2qXq1asrPDxc586dy+1oAAAAAADY7V9T7MePH69XXnlFnTp1UuXKlTV9+nTlz59fn332WW5HAwAAAADAbm65HSAnJCUlaefOnRo4cKB1mYuLi5o0aaKtW7em+5rExEQlJiZan8fHx0uSEhISMt1XSuLVe857p31kxT8ph5R3suSVHFLeyfJPyiHlnSx5JYeUd7L8k3JIeSdLXskh5Z0s/6QcUt7JkldySHknyz8ph5R3suSVHFLeyfJPyiHlnSw5kSN1vTEm03EWc6cR/wBnzpxRyZIltWXLFoWFhVmX9+/fXxs3btT27dvTvGbYsGEaPnx4TsYEAAAAACCN06dPq1SpUhmu/1fM2Ntj4MCB6tu3r/V5SkqKLly4oKJFi8pisdi1zYSEBAUFBen06dPy9vZ2VFSnzkKOvJslr+TIS1nySo68lCWv5MhLWciRd7PklRx5KUteyZGXsuSVHHkpCznybpa8kiMvZckrORyVxRijS5cuKTAwMNNx/4piX6xYMbm6uio2NtZmeWxsrAICAtJ9jYeHhzw8PGyW+fr6OiSPt7d3rn+TpcorWciRVl7JkldySHknS17JIeWdLHklh5R3spAjrbySJa/kkPJOlrySQ8o7WfJKDinvZCFHWnklS17JIeWdLHklh3TvWXx8fO445l9x8Tx3d3fVqlVLa9eutS5LSUnR2rVrbQ7NBwAAAADA2fwrZuwlqW/fvurYsaNq166tOnXqaOLEibpy5Yo6deqU29EAAAAAALDbv6bYP/PMM/rzzz81ZMgQxcTEqEaNGlqxYoX8/f1zLIOHh4eGDh2a5hD/3JBXspAj72bJKznyUpa8kiMvZckrOfJSFnLk3Sx5JUdeypJXcuSlLHklR17KQo68myWv5MhLWfJKjpzO8q+4Kj4AAAAAAP9U/4pz7AEAAAAA+Kei2AMAAAAA4MQo9gAAAAAAODGKPQAAAAAAToxiDwAAAACAgyUnJ2vPnj26ePFitu/rX3O7u9yUlJSkqKgolStXTm5ufMqB9CxZsiTLY5944olsTGJr48aN+uCDD3To0CFJUuXKldWvXz81aNAgxzKkJzk5Wfv371dwcLAKFy6cq1lyU1xcnGbOnGn9+lSpUkWdO3eWj49Ptu63b9++WR47fvz4bEzy/3bt2qV8+fIpNDRUkvTdd99p1qxZqly5soYNGyZ3d/ccyQE4o7z0uz4uLk7ffPONjh8/rn79+qlIkSLatWuX/P39VbJkyRzPA2RFbvedvPIz3Lt3b4WGhqpLly5KTk7WI488oi1btih//vxaunSpGjVqlG375nZ32ejq1avq0aOHPv/8c0nS0aNHVbZsWfXo0UMlS5bUgAEDcizLtWvXZIxR/vz5JUmnTp3S4sWLVblyZTVr1izHcuRlCQkJWrdune6//35VqlQpt+P867i4ZO0AIovFouTk5GxOc8tXX32lTp06qU2bNqpXr54kafPmzVq8eLFmz56t559/PkdySLn7P4q86pdfflF4eLi8vLxUp04dSdKOHTt07do1rVq1SjVr1sy2fT/66KNZGmexWLRu3bpsy3G7Bx98UAMGDFDbtm114sQJValSRU899ZR27NihiIgITZw4MUdyAJnZu3evqlWrJovFkttRrPLS7/p9+/apSZMm8vHx0cmTJ3XkyBGVLVtWgwYNUnR0tL744ots23ebNm2yPHbRokXZlgN39s0332j+/PmKjo5WUlKSzbpdu3blaJa80Hfy0s9wqVKl9O2336p27dr69ttvFRkZqfXr1+vLL7/UunXrtHnz5mzbN8U+G/Xq1UubN2/WxIkT1bx5c+3bt09ly5bVd999p2HDhmn37t05lqVZs2Zq06aNunXrpri4OFWsWFH58uXTX3/9pfHjx+u1117LsSx55ZdRu3bt1LBhQ3Xv3l3Xrl1T9erVdfLkSRlj9PXXX6tt27Y5liXV1atX0/28VKtWLUf2n5ycrAkTJmT49blw4UKO5MgrKlWqpK5du6pPnz42y8ePH69PPvnE+lfhnJCb/6PIyPHjxzVx4kSbv4736tVL5cqVy5H9N2jQQOXLl9cnn3xinR24efOmXn75ZZ04cUKbNm3KkRx5hY+Pj3bt2qVy5cppzJgxWrdunVauXKnNmzfr2Wef1enTp3M7IiRduXJFGzduTPd3bM+ePXM0S24c8TJu3Dj9+OOP+vrrr+Xp6Zlt+7kbeel3fZMmTVSzZk2NHTtWhQoV0t69e1W2bFlt2bJFzz//vE6ePJlt++7UqVOWx86aNSvbcmTk999/15IlS9L92cmpI6PyQo5Jkybp7bff1ksvvaQZM2aoU6dOOn78uHbs2KHIyEiNHDky2zPcLi/0nbz0M+zp6anffvtNpUqVUteuXZU/f35NnDhRUVFRql69uhISErJv5wbZpnTp0mbr1q3GGGMKFixojh8/bowx5tixY6ZQoUI5mqVo0aLm119/NcYY88knn5hq1aqZ5ORkM3/+fFOxYsVs2+93331nYmNjrc8//PBDU6hQIdOjRw/j4uJi3nrrLdOgQQPj6+tr3n777WzLkR5/f3+zZ88eY4wxc+bMMeXLlzdXrlwxU6dONTVq1MjRLOfOnTMRERHGxcUl3Ud2+fzzz83hw4etzwcPHmxKlixpxo0bZywWi5k2bZp54YUXTNGiRc2HH36YbTnyKnd3d3Ps2LE0y48dO2Y8PDxyNIuHh4c5ffq0McaYV155xfTq1csYY8yJEydy/PeJMcasWLHCuLu7mzp16pg+ffqYPn36mDp16hgPDw+zatWqHMng6elpDh06lGb5gQMHjJeXV45kyEsKFSpkjh49aowxpkmTJmbixInGGGNOnTplPD09cyXTggULzNNPP20eeugh88ADD9g8/g1ZTp06ZfN8165dJiAgwPj4+BgXFxfj7+9vLBaLKVCggAkJCcm2HOnZsWOHKVKkiClZsqR56qmnzFNPPWVKlSplihYtanbu3Jlt+01JSTEDBw409erVM8YY4+vrawoXLpzhIyfkpd/13t7e5rfffjPG2P7b8eTJkzmeJS9Zs2aNyZ8/v6latapxc3MzNWrUML6+vsbHx8c8+uij/6oc999/v5k7d64xxvZ7ZPDgwSYyMjJHMtwuL/SdvPQzXLp0abNy5Upz8+ZNExQUZJYuXWqMMebXX381vr6+2bpvTvjORn/++af8/PzSLL9y5UqOH4J29epVFSpUSJK0atUqtWnTRi4uLqpbt65OnTqVbfu9fv266tevr6VLl+q+++7T1KlT9emnn6pdu3aaPHmyRo8eLUkaOHCg4uLisi1HeuLj41WkSBFJ0ooVK9S2bVvlz59fERER6tevX45m6d27t+Li4rR9+3Y1atRIixcvVmxsrEaMGKFx48Zl234DAgLUrFkzzZkzR/Xr19ecOXM0Y8YMtWzZUm+++aa6deumbt26afz48dq2bVuOziblhVmtoKAgrV27VuXLl7dZvmbNGgUFBeVIhlT+/v46ePCgSpQooRUrVmjatGmSbv1su7q65mgWSRowYID69Olj/Rm+fflbb72lpk2bZnsGb29vRUdHq2LFijbLT58+bf19lxMeffTRTH+n59Sh+LVr19aIESPUpEkTbdy40fo9EhUVJX9//2zf/5IlS1S3bl3r//cmTZqkQYMG6aWXXtLChQvVr18/bdmyRfv371dkZGS257nd7TNc3333XZoZruzyxRdf6MyZM5oyZYosFov69Omj1q1ba8qUKXJzc1NMTIyOHz+ujh073tV1GxyhT58+euKJJ9I94qV3797ZdsSLxWLRe++9p++++06SNGHChFw/LD8v/a738PBId0bv6NGjKl68eI5myUsGDhyoN998U8OHD1ehQoW0cOFC+fn5qX379mrevPm/Kkd0dLQefvhhSZKXl5cuXbokSXrxxRdVt25dTZ48OUdypMoLfScv/Qx36tRJ7dq1U4kSJWSxWNSkSRNJ0vbt29P8e8XhsvXPBv9yDRo0MJMmTTLG3PoL1okTJ4wxxnTv3t2Eh4fnaJbQ0FDz4YcfmujoaOPt7W22bNlijDHml19+Mf7+/tm67/Xr15vQ0FBjjDFeXl7WGQwvLy9z6dIlY4wxR48eNUWKFMnWHH9XoUIFM2/ePHP58mVTvHhxs3btWmOMMXv27DFFixbN0SwBAQFm+/btxphbs25Hjhwxxtw64iF1ViO7HDp0yDz00EPGGGPy589v/foULFjQxMXFGWOMOX78uPH29s7WHLdLndXy9vY2rq6upnjx4rkyqzV16lTj7u5uunXrZr744gvzxRdfmFdffdV4eHiY6dOn51gOY4wZOnSo8fHxMRUrVjSlS5c2169fN8YYM3PmTFO3bt0czWLMrSMIUmeHb3fkyJEc++t4jx49TKlSpczXX39toqOjTXR0tPnf//5nSpUqZT2iISf07t3b5hEZGWnq1atnfHx8TM+ePXMsx969e03VqlWNt7e3GTZsmHV59+7dzXPPPZft+583b56pUKGC9ffX/fffb+bNm2eMMcZisVjHDRgwIMdnlXJrhuvq1aumc+fOplWrVsYYY3x8fKxHSbm6upqkpCRjjDFbtmwx999/f7blSA9HvPy/vPS7vkuXLqZ169YmKSnJ+m/HU6dOmQceeCBHf6+VKVPGhISEZPjIaQULFrQeyeDr62s9CnXPnj0mODj4X5UjJCTE7Nq1yxhjTK1atazfoytXrsyxo1xulxf6Tl76GTbm1hFi48ePtx5paYwxs2fPNt9++2227pdin41+/PFHU7BgQdOtWzfj6elpevXqZZo2bWoKFChgfvnllxzNsmDBApMvXz7j4uJimjZtal3+3nvvmebNm2f7/v/66y9jjO0vo4oVK5qVK1caY4xZvnx5jhf7KVOmGDc3N+Pr62uqV69ukpOTjTHGTJo0yTRq1ChHsxQqVMhERUUZY24dwvPTTz8ZY24dZp0T/8BKLYn33Xef2bZtmzHGmBo1apj//e9/xphbpyr4+flle45UjzzyiHnllVdMcnKy9R/h0dHRpmHDhmbhwoU5lsMYYxYtWmTq1atnihQpYooUKWLq1auX7b+YM5Jb/6NIT6lSpcz8+fPTLJ83b54JCgrKkQyJiYmmZ8+ext3d3XraioeHh+ndu7f1ezo3DR061Lzxxhu5HcNcu3bNWiCzW179Q66Xl5c5efKkMcaY4sWLW0/Dyqksqb9LixUrZv2DWGBgoPXjQ4cOmfz582d7jtv5+flZ/x98uxUrVuTo7/tTp05l+sgpeeV3fVxcnGnSpInx9fU1rq6uJigoyOTLl880bNjQXL58OcdyTJw40ebx/vvvm+eff94UKVLEjBo1KsdypPL39zcHDx40xhhTqVIl89133xljbhXqAgX+r707j6t52/8H/tq7eS5DlJQypFSmZJ6TIWU6HMeQyjxziBxTZkIyZyjJ3HFM4ZoyRGWmEmkQOihOGUuo1u+Pfn1u2y7Hvd+z12e7vZ+PR4+HPnufu16X2nuvz1rr/dapUDmGDx8u3LzdsGED09LSEn5mvL29uWQoTVnmO8ryOywmmtgrWFpaGhsxYgRr1qwZs7GxYYMHD2bx8fGiZHnx4gW7ffu2MIFljLFr166VecdeUUq/GK1cuZIZGhoyFxcXpq+vz0aMGMEtR4mbN2+yQ4cOCR84GWPs+PHjwsSaF0dHR3bq1CnGGGNubm5s6NCh7M8//2QzZsxgVlZW3HLMnDmTLVmyhDFWPGFUU1Nj9erVY6qqquy3337jlqP0qpaBgYHwJnr16lXuq1qkbAsWLGCGhoZs+fLlLCoqikVFRbFly5YxQ0NDtnDhQq5ZcnNzWXx8PIuPj2e5ublcx/6WlJQUUVZPxKaMN3KVZYWrS5cubM+ePYwxxgYPHsy6du3K9u7dyzp37izsnOJFWXa8SCSScuvLKLLGTIkvX76wBQsWyNwwVQZXrlxhGzduZCtWrGBnz54VO45gw4YNzNPTk/u4vXr1Ylu3bmWMMTZt2jRWp04dtnjxYtakSRPWuXPnCpWjsLCQffnyRfh+3759bOLEiWzdunXs06dPXDJ8LTU1VWnmO8rg3LlzbNasWWz48OHMy8tL5kuRaGKvIJ8/f2ZeXl7CdhRS7OsXo927d7MJEyaw9evXc1tRUka7du1iO3bsYIwV32yoUqUKk0qlTFNTk+3fv1+0XJcvX2arVq1iERERXMctvapVt25d4aYH71UtS0tLYZJS2uvXr0XZivjhwwd24sQJtnnzZrZ27VqZL96KiopYQEAAq1GjBpNIJEwikbAaNWqwwMBAVlRUxD0PY4y9ffuWHT58WLgRJLawsDBmYmKi0DGMjIzYq1evGGPKUYSsNGW6kassK1w3btxg58+fZ4wx9uzZM+bs7Mx0dXVZ06ZNuX8IVpYdL3fv3pX5unHjBtu6dSurX78+tx1aOjo6wq45se3cubPMv/9Pnz6xnTt3ipBIVlpamigFW9PS0lhcXBxjrPi9cPTo0cze3p717dtX2I1TkXIQ5eXn58ekUilzcnJivXr1Yr1795b5UiRqd6dABgYGuHv3LiwtLcWOAqC453N5bcwqaj9SsVuWlCcvLw9JSUkwNzdHlSpVuIz55csXjB49GnPnzhX9Z9bFxQWenp4YNGgQRo4cifj4eEyaNAm7du3C69evce3aNS45pFIpMjMz5YrCZGVlwdzcHJ8+fVLY2E+fPoW5ubnw/Z07d9CjRw98/PgR79+/R9WqVfHy5Utoa2vD2NgYjx49UliWv1NSuIdnwTpAeVpWft37mTGGFy9e4ObNm5g7dy7mz5+vsLF37tyJgQMHQkNDQ+ghXJ5hw4YpLEdZioqKUFRUJBRm27NnD65evQpra2uMHj0aampqomXZv38/YmJiULduXYwePRrq6uoKz8AYQ0ZGBoyNjZWmzRtQ/H6TlpYGAKhduza0tbVFTlTsxIkTWLlyJS5evKjwsXr16oW+ffty/x0pi4qKCl68eCH3vpOdnQ1jY2MUFhaKlKyYv78/Nm3apNC2e+TvvXnzBtevX8fLly9RVFQk85iHhwf3PIWFhTh8+LBM+9tevXoJr7mKYGRk9N3F+Xi2azYxMYG/vz+GDh3KbcwSNLFXoGHDhqFRo0ZyPRXFsH//fnh4eKBr1644c+YMXFxckJycjKysLPTp04drP9LXr1/L9M21tbWFl5eXUKGel8jISLi7u8PKygpJSUmws7MTJgVNmjThVslamSjLzaibN2/i/fv36NixI16+fAkPDw/hQ3hISAgaNmyo0PGPHTsGAOjduzd27twp09O5sLAQkZGROHv2LB4+fKiwDIsXL5appt2hQwfY2NgI1bSLiopkqml/PbmsCKpXr47Tp0+jYcOG2Lt3L+bPn4+4uDjs3LkTW7du5dI7F5Dv/SyVSlG1alV06tQJLi4uXDIQ5VdUVARNTU0kJiaibt26YsfB27dvUVhYKPfem5OTA1VVVejr64uUrFhqaioaNmyI3NxchY8VFBSEBQsWYPDgwWjatCl0dHRkHnd3d1d4hhJSqRRZWVlyFfDj4uLQsWNHbhOUxo0by0yaGGPIzMzEq1evsGnTJowaNYpLDmX24cMHuUk1j9+biIgIDB48GB8+fIC+vr7Mv5NEIuE6iQWAxMREuLu7IzMzE9bW1gD+3cUhIiICdnZ2Chn3725ml8bzpl3lypVx/fp11K5dm9uYJWhir0Alrco6d+5c5hsFz9ZhDg4OGD16NMaPHw89PT3ExcXB0tISo0ePhomJCRYsWMAlR1RUFNzd3aGvrw9HR0cAwK1bt/DmzRtERESgXbt2XHIAgJOTE7p37y60LImLi5NpWTJ27FiFjv/rr79i0aJF0NHR+ds2R7x2DyjDzShlWNWSSqUAit8gv36JVFNTQ61atbB69Wr07NlTYRk+fvyICRMm4NWrVzh27BgMDQ1x7do1WFtbQ1VVFR8/foSamhpiY2Ph5eWFpKQkhWUpz8GDB8vdBXT79m2Fj6+lpYXk5GTUrFkTHh4eMDU1xfLly/H06VPY2triw4cPCs+grPLz8+X+TcSYqCnTqpIy3FRu0KABgoOD0aJFC25jlqd79+5wc3PDuHHjZK4HBQXh2LFjOHnyJJccX7d2K9nx4ufnh6SkJNy9e1fhGUpe88sikUi4rJKXTKTj4uLQoEEDmZXOwsJCpKeno1u3bggPD1d4FgBynwtLblh26NBB8S27/r9KlSohOTkZVapU+dvVWV6T2fT0dEyYMAEXL15Efn6+cJ0xxu1npV69eujRoweWLl2qFDtsWrZsiapVq2Lnzp0wMjICUPx66+npiVevXiEmJkbkhHzNnDkTurq6mDt3LvexqY+9AgUHB8PQ0BC3bt3CrVu3ZB6TSCRcJ/ZpaWlwdXUFAKirqwu9JadOnYpOnTpxm9iPHz8eAwYMwObNm4Xe24WFhRg3bhzGjx+PhIQELjkA4MGDB9i3bx8ACBMlXV1dLFy4EL169VL4xP7OnTv48uWL8Ofy8OzvW7duXSxcuBDR0dGi3YxijKFOnTqirmqVTEAsLS1x48YNbschStPS0kJwcDD2798PoPiGQsmHz2rVquHx48eoW7cujIyMkJGRwSVTz549MXbsWLi6uorWF7y0mjVrIjY2FpUqVcKpU6eEv6vXr1+LdlMoPz8fBw4cQG5uLrp06cL1Zzg3NxczZ85EeHg4srOz5R7nvYX371aVeE7sy7qpvG7dOixcuJDrTeXly5fDx8cHmzdvVtgq1ve6du1amTeNO3TogNmzZ3PLYWhoKPc+xxhDzZo1hd9pRfv6ppMYevfuDQC4e/cuunbtCl1dXeExdXV11KpVi9vxIgAKPUL0vdasWSMc8QoMDBQ3zP83ZMgQMMYQEhKCatWqcf2MVuLZs2eYNGmSUkzqgeKf2Zs3bwqTeqB4m/ySJUvQrFkzLhmePn36zcdLH21UtPz8fGzduhXnzp2Dg4OD3LEzhS7WKfQEP1EaNWrUEArz2NvbC/18Y2JiuPYn19TUFKqdl5aUlMQ0NTW55WBMOVqWKJtatWqV+8WzWJytrS2LjY3lNt6PQBmqaT948EDo0iBWX/DSxG5ZOXXqVDZhwgTh+0+fPrGGDRsyNTU1ZmBgwHR0dFhMTIzCc5QYN24cs7GxYQcPHmRaWlosJCSELVq0iJmZmbHdu3dzy1Gibt26bPLkyUrRqcDOzo6NHDmSFRQUCNcKCgrYqFGjmJ2dHbcchoaGQrE6TU1NUQscamtrl1mwLz4+nmsf+4sXL8p8RUVFsQcPHsgU2q0oCgoKWGhoKHv+/LloGb58+SJXvC8zM5P5+fkxHx8fdvnyZZGSKQcdHZ0yP8fy1KdPH3bgwAFRM5Tm4ODAIiMj5a5HRkZye30Vu7tGaR06dCj3q2PHjgodm1bsK4h27drh7NmzsLe3R//+/TF58mScP38eZ8+eRefOnbnlaNKkCR48eCCcwSnx4MEDhZ+b/lqLFi1w5coV2NjYoEePHpg2bRoSEhJw6NAhpdgmKYb09HSxIwBQrlWtyMhIREZGlrmVOCQkhFuOpUuXCkXq/P39MWzYMIwaNQrW1tbcamQEBATg559/BlB8d7xVq1YAincXlGQbOnQoWrRogQ0bNig8z7hx4+Dk5ISMjAx06dJF2NFgZWWFxYsXK3z8M2fOYOnSpcL3e/bswdOnT5GSkgJzc3N4e3tj8eLFOHHihMKzAMUr5GFhYejQoQO8vLzQtm1b1KlTBxYWFtizZw8GDx7MJUcJZVpVSk1NxcGDB4WdYkBxkbJff/0VYWFh3HIoy6ojUHwcbevWrVi/fr3M9aCgIDRt2pRbjvbt23Mbq7R169Zh1KhR0NTUxLp16775XF47LFVUVDB69GjhuIgYRo4cCXV1dWzZsgVAcXHUZs2aIT8/HyYmJlizZg2OHj2KHj16cM9WVFSE1NTUMt+Pee26adasGTIyMuQ+x/Lk6uoKHx8f3L9/H/b29nIrwjxrQgDAsmXLMGnSJPj5+Qmfn69evYqFCxdixYoVMsdtFHUk7Oudr1++fMGdO3cQEBCAJUuWKGTM8ly4cIHreKXRGXsF6tevH5ycnDBz5kyZ6/7+/rhx4wZ+//13bllycnKQn58PU1NTFBUVwd/fXyhGNmfOHJntM4p04MABzJgxAxMnTpT55d+4cSOWL18OGxsb4bkODg4KzfLo0SN8+PABDg4OyM3NxbRp04S/k4CAAFhYWCh0/NJyc3OxfPnycieQYlY8F4ORkRHy8vJQUFAAdXV1aGlpyTzO6yzdggULsHDhQjg6OsLExERuy93hw4e55FAWVapUgb+/P7y9vWFlZYU//vgDjRs3hqOjI0aOHInRo0fjzJkzGDhwIPfiPUDxVvOEhARYWFhweU3T19fH7du3UadOHQDAL7/8Aj09PWzduhVA8fbEHj164Pnz5wrPAgC6urq4f/8+zM3NYWZmhkOHDsHJyQnp6emwt7fnXnOgb9++GDhwIAYMGMB13LK0bt0aPj4+wnbnEkeOHMHy5ctx9epVcYKJKDo6Gs7OzmjWrJlwgz8yMhI3btzAmTNn0LZtW6557t+/X2a9DkVNUiwtLXHz5k1Urlz5mwVjJRIJ1/dgR0dHrFixguuiS2n16tXDhg0bhMKfGzduxNKlS3H//n0YGBhg5syZuH79OvfJy9WrVzFo0CA8efJErvYNr7PtQPHR1jFjxmDIkCGws7OTm1Qr+rMroBw1IUornafkc1LJv1Hp78XIxrO7hjKgFXsFioqKgp+fn9z17t27Y/Xq1VyzlC4OJJVK4evry3X8Er/88gsAYMaMGWU+VlKsjMcvv5WVlfBnHR0dBAUFKXS8bxkxYgQuXbqEoUOHljmB5EkZWgAqy6pWUFAQQkNDRWlZooyOHz+O48ePAwA6deqEY8eOoXHjxvDy8sLUqVNx8OBB3Lx5k1uF/ilTpsDe3h7Dhw9HYWEh2rdvj5iYGGhra+P48ePo0KGDQseXSqUyHzCvXr0qUyzH0NAQr1+/VmiG0qysrJCeng5zc3PUr18f4eHhcHJyQkREBAwNDbnlKCH2qlJ8fLzw50mTJmHy5MlITU0t86ayGMQucNi6dWvExsZi5cqVCA8Ph5aWFhwcHBAcHMy1NsSjR4/Qp08fJCQkyBQsLXkfVNRngdI71JRltxpQXHh5+vTpWLRoUZm1bhT9M/Ls2TOZf//IyEj069dP6A4zbNgwrp2USowZMwaOjo44ceKEqJ+TXr16hbS0NJluKDw/uwLKUROiNDFXqP+OtbU1bty4ofBx+vbti9DQUOjr6//tZyBFthinFXsF0tLSwt27d+W26yQlJaFx48b4+PEj1zyFhYU4cuSIsMWrQYMGcHd3l9maqGhPnjz57ufyWjH//PlzmavkPAttGBoa4sSJE2jdujW3MctCLQBlidmyBCg+uhIZGQkjIyO51kNf41GFvjRl6AtuZmaGI0eOwNHREUeOHMH48eNx4cIF7Nq1C+fPn0d0dLRCx2/ZsiX69++PX3/9FYmJiXBwcEBqaqqw+nfp0iUMGzaMW7/nNWvWQEVFBZMmTcK5c+fg5uYGxhi+fPmCgIAATJ48mUuOEmKvKkml0jI7W4iRpYSyFThUBm5ublBRUcH27dthaWmJ69evIzs7G9OmTcOqVau47hz4/Pkz0tPTUbt2bYX23/6WslY/AX4rnpUrV8bly5dha2sLADA1NcXKlSuFozyPHj2CnZ0d8vLyFJrjazo6OoiLixN2SInF1tYWNjY2mDFjRpnF83ju9iT/JnZ3DS8vL6xbtw56enrw9PT85uc1Rd4YoxV7BbK3t8eBAwcwb948mev79+8XXjB5SU1NhaurK/7880/hRsOyZctQs2ZNnDhxgtvERZle8JKTkzF8+HC5NhxibBcyMjLi2nKpPLNmzcL06dOFFoB//PGHTAtAntLS0rBjxw6kpaVh7dq1MDY2xr/+9S+Ym5ujQYMGXDKMGDECe/fuFaVlCQD06tULGhoaACC3hVhsUqlU5gPowIEDMXDgQK4Z/vrrL1SvXh0AcPLkSfTv3x/16tWDt7c31q5dq/DxZ8yYgYEDB+LEiRNITExEjx49ZLb0njx5Ek5OTgrPUaJ0m0pnZ2ckJSXh1q1bqFOnDpftoV8Te1VJmVZhS8yYMQMXLlzA5s2bMXToUGzcuBHPnj3Dli1buO8cUJYq0rGxsTh//jyqVKkivK60adNGOLf7ra4x/5S8vDxMnDhR6IudnJwMKysrTJw4ETVq1OC6y1Hs1c9GjRph165dWLZsGS5fvoysrCx06tRJeDwtLQ2mpqbcczVv3hypqamiT+yfPHmCY8eOcc+hbDUh4uPjYWdnB6lUKrM7qiw83n/E7q5RerIeGhqq8PHKQyv2ChQREYG+ffti0KBBwotiZGQk9u7di4MHD3L9oN6jRw8wxrBnzx5hApmdnY0hQ4ZAKpVyK+5UgvdZurK0bt0aqqqq8PX1LXNbF89ifrt378bRo0exc+dOUQtN6enp4e7du6hduzaMjIxw5coVNGjQAHFxcejVqxe3lcdLly6he/fuaN26NaKiovDgwQNYWVlh+fLluHnzJg4ePMglx+TJkxEWFgYHBwf+LUt+AGL3KLewsMC2bdvQuXNnWFpaYvPmzXB1dUViYiLatGnDZRt8ZGQkjh8/jurVq2PixIkyv78LFixA+/btFX4kACguFNStWzcEBQWJ1iZSmezcuRMtW7ZEvXr1xI4iw9zcXChwWLpGw65du7Bv3z5uveOBf+9oKA+vm9tGRka4ffs2LC0tUbt2bWzfvh0dO3ZEWloa7O3tuawMT548GdHR0QgMDES3bt0QHx8PKysrHD16FH5+flxuLiiLkvdfExMTvHjxAr/88guCg4OFx8eNG4fc3FzhJggvhw8fxpw5c+Dj41Pm0R5eNy/d3Nzg6enJtfUgoHw1IaRSKTIzM2FsbPzN3VG8FsouXbokl69q1aqoU6cO9903nTp1wqFDh+SOwL179w69e/dW6O5XWrFXIDc3Nxw5cgRLly7FwYMHoaWlhYYNG+L8+fPcV2cvXbqEq1evyoxbuXJlLF++nOv2b7HO0pXl7t27uHXrFurXr89tzNK+3lqdmpqKatWqoVatWnJvWLy2Wevo6Ag3W0xMTJCWliasjv/1119cMgCAr68vFi9ejF9//VXoYQsUv1jyqLZeIj4+Ho0aNQIA3Lt3T+Yxsc733bp1S+Y4TePGjUXJoQw9yr28vDBgwADhxpyzszOA4v7cvH6vO3fuXG6RK559oNXU1P521UQMubm5uHTpUpk3chW5qmRiYoIuXbrgwIEDaNGiBY4dO/bN5/O6qZyTkyPUd9HX1xeKTLZp0wZjx47lkqGEslSRtrOzQ1xcHCwtLdG8eXP4+/tDXV0dW7dulamFo0hHjhwRflZKv5Y1aNAAaWlpXDKU9ubNGwQHB8u81nt7ewvn3BWpffv2uHXrFs6cOYPq1aujf//+Mo83atSI606kEiUTaW9vb+Ea77PtQPFn+6lTpyIhIYFr7RBlqwmRnp6OqlWrCn8Wm1jdNcpy8eJFufc7oLiuyuXLlxU6Nk3sFczV1RWurq4Aiu/U7Nu3D9OnT8etW7e4TmI1NDSEdlSlffjwgctZ2BKTJ0+GpaUlIiMjyzxLx5OtrS3XyerXlG1rNaA8LQATEhKwd+9euevGxsZc/83E3hJZ2suXLzFw4EBcvHhRuAv85s0bdOzYEfv37xfeYHmZNm0avL29sXTpUtF2mfj5+cHOzg4ZGRno37+/cGxBRUVFtAKhYhoyZAiCg4NFKwb3tTt37qBHjx7Iy8tDbm4uKlWqhL/++gva2towNjZW6MTexcUFx44dw9ChQxEfH//N11uekwJlKnBY1q40R0dH4Uw1ryKYc+bMQW5uLgBg4cKF6NmzJ9q2bYvKlSvjwIEDXDK8evUKxsbGctdzc3O538S9efMmunbtCi0tLWECXXKz5cyZM2jSpInCM9jY2Mh0KSpt1KhRCh+/LMoweQSKi/gBxT+rX+PxWvLlyxfUr18fx48fL/ffiIfSR2uV6ZitmDuCS99cv3//PjIzM4XvCwsLcerUKdSoUUOxIf7TxvfkP3fp0iXm4eHBdHR0WN26ddnMmTPZ9evXuWYYOnQoa9CgAbt69SorKipiRUVFLDY2ltnZ2bFhw4Zxy1G5cmUWFxfHGGNMX1+fJSUlMcYYi4yMZI0aNeKWo2TMli1bsgsXLrC//vqLvX37VuarIkpLSxP+fT58+MBGjx7N7O3tWd++fdnjx4+55ahRowaLjo5mjDGmq6vL0tLSGGOMHTp0iFlZWXHLoUwGDBjAHB0d2f3794VriYmJzNHRkQ0cOJB7Hm1tbeHfhSiHCRMmMH19fda0aVM2atQoNnXqVJkv3tq3b89GjhzJCgsLhd/jp0+fsnbt2rE//viDS4bXr19zGed7BQQEsLVr1zLGGDt79izT1NRkGhoaTCqVssDAQJHTFUtJSWHa2tqiZsjOzmZFRUXcxmvbti1bt24dY6z4PefRo0eMseLfqa5du3LLwRhjbdq0YZ6enuzLly/CtS9fvrBhw4axtm3bcs1ClJOpqanMZwGxHT16tMyvY8eOsTNnzgi/T4qUlpbGHBwcmEQiYVKplEkkEuHPUqlU4eMzxmTGKxm/9Je2tjYLDg5WbAbG6Iy9ImRmZiI0NBTBwcF49+4dBgwYgKCgIMTFxXEvnAcUr+wNGzYMERERwrahgoICuLu7IzQ0lMv2LkA5ztKVKCn8VVaxDTF6bZJ/mz59Oq5du4bff/8d9erVw+3bt5GVlQUPDw94eHhw3eJ88+ZNhIeHl3kHWJEtS75mYGCAc+fOoVmzZjLXr1+/DhcXF7x584ZbFkB5epRfunQJq1atEras2trawsfHh3sPbmXQsWPHch+TSCTcu1oYGhri2rVrsLa2hqGhIWJjY2FjY4Nr165h2LBhSEpK4ppHTEVFRVi5ciWOHTuGz58/o3Pnzpg/fz5evnwpWoFDsatIK5MrV66ge/fuGDJkCEJDQzF69Gjcv38fMTExuHTpEpo2bcoti5aWFu7cuSN3nOj+/ftwdHTkXo1emaSlpSEwMFDm9X7y5Mmida4Ry9KlS5GcnIzt27eL1r2htPLO2Jc+KtGmTRscOXIERkZGCsmgDN01njx5AsYYrKyscP36dZmdlOrq6jA2NlZ4JzLxfxr+B7m5uSEqKgqurq5CIRYVFRVR+6QbGhri6NGjSElJET5M2djYcK/qqQxn6Uoo0zbrwsJCrFmzptwJZMk5TB7evHmDgwcPIi0tDT4+PqhUqRJu376NatWqKX4L0f+3dOlSjB8/HjVr1kRhYSFsbW1RWFiIQYMGYc6cOVwyAMUdLDw8PNC1a1ecOXMGLi4uSE5ORlZWFvr06cMtB1A8Mfj6LB9QfLaaV/Xx0ueUxe5RDhQXnfTy8kLfvn2Fbd3R0dHo3LkzQkNDMWjQIIVnUCbK9JoGFP9sltxANTY2xtOnT2FjYwMDAwNkZGRwzyPWeX8AWLJkCfz8/ODs7AwtLS2sXbsWL1++REhIiGjbWMWsIl2653OfPn2+ud2dxw3UNm3a4O7du1i+fDns7e2FLe+xsbGwt7dX+Pil6evr4+nTp3IT+4yMDJmaMxVFfHw8HBwccPr0abi7u6NRo0ZCbajo6Gg0aNAAERER6NKli8IyKFtF+hs3biAyMhJnzpyBvb09dHR0ZB7nuegAAGfPnsXs2bOxZMkS4fjI9evXMXfuXMyZMwcGBgYYPXo0pk+fLlOI8Z+kDN01Sl7LxewIQyv2CqCqqopJkyZh7NixMtWJ1dTURFuxVxanT59Gbm4u+vbti9TUVPTs2RPJycnCWbrSLVUqknnz5mH79u2YNm0a5syZg9mzZ+Px48c4cuQI5s2bx+WNAih+A3V2doaBgQEeP36Mhw8fwsrKCnPmzMHTp08RFhbGJUeJp0+f4t69e/jw4QMaN27Mvdq3g4MDRo8ejfHjx0NPT0+4KTV69GiYmJhgwYIF3LL06tULb968wb59+4RWQ8+ePcPgwYNhZGSEw4cPKzzDt/qSl8Zrx4uNjQ1GjRol0+YNKD6Pum3bNmFVh5dXr17h4cOHAABra2vudQ9KpKamIi0tDe3atYOWlpawYsKbi4sLPD09MWjQIIwcORLx8fGYNGkSdu3ahdevX+PatWvcsvzdeX9FV5GuW7cupk+fjtGjRwMAzp07B1dXV3z8+PG7f6/+aWJWkS7d89nLy6vcitqAYns+K6NJkybh8OHDWLVqFVq1agWgeALr4+ODfv36ITAwUNyAnBQWFmLRokU4f/48oqKi0LhxY3Tt2lWuhoivry/OnDmj0CLDylaR3svL65uP8/6dsbOzw9atW4Wf1xLR0dEYNWoUEhMTce7cOXh7e/9tm83/ljLtCAaAlJQUXLhwocyuQV+3Qf8n0cReAa5evYrg4GAcOHAANjY2GDp0KAYOHAgTExPRJva//vprmdclEgk0NTVRp04d9OrVS5Re6jk5OTAyMhLlg6eYlWdLq127NtatWwdXV1eZlnPr1q3D1atXyywkpwjOzs5o0qQJ/P39hYmslZUVYmJiMGjQIG7t7pSFjo4OEhMTUatWLVSuXBkXL16Evb09Hjx4gE6dOuHFixfcsmRkZMDd3R2JiYmoWbMmgOIbH/b29jh27BjMzMy4ZVEWGhoaSExMlNt5lJqaCjs7O+Tn53PJkZubi4kTJ2LXrl3CDQ0VFRV4eHhg/fr13IoLZmdnY8CAAbhw4QIkEglSUlJgZWUFb29vGBkZYfXq1VxylLh58ybev3+Pjh074uXLl/Dw8EBMTAzq1q2LkJAQri1FO3TogHr16iEoKAgGBgaIi4uDmpoahgwZgsmTJyu8UJyGhgZSU1OF310A0NTURGpqaoX83QWKJ26rVq0Sjid06tQJfn5+0NLSEiVPUVERUlNTy/wg3q5dO245Pn/+DB8fHwQFBaGgoABA8cLQ2LFjsXz5cqFIKC+lO7HY2tpyKd4HFO/ci46OxtGjR6GqqgpNTU0kJCTI3eBPTk6Gg4MDt9d7Ik9LSws3btyAnZ2dzPWEhAQ4OTnh48ePePLkCWxsbBQ2wW7bti2mTZuG3r17Y9CgQXj9+jXmzJmDrVu34tatW3KdjRRp27ZtGDt2LKpUqYLq1avLdQ1SaKcrhZ7gr+A+fPjAgoODWevWrZmamppQHOfdu3fcs3To0IHp6+szHR0d1qRJE9akSROmq6vLDAwMWPPmzZmhoSEzMjJiiYmJ3LOJ5caNG6xSpUqsRo0arE+fPqxPnz7MzMyMVa5cmd26dYtrFm1tbfbkyRPGGGPVq1cXxk9LS2P6+vrccujr67PU1FTGmGzRusePHzMNDQ2Fjv11oa9vffFSo0YNFh8fzxhjzN7enu3du5cxxlhMTAzXf5cSRUVF7OzZs2zdunVs3bp17OzZs9wzKJPatWuzoKAgueubN29mderU4ZZj1KhRzMrKip08eVIovnnixAlWu3ZtNmbMGG45hg4dyrp27coyMjJkfn9PnTrFbG1tueVgrPhn9cmTJ+zjx49cxy2PgYGBUKzVwMBAKDx19epVZm1trfDxpVIpe/nypcy10kXaxJKUlMTGjx/POnXqxDp16sTGjx/PHjx4wGXshQsXMqlUylxcXFivXr2YpqYm8/Ly4jL212JjY5mlpWWZRa94Fd76Wm5uLouPj2fx8fEsNzeX+/hZWVmsY8eOTCKRMCMjI2ZkZMQkEgnr1KmT3M+yIjx48IA1b96c+fn5McYYMzMzY+Hh4XLPO3DgAKtZs6bC85DytW7dmnXr1k3m5+Lly5esW7duQsHHs2fPsnr16iksw6lTp4SirCkpKcza2ppJJBJWpUoVFhkZqbBxy2Jubs6WL1/OdcwSdMZegXR0dODt7Q1vb288fPhQaEPk6+uLLl26/G1f3X9SyWr8jh07oK+vDwB4+/YtRowYgTZt2mDkyJEYNGgQpk6ditOnTyssR35+PtavX1/u9hRe/doBYOrUqXB3d8e2bduEbYcFBQUYMWIEpkyZgqioKG5ZzMzM8OLFC5ibm6N27drC+b4bN25wvTuvoaEhV1AJKL4jruhtxV+ff7p9+zYKCgpgbW0tZFBRUeFaxKhdu3Y4e/Ys7O3t0b9/f0yePBnnz5/H2bNny+1d/k/7+PEjIiMj0bNnT0gkEkRGRuLTp08Aitv/nDlzBgsXLoSmpiaXPKVFRkYiMjKyzN/lkJAQhY8/bdo0TJo0CXfv3pXZshoaGoq1a9cqfPwSf/zxBw4ePIgOHToI13r06AEtLS0MGDAAmzdv5pLjzJkzOH36tNwKcN26dfHkyRMuGUowxlCnTh0kJiZyP0JTFrHP+zPG4OnpKfN6np+fjzFjxsicj+V5NvaPP/7AwIED4ejoiJYtWwIo3nFob2+P/fv3C33DFSUsLAybNm2SO56wfft27scTxowZA0dHR5w4cQImJiai7CD8mra2Nvfz/aVNnDgR79+/R2JiotBW7f79+xg2bBgmTZqEffv2KXT8+vXrIyYmBitXrgQAjBw5EqNGjcKjR49kXu9XrFhR7q5URfnzzz9x7NixMut1BAQEcMlw8ODBcusy8fwsDQDbt29H7969YWZmJuxKysjIgJWVFY4ePQqguL22ImskdejQQdjhUqdOHSQlJYm2I/j169fo378/1zFL0FZ8zgoLCxEREYGQkBCuE/saNWrg7NmzcscAEhMT4eLigmfPnuH27dtwcXFRaJ/wwYMH48yZM/jpp59QrVo1uV82ntXOlanyrK+vL/T19fHbb7/hwIEDGDJkCGrVqoWnT59i6tSp3PpSjxgxAtnZ2QgPD0elSpUQHx8PFRUV9O7dG+3ateN2ti8gIAAXL17Ezp07hQqqr1+/hpeXl7DdioecnBzk5+fD1NQURUVF8Pf3F7YSz5kzR2HVXUsLCgrCiRMnEBERAQDQ09NDgwYNhO2qSUlJmDFjhtw5c0VbsGABFi5cCEdHxzI/CPM4818yzurVq4WtojY2NvDx8UGvXr24jA8UfwC/deuWXE/hxMREODk5CT26FU1PTw+3b99G3bp1ZY7SlPTFzs7O5pKjRIMGDRAcHIwWLVpwHbcsYp/3/7szsSV4no2tXbs2Bg8eLNePe/78+di9ezfS0tIUOr4yHU/Q0dFBXFwc94LCpXl7e//tcyQSicKKj31N2TqxMMYQGBiI1atX4/nz5wAAU1NT+Pj4YNKkSdwmb5GRkXB3d4eVlRWSkpJgZ2eHx48fgzGGJk2acOk+sm7dOsyePRuenp7YunUrvLy8kJaWhhs3bmD8+PFYsmSJwjN8raioCGfOnEFycjKA4jozXbp0UfhNulevXsHDwwPnzp1DUVERmjVrht27d4v6uzx8+HA0a9YMY8aM4T+4KPsECHc6OjrswoULctcvXLjAdHV1GWPF27719PQUmkNfX59duXJFoWN8L2NjY3b69Gm566dOnWLGxsYiJPq32NhYtnr1anbs2DGu475584Y5OzszQ0NDpqKiwmrWrMnU1NRY27Zt2YcPH7jlMDU1Zffu3ZO7npCQwExMTLjlUAZt2rSR+TkovcWaMcZ27drFWrRowT1X9erVWVhYGPdxS3z58oUtWLCAZWRkiJahRKdOnVj//v1ltp3n5eWx/v37s86dO3PL0b17dzZnzhzG2L+3eRcWFrL+/fuzfv36cctR4tixY6xNmzYsISGB+9hfu3HjBjt//jxjrHiLcdeuXZmenh5r0qQJu3v3rsjpxKGlpcVSUlLkricnJzMtLS2Fj69MxxM6duzI/vWvf3Eft7TevXuX++Xm5sa0tLS4HgvQ1dVld+7ckbt++/ZthX9W/Dvv3r0T5VgrY4w1a9aMzZs3jzH27/fj9+/fM3d3d7Zp0yYuGaytrYWjgaU/E8ydO5eNHz+eS4YSnz9/ZioqKqK9znt5ebHq1auzpUuXsoCAAGZtbc06dOggSpYSS5cuZVWqVGHDhg1jq1atYmvXrpX5UiTail9B9OrVC97e3li9erVw9/XGjRuYPn06evfuDaD4Lmy9evUUmqNGjRpK067l559/xvDhw8usPPvLL79wzZKdnY3KlSsDKN6+dPLkSXz8+BGOjo5ccxgYGODs2bOIjo5GXFwcPnz4gCZNmsDZ2Zlrjnfv3uHVq1dy11+9eoX3798rfPyCggIUFhbKbJvNyspCUFAQcnNz4e7ujjZt2ig8B1BcCK70dkxNTU2ZO+BOTk4YP348lyylff78Wa4CLk+qqqrw9/eHh4eHaBlKrF27Fl27doWZmZlQEC4uLg6ampoKPdr0NX9/f3Tu3Bk3b97E58+fMWPGDCQmJiInJwfR0dHccpTw8PBAXl4eGjZsCHV1dbmiaLzaeDLGYGxsLBR2MjY2xqlTp7iMrcw6dOiAy5cvy61sXblyhUvPZ6ZExxMmTpyIadOmITMzs8z2nQ4ODgrPUN4up6NHj+K3336DhoaGQqtpf61Tp06YPHmyXCeWqVOncjuKVh4xP0c+ePBAOIagqqqKjx8/QldXFwsXLkSvXr0wduxYhWd4+vSp8P6rpaUlfC4aOnQoWrRogQ0bNig8Qwk1NTWYm5tz6YRTlrNnzyI0NBRdu3YFAPTs2RM2Njb49OkT90KTJbZu3QpdXV1cunRJrvuIRCJRaKcrmthXEFu2bMHUqVMxcOBA4QyKqqoqhg0bhjVr1gAoPs+0fft2heZYvXo1Zs6ciaCgINF695ZYtWoVJBIJPDw8yqw8y0NCQgLc3NyQkZGBunXrYv/+/ejWrRtyc3MhlUqxZs0aHDx4ULj5oijnz5/HhAkTcPXqVejr66N169ZCn9i3b9+iQYMGCAoK4vJhDwD69OkDLy8vrF69WuiJeu3aNfj4+Ci8ejVQfJZPXV0dW7ZsAQC8f/8ezZo1Q35+PkxMTLBmzRocPXoUPXr0UHiWN2/eCGfqAcjd8CgqKpJ5nJcRI0Zg7969mDt3LvexS3Tu3BmXLl1CrVq1RMsAFLf6SUlJwZ49e5CUlAQA+OWXXzB48GCuFb7t7OyQnJyMDRs2QE9PDx8+fEDfvn0xfvx4mJiYcMtRQlnacjElO+8vptJHAN3d3TFz5kzcunVLOC5x9epV/P7771xaeQ4bNkzu2pAhQxQ+bllK6gmU3g5f0oKPV/vOr0VHR8PX1xe3b9/GhAkT4Ovry+X4V4kNGzbA3d0dtWrVkjk3bWdnh927d3PJ0Lhx4+/eYs/rXLmOjo5wpt3ExARpaWlo0KABACj0KGtp1atXR05ODiwsLGBubo6rV6+iYcOGSE9PL7dtpCLNnj0bv/32G3bt2sW9u9bz589lOqzUrVsXGhoaePHihWifDdLT00UZF6Az9hXOhw8fhB6bVlZW0NXV5Tr+q1evMGDAAERFRUFbW1vurjivFZzS8vLyhLOEtWvX5taaCgC6d+8OVVVV+Pr6YteuXTh+/Di6du2Kbdu2ASheRbh16xauXr2q0Bzu7u7o2LFjuee0161bhwsXLnA7N52Xl4fp06cjJCQEX758AVB8I2r48OFYuXKlzGqOItSrVw8bNmyAi4sLAGDjxo1YunQp7t+/DwMDA8ycORPXr1/HhQsXFJoDKH6TWr58ebmFrMLDw/Hbb78hNTVV4VlKmzx5MsLCwuDg4AAHBwe532UeBYSCgoKwYMECDB48GE2bNpX7uXB3d1d4BvJjUKbz/mL63vOuYk1mxfJ3xSV5LkTcv38fM2fOxKlTp+Dh4YEFCxaI1hKRMYZz584JNyxtbGy47uArfYMpPz8fmzZtgq2trUyxx8TERIwbNw7Lli3jkql3795wdXXFyJEjMX36dBw9ehSenp44dOgQjIyMcO7cOYVnGDFiBGrWrIn58+dj48aN8PHxQevWrXHz5k307duXWx2GEo0bN0Zqaiq+fPkCCwsLufdiRd50UVFRQWZmpkyBZ319fcTFxcHS0lJh4yormtgTrpydnfH06VMMHz68zOJ5Zd3BV5SwsDA0a9ZMruBVfn4+wsPDuWzxrVKlCs6fPw8HBwd8+PAB+vr6uHHjhlD5PSkpCS1atFB4kRoLCwucOnVK7u+iRFJSElxcXPD06VOF5vhabm6uzE0XRU/oS+jo6ODevXvCm0Lfvn1hZmaGdevWASj+4NWhQwe8fPlS4VkmT56Mc+fO4datW3KV70uOazg7O3OtAg8AHTt2LPcxiUTCpYDQtyYpPCcm58+fx6FDh/D48WNIJBJYWVmhX79+XHtfv3v3Tuh4cvLkSWEXElD8wcfV1ZVblrLk5+fLVW4uyctDREQE/P39sXnzZrley4Qog4yMDMybNw+7d+9Gz549sXTp0nLfkyuiESNGwMTEBIsWLZK5Pn/+fGRkZHDpxAIAjx49wocPH+Dg4IDc3FxMmzZNKKobEBDA5SZQUVERioqKhI5O+/fvFzKMHj0a6urqCs9Q2t/t8FFkYWypVAoDAwOZ+cSbN2+gr68v8xmB98KhWJ0TaGJfgdy8ebPc1hi8Wuxoa2sjNjZWZtuMWKRSKXR0dBAaGiqzGpqVlQVTU1MukwKpVIrMzEwYGxsDgEwla55ZNDU1ce/evXKriJac8/748aNCc5Q1blpaGtq1awctLS1hW6SiVa5cGZcvXxa6SJiammLlypUYPHgwgOI3djs7Oy6dE7KystCoUSOoq6tjwoQJQh2Mhw8fYsOGDSgoKMCdO3dQrVo1hWch8saMGYOtW7fCyMgI9erVA2MMKSkpePPmDcaNG4f169crPMPx48cxd+5coWWknp6eTCV+iUSCAwcO4KefflJ4ltJyc3Mxc+ZMhIeHl1mRn+eKsJGREfLy8lBQUCDqeX+i3O7fv1/mZyQeu3+0tbUhkUgwYcIE4ShcWXhkKSoqQmhoqMwNS0tLS/z0008YOnSoKO0ADQwMcPPmTbnjNCkpKXB0dMTbt28VnqGwsBDR0dFwcHCAoaGhwscrz9OnT1GzZk25fwfGGDIyMmBubi5SMv527tz5Xc/juXAoZucEOmNfQezfvx8eHh7o2rUrzpw5AxcXFyQnJyMrKwt9+vThlqN+/frcJ4ffsmDBAgwdOhQJCQnw8/MTJcPXL8xivGHWqFHjmxP7+Ph4rmd0s7OzMWDAAFy4cAESiQQpKSmwsrLC8OHDYWRkhNWrVyt0/EaNGmHXrl1YtmwZLl++jKysLHTq1El4PC0tTSgmpGjVqlVDTEwMxo4dC19fX+H8nEQiQZcuXbBp0yaa1Ivk8OHD2LFjB0JCQjBs2DDhd7fkQ/HYsWPRpUsXhX8Q37p1KyZOnChzLTU1VbhB6O/vj5CQEO4T+xkzZuDChQvYvHkzhg4dio0bN+LZs2fYsmULtzomJZTlvL+yuXHjBi5cuICXL1+iqKhI5jFe/biVwaNHj9CnTx8kJCQIZ+uBf78f87gJlZ+fDwBYuXKl0Lv9azx2IjHG4O7ujpMnT6Jhw4awt7cHYwwPHjwQtpwfOXJEoRnKoqWlhejoaLmJfXR0tNxuNkVRUVGBi4sLHjx4IOrE3tLSEi9evBAWhUrk5OTA0tJSlGM0b968wcGDB5GWlgYfHx9UqlQJt2/fRrVq1VCjRg2Fjctzwv69Zs2ahenTp2PBggXQ09PDH3/8AWNjYwwePBjdunVT7OAKrblPlIa9vT3bsGEDY+zfrTGKiorYyJEjhbYdPJw+fZq1atWKXbhwgf3111/s7du3Ml88SSQSlpWVxWJjY1n16tVZv379WF5eHsvMzOTWUkYikbAePXqwPn36sD59+jBVVVXm4uIifN+jRw8uWSZMmMDs7Oxk2nWVyMvLY3Z2dmzixIkKz1Fi6NChrGvXriwjI0OmlcupU6eYra2twse/ePEi09LSYlZWVkxLS4t5e3vLPD527Fjm4eGh8Bxfy87OZteuXWPXrl1j2dnZ3Mf/2o0bN5iPjw/7+eefhZ/Zki9FysvLYxEREcL3vr6+bOrUqcLX9OnTy/xZ/qe5ubkxX1/fch+fMWMGc3d3V3iOWrVqsaSkJOH7r1sixsfHs6pVqyo8x9dq1qwptFnV09MTWquFhYWx7t27c89DZC1ZsoRJJBJWv3591r59e9ahQwfhq2PHjmLH46pnz56sV69e7NWrV0xXV5fdv3+fXb58mTk5ObGoqCix43EVEhLC9PT0hPaQpUVGRjI9PT22c+dO7rmWLVvGNDU12cSJE9muXbvYrl272IQJE5i2tjZbtmwZtxxNmzZl586d4zZeWSQSiVyrSMYYe/z4MdPW1uaeJy4ujlWtWpXVqVOHqaqqCu8/s2fPZkOHDuWeR2y6urosNTWVMcaYoaGh0L757t27zMLCQqFj01b8CkJHRweJiYmoVasWKleujIsXL8Le3h4PHjxAp06d8OLFCy45Ss67lLV9iHexHhUVFeGO59OnT+Hu7g6JRIKgoCC0atWKSxYvL6/vet6OHTsUmiMrKwtNmjSBiooKJkyYAGtrawDFZ+s3btyIwsJC4c4rD9WrV8fp06fRsGFDmeMJjx49EuoRKNqDBw9w5swZVK9eHf3795c5q7V161Y4OTmhUaNGCs+hrP5uF5Aif2aDgoJw4sQJREREACjeet6gQQNhe3VSUhJmzJhRbjHIf4qZmRkOHTokdG742rVr19CvXz/8+eefCs2hqamJpKQkoQLwzZs30bBhQ6GgYXp6OurXr8+9e4Kuri7u378Pc3Nzmb+r9PR02Nvbc/k9LovY5/2VRbVq1bBixQp4enqKHUV0pevdGBgY4Pr167C2tsb58+cxbdo04ZhLReDi4oJOnTrB19e3zMeXLl2KS5cucW3lWSI8PBxr167FgwcPABQX85s8eTIGDBjALcOpU6cwa9YsLFq0qMyirYp8Lfn1118BFLdYHTlypEyx58LCQly7dg0qKirc25s6OzujSZMm8Pf3l/nMFhMTg0GDBuHx48dc84itevXquHDhAmxsbGBra4vly5fD3d0dcXFxaN26tULf+2grfgVhZGQk9Lks2XZtb2+PN2/ecDknXOJbVcQTEhK45QAg0xLE3NwcMTExGDx4MLp06cItg6In7N+r9HbvWbNmyWxD7Nq1KzZu3Mh1u3dubm6Z3QlycnK49SW1sbEpt3DRqFGjuGRQZkuXLsWaNWswfvx46OnpYe3atbC0tMTo0aMVfmxjz549mDFjhsy1vXv3ClvPd+/ejY0bNyp8Yv/XX399s1q1mZlZmWfL/2mVKlVCamqqMLF3dHSUeTwlJYV7CyKguPNKeno6zM3NUb9+fYSHh8PJyQkRERHct7Eq03l/ZSGVSr95lrsiKSwsFHqjV6lSBc+fP4e1tTUsLCzw8OFDkdPxFR8fD39//3If7969u1BIlrcBAwZwncSXpaTNbcliUAkeC1QlN5gYY0hISJApkqeuro6GDRti+vTpChu/PDdu3BDaA5dWo0YNZGZmcs8jthYtWuDKlSuwsbFBjx49MG3aNCQkJODQoUMK78xCE/sKol27djh79izs7e3Rv39/TJ48GefPn8fZs2fRuXNnbjnat28v8/379++xb98+bN++Hbdu3cKECRO4ZZk/f75Muz9tbW0cPnwY8+fPR1RUFLccysLCwgInT57E69evkZqaCsYY6taty7Vvbom2bdsiLCxMqH4rkUhQVFQEf3//b1ZjJ/ykpaUJldbV1dWRm5sLiUSCqVOnolOnTgrtg11SzLGEpqamzI4KJycnjB8/XmHjl/j8+bNcm7/SVFVV5VaGFaFdu3ZYt25duW2o1q1bx7VCfwkvLy/ExcWhffv28PX1hZubGzZs2IAvX75wP7+tTOf9lcXUqVOxceNGqj8AwM7OTmiP1bx5c/j7+0NdXR1bt24VbhhWFDk5Od+8kV+tWjW8fv2aYyJZnz9/LrMmBK+CcTza3P7d2F5eXli7dq3S7DTS0NDAu3fv5K4nJyfLtKGrKAICAoRV+QULFuDDhw84cOCA0DlBkWgrfgWRk5OD/Px8mJqaChOkktYYc+bM4T55i4qKQnBwMP744w+Ympqib9++6NevH5o1a8Y1B1FO9+7dQ+fOnYXqoe7u7khMTEROTg6io6NRu3ZtsSNWeGZmZvjXv/4Fe3t7ODg4YNasWfjll18QGxuLbt26KbRCsZaWFu7evSscGflaUlISGjVqJBSjUhSpVIpRo0aVubsEAPLy8rBt2zaFrwbfuXMHLVu2hJubG2bMmCHTOWHFihU4ceIEYmJi0KRJE4XmKFFUVISVK1fi2LFj+Pz5Mzp37oz58+fj5cuXuHXrFurUqQMHBwcuWUqYm5sjLCwMHTp0gL6+Pm7fvo06depg165d2LdvH06ePMk1jzIoKiqCq6srkpOTYWtrK3eTile3HGVw+vRp5Obmom/fvkhNTUXPnj2RnJyMypUr48CBAzLFU//XldUXvDSenYNKS0lJgbe3N2JiYmSui3GUk8gaMWIEsrOzER4ejkqVKiE+Ph4qKiro3bs32rVrx/3mIfuq+GVFQiv2FUTpbZhSqbTcs1OKlJmZidDQUAQHB+Pdu3cYMGAAPn36hCNHjghtxcRQVnsbiUQCNzc30TJVdHZ2dkhOTsb69euhp6eHDx8+oG/fvhg/fjzX6vykfGLuAjIzM8O9e/fKndjHx8d/c4v8P6Vdu3Z/u02Xx0p548aNceDAAYwYMUJuMmZkZIT9+/dzm9QDwJIlS+Dn5wdnZ2doaWlh7dq1ePnyJUJCQrj0eC5LTk6OsPKqr68vtLdr06YNxo4dK0omsU2aNAkXLlxAx44dUbly5Qr5IbhE165dhT/XqVMHSUlJyMnJgZGRUYX7e2GMwdPTs9xjb7xrdZTw9PSEqqoqjh8/DhMTE1H/Xd68eYPg4GDhrH+DBg3g7e0NAwMDbhmUoYV1idWrV+Onn36CsbExPn78iPbt2+PFixdo2bIllixZwi1HWFgYVq5ciZSUFABAvXr14OPjg6FDh3LLABQfTSgqKkLz5s1lrpfUQPj6uNw/iVbs/4eVtS2mPIrezuPm5oaoqCi4uroK7R5UVFSgpqaGuLg4USb2ytDehsgKCQnB4MGDuZ2jJ/89MXcBTZ48GefOncOtW7fk2hx9/PgRjo6OcHZ2xtq1axWWQRnl5eXh9OnTwoeaunXrwsXFRa64k6LVrVsX06dPx+jRowEA586dg6urKz5+/ChzZIInBwcHrF+/Hu3bt4ezszMaNWqEVatWYd26dfD391d4gUNlpKenh/379wtHaohyuXXrljBxtLW15XZzTlmK+n5NR0cHt27dQv369bmO+7WbN2+ia9eu0NLSEgqn3rhxAx8/fsSZM2e4/DuJWbz2W65cuYL4+Hh8+PABTZs25XrUNyAgAHPnzsWECROE2iFXrlzBxo0bsXjxYoXX3CnNyckJM2bMkGsxe+jQIaxYsQLXrl1T2Ng0sf8fJpVK//aOJq8tTKqqqpg0aRLGjh0r04NUzIm9m5sbVFRUsH37dlhaWuL69evIzs7GtGnTsGrVKrRt25Z7poqudKcCADA1NUVMTIxQFEwsYn3AUlYFBQXYu3cvunbtyrWoYomsrCw0atQI6urqmDBhgszW8w0bNqCgoAB37twRJRspPm+ZmpqKmjVrCtc0NTWRmprKZSdFWdasWQMVFRVMmjQJ586dg5ubGxhjwnn/yZMni5JLTBYWFjh9+rToEyUx9e3b92+fo6qqiurVq6NLly5cdvK9fPkSAwcOxMWLF4Uik2/evEHHjh2xf//+CnlmGQCaNWuGNWvWoE2bNqLmaNu2LerUqYNt27ZBVbV443NBQQFGjBiBR48ecanR5ODggNGjRwvFa0vqQ5QUr1VkjZvSYmNjkZ2djZ49ewrXdu7cifnz5yMvLw+9e/fG+vXruSzWWFpaYsGCBfDw8JC5vnPnTvj5+SE9PV3hGUro6uoiPj5erj5Heno6HBwchGLmikBb8f+HfW+BDx7V6K9cuYLg4GA0bdoUNjY2GDp0KAYOHKjwcb8lNjYW58+fR5UqVSCVSiGVStGmTRssW7YMkyZNqlDtbZTF1/cZ379/L1cghyf6gFU2VVVVjBkzRrjZwVvpLg6+vr4yu226dOmCTZs20aReRAUFBXI7KdTU1PDlyxfuWb4+7//8+XPMnz8fSUlJop33VxZ+fn6YP38+duzYUW6diP9137N1uqioCCkpKdi+fTumT5+OhQsXKjTTxIkT8f79eyQmJgqdWe7fv49hw4Zh0qRJ2Ldvn0LHV1YrVqzAjBkzsHTpUtjb28vVhOBVSO7mzZsyk3qg+D1xxowZCt1iXZqYxWtLW7hwITp06CBM7BMSEjBy5EgMGzYMNjY2WLlyJUxNTeHn56fwLC9evECrVq3krrdq1YpbS+8SGhoayMrKkpvYv3jxQubnRiH+08b35H/Du3fv2JYtW1izZs2YVCrlNu6HDx9YcHAwa926NVNTU2NSqZQFBgayd+/ecctQwtDQkD169IgxxpiVlRU7f/48Y4yx1NRUpqWlxT0PYUwikbCsrCzhe11dXZaWliZangEDBjBHR0d2//594VpiYiJzdHRkAwcOFC2XMmjfvj07cuSI2DFYdnY2u3btGrt27RrLzs4WOw5hxb/HPXr0YH369BG+VFVVmYuLi8w1HhYuXMikUilzcXFhvXr1YpqamszLy4vL2MquUaNGTE9Pj+nq6jI7OzvWuHFjmS8iKyIigtWsWVPh4+jr67Pr16/LXb927RozMDBQ+PjKSiKRMIlEwqRSqcxXyTVejI2N2enTp+Wunzp1ihkbG3PJUKNGDRYfH88YY8ze3p7t3buXMcZYTEwM09fX55KBMcaqV6/Obty4IXz/22+/sdatWwvfh4eHMxsbGy5ZGjRowJYsWSJ3fdGiRczOzo5LhhIDBw5k7du3Z2/evBGuvX79mrVv3571799foWPTin0FU1Y1+o0bN3IbX0dHB97e3vD29sbDhw8RHByM5cuXw9fXF126dMGxY8e4ZaH2NspHIpHIHB/5+nveTp06hXPnzsn0s7e1tcXGjRvh4uIiWi5lMG7cOPz666/IyMhA06ZN5c5x81oFrVSpknDOkSiHYcOGyV0bMmSICEmKiylt2rRJ7rz/9u3bRTvvryx69+4tdoQfSps2bbisyBYVFZXZRlNNTU3UHWxiE7PNXGk///wzhg8fjlWrVgkrxNHR0Zg+fTq3najK0sL69evXMrvjLl26hO7duwvfN2vWDBkZGVyyLFiwAD///DOioqKEM/bR0dGIjIxEeHg4lwwlVq1ahXbt2sHCwgKNGzcGANy9exfVqlXDrl27FDo2nbGvAMqqRh8UFCTa2favFRYWIiIiAiEhIVwn9tTeRvlIpVIYGBgIk/k3b95AX19f7gN4SUVrRdPT08Ply5fRqFEjmet37txB+/bt/6MClf9rypoUlRShpNZDRFko43l/Qr6lV69eePPmDfbt2wdTU1MAwLNnzzB48GAYGRnh8OHDIies2D5//gwfHx8EBQWhoKAAjDGoq6tj3LhxWLJkCbS0tBSeQVlaWFtYWGDXrl1o164dPn/+DENDQ0RERAg3FxISEtC+fXtun9lu3bqFNWvWCMcEbWxsMG3aNGFyzVNubi727NmDuLg4aGlpwcHBAb/88kuZN+3+STSx/x+njNXolVlFbW+jLHbu3PldzytrRVAR6ANW+Z48efLNx8VqayYWZWh/dPv2baipqcHe3h4AcPToUezYsQO2trbw8/ODuro6tyzKoqye3Hp6eoiPj4elpaWIyQgpW0ZGBtzd3ZGYmCjckMrIyICdnR2OHTtWoW9IKcPrbIm8vDykpaUBAGrXro3Nmzdj5cqVyMzM5J5FLGPHjkVcXBxWrFiBI0eOYOfOnXj+/LnwXrNnzx4EBgbixo0bIietOGhi/z9OGavRE/KjoA9Y5HsoQ/sjoHjbo6+vL/r164dHjx6hQYMG6NOnD27cuAFXV1cEBgZyyaFMpFIpunfvLlOVOSIiAp06dZI5PsK777MyKCwsxJo1a8rthc1rlY3IY4zh3LlzSEpKAlC88ujs7Mw9x65duxAUFIT09HTExsbCwsICgYGBsLS0RK9evbhmEft19tOnT/Dz88PZs2ehoaEBHx8f9O7dGzt27MCcOXOgoqKC8ePHY+bMmQrL8Pz5cwQEBGDevHlyxQLfvn2LxYsXY/r06dyKx/7111/o27cvrly5Al1dXezcuRN9+vQRHu/cuTNatGjBtZc9AOTn58u9nvEqrlgiLS0NgYGBMh2VJk+ejNq1ayt0XJrY/4+7evUqgoODceDAAZlq9CYmJhV+Yp+fn4/169fjwoULePnypdzZtdu3b4uUjCgTZfmApazu379f5qTA3d1dpET8KUP7I6C4wvft27dRu3ZtrFixAufPn8fp06cRHR2NgQMHcjvrqEyUtSe3Mpg3bx62b9+OadOmYc6cOZg9ezYeP36MI0eOYN68eZg0aZLYEYmINm/ejHnz5mHKlClYsmQJ7t27BysrK4SGhmLnzp3cz7yL/To7c+ZMbNmyBc7OzoiJicGrV6/g5eWFq1ev4rfffkP//v2hoqKi0AzTp0/Hu3fvsHXr1jIfHzNmDAwMDLBixQqF5vja27dvoaurK/f/PycnB7q6ulx2i+Xl5WHGjBkIDw9Hdna23OM8jweePn0a7u7uaNSokcx5/7i4OERERKBLly6KG1yhpfmI0lCmavTKYtCgQaxKlSpszJgxbP78+czPz0/mi5CdO3ey/Px8ueufPn1iO3fuFCGR8khLS2MODg5CReKvKxbzkpqayiZMmMA6d+7MOnfuzCZOnMhSU1O5jc8YY5qamuzBgwdy1xMTE7l22NDT02PJycmMMcacnZ1ZYGAgY4yxJ0+eME1NTW45yI/BysqKHT9+nDFW3IGk5Pdm7dq17JdffhEzmijCwsJYq1atmImJCXv8+DFjjLE1a9Zw7f5RWFjIgoODmaurK2vQoAGzs7Njbm5ubOfOnayoqIhbDsYYs7GxYYcPH2aMyXaoSUhIYJUrV+aahTHxX2ctLS3Z0aNHGWPFfwcSiYR5eXlx/Xdp0KABu3z5crmPR0dHM1tbW255xGZjY8Pmzp3LGGNs3LhxzMbGhh08eJBpaWmxkJAQtmjRImZmZsZ2797NNVejRo3YzJkz5a7PnDlT4R1HaGJfASUlJTEfHx9WvXp1pqmpydzc3MSOJAp9fX125coVsWMQJSaVSmXa75X466+/uE5elVHPnj1Zr1692KtXr5iuri67f/8+u3z5MnNycmJRUVFcMpw6dYqpq6szJycnNnXqVDZ16lTm5OTENDQ02JkzZ7hkYEw52h8xxljHjh2Zh4cHCwsLY2pqaiwlJYUxxtjFixeZhYUFtxzkx6Ctrc2ePHnCGCtuW3Xr1i3GWPFNO54ts5TBpk2bWJUqVdjixYuZlpaWMIndsWMH69ChA5cMRUVFzNXVlUkkEtaoUSM2cOBA9vPPPws3UHv16sUlRwlNTU3hBkfpiX1ycrIoNwrFfp1VU1Njf/75p/C9pqam0HKOl9K/s2V58uQJ09bW5phIXM+fP2f16tVjjDFWs2ZNduHCBcZY8U3ukve/sLAw1r17d665NDQ0hJvspT18+JBpaGgodOyK3eulgrK2toa/vz/+/PNP7Nu3T+w4oqlRowb09PTEjkGUGPv/Fd6/9ueff4pSrEeZxMbGYuHChahSpQqkUimkUinatGmDZcuWcdvC6+vri6lTp+LatWsICAhAQEAArl27hilTpij0nOPXStofHThwABkZGcjIyMD+/fsxYsQI/PLLL9xyBAYG4vbt25gwYQJmz56NOnXqAAAOHjwotGUipISZmRlevHgBoLj415kzZwAUn1suXZOgIli/fj22bduG2bNny2wndnR0REJCApcMoaGhiIqKQmRkJO7cuYN9+/Zh//79iIuLw7lz53D+/HmEhYVxyQIAlpaWuHv3rtz1U6dOybSA5aW819nhw4dzaTNXWFgos6VcVVUVurq6Ch+3NC0tLTx+/Ljcxx8/fsylKr+yGDBgAObMmQOgeNt/SatqfX19oUZImzZtuB2HK1G1atUyf3fu3r0LY2NjhY5NfewrMBUVFfTu3bvC9rJdvXo1Zs6ciaCgoApXwftHwv5/GRCenQoaN24MiUQCiUSCzp07C+f5gOI39/T0dHTr1o1bHmVUWFgo3BirUqUKnj9/Dmtra1hYWODhw4dcMjx48KDM/rTe3t5cC8WtWrUKEokEHh4eKCgoAFBcoHTs2LFYvnw5txwODg5lTkJWrlyp8LOf5MfTp08fREZGonnz5pg4cSKGDBmC4OBgPH36FFOnThU7Hlfp6elltsTS0NBAbm4ulwz79u3Db7/9ho4dO8o91qlTJ/j6+mLPnj3w8PDgkufXX3/F+PHjkZ+fD8YYrl+/jn379mHZsmXYvn07lwylff06y75qM6dojDF4enoKN73y8/MxZswYmSKcgGILcTZv3lxoL1eWsLAwobBgRfDq1SvExsZi6NChsLKyQnp6OszNzVG/fn2Eh4fDyckJERERMDQ05JJn4cKFmD59OkaOHIlRo0bh0aNHwk316OhorFixAr/++qtCM9DEnlRYjo6OyM/Ph5WVFbS1teV6S1JFYHGFhYVh5cqVSElJAQDUq1cPPj4+GDp0qMLHLrnZdffuXXTt2lXmrry6ujpq1aqFfv36KTyHMrOzs0NcXBwsLS3RvHlz+Pv7Q11dHVu3bhXumitayV3x0h0/AD53xUtTV1fH2rVrsWzZMpn2R9ra2twyfIumpqbYEYgSKn3T6eeff4a5uTliY2NRt25duLm5iZiMv5LV6a9v8vNcnY6Pj4e/v3+5j3fv3h3r1q3jkgUARowYAS0tLcyZMwd5eXkYNGgQTE1NsXbtWi4r5F8r73V28+bNsLS0VHibua/b7A4ZMkSh45Vl+vTp6NKlCwwMDODj4yNUv8/KyoK/vz9CQ0OFnTcVwbVr1xATEwOguFBqXFwc2rdvD19fX7i5uWHDhg348uULAgICuORZsGABxowZg7lz50JPTw+rV6/GrFmzAACmpqbw8/NT+I5GqopPKixnZ2c8ffoUw4cPR7Vq1eRWhHn1SifyAgICMHfuXEyYMEGoKHrlyhVs3LgRixcv5raatHPnTvz88880MSrD6dOnkZubi759+yIlJQVubm5ITk5G5cqVsX//fnTu3FnhGRYuXIg1a9bA19e3zLvic+fOVXiGsrx79w7nz5+HtbU11y2r1L6MkP/O9u3b4efnh9WrV2P48OHYvn070tLShNVpHhNZdXV1PHnyBCYmJmU+/vz5c1haWuLTp08Kz/K1vLw8fPjwgesN0xLK0GZOmWzZsgWTJ0/Gly9foK+vD4lEgrdv30JNTQ1r1qzB2LFjxY6oFB4/fozbt2+jTp06cHBw4DKmVCpFZmamzO/J+/fvAYDb0V+a2JMKS1tbG7GxsWjYsKHYUchXLC0tsWDBArkthzt37oSfnx/S09NFSka+JScnB0ZGRtyOTTDGEBgYiNWrV+P58+cAiu+K+/j4YNKkSdxyDBgwAO3atcOECRPw8eNHNGzYEI8fPwZjDPv37+e2u4Pal5H/VEpKSrktX+fNmydSKnHs2bMHfn5+wmqwqakpFixYgOHDh3MZX0VFBZmZmahatWqZj2dlZcHU1JRr2y5loAxt5pTNs2fPEB4ejtTUVDDGUK9ePfz0008wMzMTO1qFJpVKkZWVVe7vMA80sScVVpMmTbBp0ya0aNFC7CjkK5qamrh3755Q/KtESkoK7O3tkZ+fr7CxK1WqhOTkZFSpUuVvJ6kVcQXU29v7u54XEhKi4CSyeN8VL6169eo4ffo0GjZsiL1792L+/PmIi4vDzp07sXXrVty5c4dLjtq1a2PdunVwdXWFnp4e7t69K1y7evUq9u7dyyUH+TFs27YNY8eORZUqVVC9enWZ1zqJRILbt2+LmE48Yq1OS6VSdO/evdzChZ8+fcKpU6cUOrEvqS/zPXj9fFhZWSEwMBDu7u64d+8eHBwc4OnpieDgYK61d4hyio2NRXZ2Nnr27ClcCwsLw/z585Gbm4vevXtj/fr1XAqCSqVSGBgY/O3PpSI/O9IZe1JhLV++HNOmTcOSJUtgb28vd8ZeX19fpGSkTp06CA8Px2+//SZz/cCBA3Lnqf9pa9asESaHPAuw/ShCQ0NhYWGBxo0bQ+z7wp06dcKhQ4dgaGgoM6F/9+4devfujfPnz3PJ8fbtW1SqVAlA8Zncfv36QVtbG66urvDx8eGSAQAyMzNhb28PANDV1cXbt28BAD179hTtWAJRXosXL8aSJUsqzBbmv/PXX3/h8ePHkEgkqFWrFvfxv+f4n6IL55Uuppyfn49NmzbB1tYWLVu2BABcvXoViYmJGDdunEJzlPbnn3+iadOmAIpru2hoaGDq1Kk0qScAio/kdejQQZjYJyQkYPjw4fD09ISNjQ1WrlwpnG/nYcGCBaJ2TaKJPamwSqqaf30WuKTFWUXb7qZMFixYgJ9//hlRUVHCGfvo6GhERkaWWQX9n1Ty4aqgoAASiQRdu3YVCtQQYOzYsdi3bx/S09Ph5eWFIUOGCJNa3i5evCh3jhwo/kB6+fJlbjlq1qyJ2NhYVKpUCadOncL+/fsBAK9fv+Zan6GkfZm5ubnQvqxJkyYVsn0Z+XuvX79G//79xY4husTERIwdOxbR0dEy19u3b4/NmzfD2tqaS44dO3ZwGedb5s+fL/x5xIgRmDRpEhYtWiT3nIyMDG6ZlKHNHFFed+/elfkZ3b9/P5o3b45t27YBKH5/nj9/PreJ/cCBA0WpRVGCJvakwrpw4UK5j/HqW0vK1q9fP1y7dg1r1qzBkSNHAAA2Nja4fv16mS2JFEFVVRVjxozBgwcPuIz3o9i4cSMCAgJw6NAhhISEYNasWXB1dcXw4cPh4uLCZRUlPj5e+PP9+/dlqiEXFhbi1KlTqFGjhsJzlJgyZQoGDx4MXV1dWFhYoEOHDgCAqKgoYQWdB2pfRv4T/fv3x5kzZzBmzBixo4gmMzMT7du3R9WqVREQEID69euDMYb79+9j27ZtaNu2Le7duyfqB3Wx/P7777h586bc9SFDhsDR0ZHbcStlaDNHlNfr169lFl8uXbqE7t27C983a9aM240oZdhFQmfsCfn/3r9/j3379mH79u24desWrdgTdOjQAVOmTJHZnkhkPXnyBKGhoQgLC0NBQQESExMVvpoilUqFN9Cy3sK0tLSwfv36764H8E+4efMmMjIy0KVLF+H//4kTJ2BoaCjsOuEtNja2wrYvI39v2bJlCAgIgKura5nH0SpCscWZM2fi3LlziI6Olttd8/HjR7Rp0wYuLi5YtmyZSAnFU716dSxfvhyenp4y10NDQzFz5kxkZWVxyeHl5fVdz1OGHQ+EPwsLC+zatQvt2rXD58+fYWhoiIiICGE3bkJCAtq3b8+lJlJZVfF5oxV7UuFFRUUhODgYf/zxB0xNTdG3b19s3LhR7FgVmoqKCl68eCH34pidnQ1jY2NuN13GjRuHadOmCWf8vl4h4NVCRZmVTLIZY9z+XdLT08EYg5WVFa5fvy5TgVZdXR3GxsbcqyQ7OjrC0dERQPGugYSEBLRq1QpGRkZcc5TWsmVL4WwsIV/bunUrdHV1cenSJVy6dEnmMYlEUiEm9mfPnoWvr2+ZR2a0tLTg4+MDf3//CjmxnzJlCsaOHYvbt2/DyckJQHHf8JCQEK41O2jCTr6lR48e8PX1xYoVK3DkyBFoa2ujbdu2wuPx8fGoXbs2lyxfdxYRA63YkwopMzMToaGhCA4Oxrt37zBgwAAEBQUhLi4Otra2Yser8Mq76/n8+XPUrl0bHz9+5JbjayWT2Ipch+HTp0/CVvwrV66gZ8+e8PLyQrdu3cr8O/tfN2XKFNjb22P48OEoLCxE+/btERMTA21tbRw/flzYms8DtS8j34MxhqdPn8LY2BhaWlpixxGNoaEhbt68KdeBpURqaiocHR3x5s0bvsGURHh4ONauXSscSbOxscHkyZMxYMAAkZNVbIWFhVizZg3Cw8Px9OlTuVozFaljz19//YW+ffviypUr0NXVxc6dO9GnTx/h8c6dO6NFixZYsmSJiCn5oYk9qXDc3NwQFRUFV1dXDB48GN26dYOKigrU1NRoYi+ydevWAQCmTp2KRYsWyWzpLiwsRFRUFB4/fsytfdiTJ0+++biFhQWXHMpk3Lhx2L9/P2rWrAlvb28MHjwYVapUETXT/fv3y/xw4+7uzmV8MzMzHDlyBI6Ojjhy5AjGjx+PCxcuYNeuXTh//rxcUS5FofZl5HsVFRVBU1MTiYmJCu80oszK2x1WIisrCzVq1EBBQQHnZISUb968edi+fTumTZuGOXPmYPbs2Xj8+DGOHDmCefPmVYjdNl97+/YtdHV15Xbr5eTkQFdXV6YA4/8ymtiTCkdVVRWTJk3C2LFjZT7Q0MRefJaWlgCKJ9RmZmYyL9Dq6uqoVasWFi5ciObNmytk/J07d6JFixbcqiD/iKRSKczNzf+23zGPQkaPHj1Cnz59kJCQIOykAP5dwIbXjgpNTU2kpqbCzMwMo0aNgra2NgIDA5Geno6GDRvi3bt3XHJYWFhg3Lhx1L6MfJcGDRogODgYLVq0EDuKaFRUVJCcnCxznKe0rKws1K9fn/vurF27diEoKAjp6emIjY2FhYUFAgMDYWlpiV69enHN8vnz5zJ3AJmbm3PNQf6tdu3aWLduHVxdXaGnp4e7d+8K165evYq9e/eKHZGIhM7YkwrnypUrCA4ORtOmTWFjY4OhQ4di4MCBYsciKD47DQAdO3bEoUOHuJ9PNjExgYuLCw4cOIAWLVrg2LFj33w+rxVhZeLh4aEUlV8BYPLkybC0tERkZCQsLS1x/fp1ZGdnY9q0aVi1ahW3HNWqVcP9+/dhYmKCU6dOYfPmzQCAvLw8rmf9qX0Z+U8sX74cPj4+2Lx5M+zs7MSOIwrGGOrVq/fNx3m/3m3evBnz5s3DlClTsGTJEuGmgqGhIQIDA7lN7FNSUuDt7Y2YmBiZ6xX9KJoyyMzMFDqu6Orq4u3btwCAnj17cq1/QJQPrdiTCis3NxcHDhxASEgIrl+/jsLCQgQEBMDb2xt6enpixyMiiYuLw9ChQxEfH//N8+L0wUZ8VapUwfnz5+Hg4AADAwNcv34d1tbWOH/+PKZNm8btyIafnx8CAwNhYmKCvLw8JCcnQ0NDAyEhIdi2bRtiY2O55Bg+fDiaNWtWoduXke9nZGSEvLw8FBQUQF1dXe6sfUU4p/t10cDytG/fXsFJ/s3W1hZLly5F7969oaenh7i4OFhZWeHevXvo0KED/vrrLy45WrduDVVVVfj6+sLExETuBkfDhg255CDyrK2tERYWhubNm6NNmzbo2bMnfH19ceDAAUycOBEvX74UOyIRCa3YkwpLR0cH3t7e8Pb2xsOHDxEcHIzly5fD19cXXbp0+dvVWvLP+vXXX7Fo0SLo6Ojg119//eZzAwICFJajYcOGiIqKAqAcFU5J+QoLC4WbcFWqVMHz589hbW0NCwsLPHz4kFsOPz8/2NnZISMjA/379xf6LauoqMDX15dbjjp16mDu3Lm4evVqhW1fRr5fYGCg2BFEx3PC/r3S09PRuHFjuesaGhrIzc3lluPu3bu4desW6tevz21M8n369OmDyMhING/eHBMnTsSQIUMQHByMp0+fYurUqWLHIyKiiT0hKL77WdLSJiIiAiEhIWJHqnDu3LmDL1++AABu375d7vZHHtsiDQ0NFT4G+b+zs7NDXFwcLC0t0bx5c/j7+0NdXR1bt26FlZUV1yw//fST3LVhw4ZxzUDty8h/gvfPJ/k+lpaWuHv3rlxx1lOnTsHGxoZbDltbW267A8h/Zvny5cKff/75Z1hYWCAmJgZ169aFm5ubiMmI2GgrPiGEfENkZCTWrFkj0+5nypQpcHZ2FjkZOX36NHJzc9G3b1+kpqaiZ8+eSE5ORuXKlXHgwAF06tSJW5ZLly5h1apVws+Jra0tfHx8ZPrpEqJs0tLSsGPHDqSlpWHt2rUwNjbGv/71L5ibm6NBgwZix6uQtm/fDj8/P6xevRrDhw/H9u3bkZaWhmXLlmH79u3cagKdP38ec+bMwdKlS8vcAaSvr88lB5EXFRWFVq1aQVVVdn22oKAAMTExaNeunUjJiNhoYk8IUSpfvnyBlpYW7t69K3pBp02bNmHy5Mn46aef0LJlSwDA1atXcfDgQaxZswbjx48XNR+Rl5OTAyMjI64Fr3bv3g0vLy/07dsXrVu3BgBER0fj8OHDCA0NxaBBg7hlIeR7Xbp0Cd27d0fr1q0RFRWFBw8ewMrKCsuXL8fNmzdx8OBBsSNWWHv27IGfnx/S0tIAAKampliwYAGGDx/OLUNJjZmvX0upeJ74ymvTmJ2dDWNjY/q3qcBoYk8IUTpWVlY4fPiw6MV5zMzM4OvriwkTJshc37hxI5YuXYpnz56JlIwoExsbG4waNUrubGNAQAC2bdsmrOIrgrLUpiA/npYtW6J///749ddfZYq0Xb9+HX379sWff/4pdsQKLy8vDx8+fJCbwPHwd4UFlbE+QUUhlUqRlZUl16YxOTkZjo6O3FqsEuVDZ+wJIUpn9uzZ+O2337Br1y5UqlRJtBxv3rxBt27d5K67uLhQr3AReXt7f9fzeNXKePToUZnnGt3d3fHbb78pdOzStSm+1QVAWVoUEuWRkJBQZr9rY2PjCn22uuSGhpmZmchJAG1tbWhra4syNk3clU/fvn0BFL+ee3p6CoVageJisvHx8WjVqpVY8YgSoIk9IUTpbNiwAampqTA1NYWFhQV0dHRkHr99+zaXHO7u7jh8+DB8fHxkrh89ehQ9e/bkkoHICw0NhYWFBRo3bgxl2HRWs2ZNREZGok6dOjLXz507h5o1ayp07AsXLpT5Z0L+jqGhIV68eAFLS0uZ63fu3EGNGjVESiWOoqIiLF68GKtXr8aHDx8AAHp6epg2bRpmz579zdan/4TGjRt/9803Xu9/JfLy8vD06VN8/vxZ5rqDgwPXHAQwMDAAUHwcQk9PT6ZFpbq6Olq0aIGRI0eKFY8oAZrYE0KUTq9evZRihdHW1hZLlizBxYsXZc7YR0dHY9q0aVi3bp3wXKo4zs/YsWOxb98+pKenw8vLC0OGDBF1Z8e0adMwadIk3L17V1gtiY6ORmhoKNauXStaLkK+ZeDAgZg5cyZ+//13SCQSFBUVITo6GtOnT4eHh4fY8biaPXu20PK2pE7GlStX4Ofnh/z8fCxZskSh4/fu3Vv4c35+PjZt2gRbW1uZ953ExESMGzdOoTlKe/XqFby8vPCvf/2rzMfpHDd/O3bsAADUqlUL06dPl1v0IITO2BNCSDm+Xskqj0QiwaNHjxSchpT26dMnHDp0CCEhIYiJiYGrqyuGDx8OFxcXUW4KHT58GKtXr5bpnuDj44NevXopfGxlO5pAfgyfP3/GhAkTEBoaioKCAqiqqqKwsBCDBg1CaGgoVFRUxI7IjampKYKCguDu7i5z/ejRoxg3bhzXeiojRoyAiYkJFi1aJHN9/vz5yMjI4PZ7PHjwYDx58gSBgYHo0KEDDh8+jKysLGFng6urK5cchJDvRxN7QojSsbKywo0bN1C5cmWZ62/evEGTJk1oEk1kPHnyBKGhoQgLC0NBQQESExOhq6vLZeyCggIsXboU3t7eop3JlUql33U04fDhwxxTEWVVVFSElStX4tixY/j8+TMcHBzQr18/fPjwAY0bN0bdunXFjsidpqYm4uPjUa9ePZnrDx8+RKNGjfDx40duWQwMDHDz5k25f4eUlBQ4Ojri7du3XHKYmJjg6NGjcHJygr6+Pm7evIl69erh2LFj8Pf3x5UrV7jkIPKysrIwffp0REZG4uXLl3Kv+7SbouKirfiEEKXz+PHjMt+YPn36JGql5sLCQiQkJMDCwgJGRkai5SCypFIpJBIJGGPcP9CoqqrC399f1K3LynY0gSi3JUuWwM/PD87OztDS0sLevXvBGKvQOzoaNmyIDRs2yByvAorrvfDuzqKlpYXo6Gi5iX10dDQ0NTW55cjNzRWq8RsZGeHVq1eoV68e7O3tuZ/zJ7I8PT3x9OlTzJ07FyYmJkpxdJEoB5rYE0KUxrFjx4Q/nz59WigUAxRPqiMjI797e/w/YcqUKbC3t8fw4cNRWFiIdu3aITY2Ftra2jh+/Dg6dOjALQuRVXor/pUrV9CzZ09s2LAB3bp1U3ihq6917twZly5dQq1atbiOW2Ljxo0ICAgQ/j5mzZol+tEEorzCwsKwadMmjB49GkBxkUdXV1ds376d+++OsvD394erqyvOnTsnnGuPjY1FRkYGTp48yTXLlClTMHbsWNy+fRtOTk4AgGvXriEkJARz587llsPa2hoPHz5ErVq10LBhQ2zZsgW1atVCUFAQTExMuOUg8q5cuYLLly+jUaNGYkchSoa24hNClEbJh8qS1dfS1NTUUKtWLaxevZpbRXozMzMcOXIEjo6OOHLkCMaPH48LFy5g165dOH/+PKKjo7nkILLGjRuH/fv3o2bNmvD29sbgwYNRpUoV0fIEBQVhwYIFGDx4MJo2bSpX0Ojrc7uKJubRBKL8NDQ0kJqaKtOxQVNTE6mpqUrR4k0sz58/x8aNG5GUlASguE7GuHHjYGpqyj1LeHg41q5dK1OzY/LkyRgwYAC3DLt370ZBQQE8PT1x69YtdOvWDTk5OVBXV0doaCh+/vlnblmILFtbW+zZsweNGzcWOwpRMjSxJ4QoHUtLS9y4cUPUyRog+2F31KhR0NbWRmBgINLT09GwYUO8e/dO1HwVlVQqhbm5+d+2iDp06BC3POWRSCTcjwdkZGRgx44dCA0NxefPn5GUlEQTeyJQUVFBZmYmqlatKlzT09NDfHw81x1R5MeSl5eHpKQkmJubi/7eXNGdOXMGq1evFnZREFKCtuITQpROenq63LU3b97A0NCQa45q1arh/v37MDExwalTp7B582YAxR9wKlLFaGXj4eGhVNvLi4qKxI6gVEcTiHJjjMHT0xMaGhrCtfz8fIwZM0ZmtwmvG2NiiY+Ph52dHaRSKeLj47/5XDF6tn/+/BkvX76Ue30xNzdX+NhfvnxB/fr1cfz4cdjY2AAAtLW10aRJE4WPTf7ezz//jLy8PNSuXRva2tpQU1OTeTwnJ0ekZERsNLEnhCidFStWoFatWsJWv/79++OPP/6AiYkJTp48ya2YkZeXFwYMGCAUp3F2dgZQfN6xfv36XDIQeaGhoWJHUCpfH03Yt28fraiRcg0bNkzu2pAhQ0RIIq5GjRohMzMTxsbGaNSoUZlHwAD+u25SUlLg7e2NmJgYmeuMMW5Z1NTUkJ+fr/BxyH8nMDBQ7AhESdFWfEKI0rG0tMSePXvQqlUrnD17FgMGDMCBAwcQHh6Op0+f4syZM9yyHDx4EBkZGejfv79w/nTnzp0wNDTk0qOcKK+PHz8iMjJSqPkwa9YsfPr0SXhcRUUFixYtUngla2U7mkDIj+DJkycwNzeHRCLBkydPvvlcCwsLTqmA1q1bQ1VVFb6+vmVWPOd1Y3vp0qVITk7G9u3boapK64CE/AhoYk8IUTpaWlpITk5GzZo1MXnyZOTn52PLli1ITk5G8+bN8fr1a7EjEoKgoCCcOHECERERAIrPKTdo0ABaWloAgKSkJMyYMQNTp05VaA5PT8/vOpqwY8cOheYg5H/Rx48fhd9pHnR0dHDr1i3Rd4X16dMHkZGR0NXVhb29vVxRULpRqBzy8/Px+fNnmWv6+voipSFio1twhBClY2RkhIyMDNSsWROnTp3C4sWLAYBbn/IePXpg3759Qru95cuXY8yYMcIZ/+zsbLRt2xb3799XeBaivPbs2YMZM2bIXNu7dy+srKwAFFeV3rhxo8In9nQ0gZB/3qdPn7BhwwasXLkSmZmZ3Ma1tbXFX3/9xW288hgaGqJfv35ixyBlyM3NxcyZMxEeHo7s7Gy5x3kXbCXKgyb2hBCl07dvXwwaNAh169ZFdnY2unfvDgC4c+cO6tSpo/DxT58+LbOleunSpRgwYIAwsS8oKMDDhw8VnoMot9TUVNjb2wvfa2pqyhSqc3Jywvjx48WIRgj5Dp8+fYKfnx/Onj0LdXV1zJgxA71798aOHTswe/ZsqKioKPzG3NdWrFiBGTNmYOnSpbC3t5crjMZrNZZ2+CivGTNm4MKFC9i8eTOGDh2KjRs34tmzZ9iyZQuWL18udjwiIprYE0KUzpo1a1CrVi1kZGTA399faNX14sULjBs3TuHjf31CiU4skbK8efNG5gbQq1evZB4vKiqSeZwQolzmzZuHLVu2wNnZGTExMejfvz+8vLxw9epVBAQEoH///tw7oJQUae3cubPMdZ7F84hyi4iIQFhYGDp06AAvLy+0bdsWderUgYWFBfbs2YPBgweLHZGIhCb2hBClo6amhunTp8td571yQsi3mJmZ4d69e7C2ti7z8fj4eKHgIiFE+fz+++8ICwuDu7s77t27BwcHBxQUFCAuLk60lpoXLlwQZdwSaWlpWLJkCUJCQgAUt9f78OGD8LiKigquXLlS7useUbycnBzhyJe+vr7Q3q5NmzYYO3asmNGIyGhiTwhRCseOHUP37t2hpqaGY8eOffO57u7uCs0ikUjkPtQpU990ohx69OiBefPmwdXVVa7y/cePH7FgwQK4urqKlI4Q8nf+/PNPNG3aFABgZ2cHDQ0NTJ06VdTX+/bt24s2NgCsX78e1apVE75//fo15s2bB2NjYwDAgQMHsGbNGgQFBYkVscKzsrJCeno6zM3NUb9+fYSHh8PJyQkRERHCkUFSMVFVfEKIUpBKpUJP4dLnlL/GYyuiVCpF9+7doaGhAaB421unTp2EqsCfPn3CqVOnaEtkBZeVlYVGjRpBXV0dEyZMQL169QAADx8+xIYNG1BQUIA7d+7IfEgmhCgPFRUVZGZmomrVqgCKO1vEx8fD0tJS5GRAXl4enj59Klfx3MHBQaHj2tvbIzg4GE5OTgCK/07i4uKEFeJLly5hxIgRSElJUWgOUr41a9ZARUUFkyZNwrlz5+Dm5gbGGL58+YKAgABMnjxZ7IhEJDSxJ4SQr3h5eX3X86i4EElPT8fYsWNx9uxZoRaDRCJBly5dsGnTJuHDMCFE+fzdTdwSPFu7vXr1Cl5eXvjXv/5V5uOKvqGsp6eHBw8eCMeIpk6dijlz5qBy5coAgCdPnqB+/fr4+PGjQnOQ7/f48WPcvn0bderUUfiNH6LcaGJPCCGE/B/l5OQgNTUVAFCnTh1UqlRJ5ESEkL+jjDdxBw8ejCdPniAwMBAdOnTA4cOHkZWVhcWLF2P16tUKP95jYGCAs2fPCiv2X7t+/TqcnZ3x7t07heYghPzn6Iw9IUSpFBUVITQ0FIcOHcLjx48hkUhgaWmJn376CUOHDqWz7kQpVapUqdwPwoQQ5aSMu67Onz+Po0ePwtHREVKpFBYWFujSpQv09fWxbNkyhU/sGzRogHPnzpX7enb69GnY2dkpNAMpW2xsLLKzs9GzZ0/hWlhYGObPn4/c3Fz07t0b69evF3agkIqn/IOshBDCGWMM7u7uGDFiBJ49ewZ7e3s0aNAAT548gaenJ/r06SN2REIIIURhcnNzhUJ1RkZGQhtNe3t73L59W+Hje3l5YcmSJThx4oTcYxEREVi+fPl373Qg/6yFCxciMTFR+D4hIQHDhw+Hs7MzfH19ERERgWXLlomYkIiNVuwJIUojNDQUUVFRiIyMRMeOHWUeO3/+PHr37o2wsDB4eHiIlJAQQghRHGtrazx8+BC1atVCw4YNsWXLFtSqVQtBQUEwMTFR+PgjR47E+fPn4ebmhvr16wtt7R4+fIiHDx+iX79+GDlypMJzEHl3797FokWLhO/379+P5s2bY9u2bQCAmjVrYv78+fDz8xMpIREbnbEnhCgNFxcXdOrUCb6+vmU+vnTpUly6dAmnT5/mnIwQQghRvN27d6OgoACenp64desWunXrhpycHKirqyM0NBQ///wzlxz79+/H/v37kZycDACoW7cufvnlFwwcOJDL+ESepqYmUlJSULNmTQDFfeu7d++O2bNnAyguomdvb4/379+LGZOIiCb2hBClUb16dZw6dQqNGjUq8/E7d+6ge/fuyMzM5BuMEEIIEUFeXh6SkpJgbm6OKlWqiB2HiMjCwgK7du1Cu3bt8PnzZxgaGiIiIgKdO3cGULw1v3379sjJyRE5KRELnbEnhCiNnJycb/b8rlatGl6/fs0xESHfJy0tDRMnToSzszOcnZ0xadIkpKWliR2LEPID+fLlC2rXro0HDx4I17S1tdGkSROa1BP06NEDvr6+uHz5MmbNmgVtbW20bdtWeDw+Ph61a9cWMSERG03sCSFKo7CwEKqq5Zf+UFFRQUFBAcdEhPy906dPw9bWFtevX4eDgwMcHBxw7do1NGjQAGfPnhU7HiHkB6Gmpob8/HyxYxAltWjRIqiqqqJ9+/bYtm0btm3bBnV1deHxkJAQuLi4iJiQiI224hNClIZUKkX37t3LbdXy6dMnnDp1CoWFhZyTEVK+xo0bo2vXrli+fLnMdV9fX5w5c4ZLJWtCyP+GpUuXIjk5Gdu3b//mjW5Scb19+xa6urpQUVGRuZ6TkwNdXV2ZyT6pWGhiTwhRGt/bQkcZew+TiktTUxMJCQmoW7euzPXk5GQ4ODjQChwh5Lv16dMHkZGR0NXVhb29PXR0dGQeP3TokEjJCCHKjm4FEkKUBk3YyY+oatWquHv3rtzE/u7du0I/akII+R6Ghobo16+f2DFk/PnnnwAAMzMzkZMQQr6FJvaEEELI/8HIkSMxatQoPHr0CK1atQIAREdHY8WKFfj1119FTkcI+ZEoyw3uoqIiLF68GKtXr8aHDx8AAHp6epg2bRpmz54NqZTKdBGibGgrPiGEEPJ/wBhDYGAgVq9ejefPnwMATE1N4ePjg0mTJkEikYickBBC/jOzZs1CcHAwFixYgNatWwMArly5Aj8/P4wcORJLliwROSEh5Gs0sSeEEEL+Ie/fvwdQvLJFCCHfKy0tDUuWLEFISAgAwNzcXFgpB4q7wly5cgXW1tZc8piamiIoKAju7u4y148ePYpx48bh2bNnXHIQQr4f7aMhhBBC/g86deqEN2/eACie0JdM6t+9e4dOnTqJmIwQ8qNYv349qlWrJnz/+vVrzJo1C2vWrMGaNWvQrFkzrFmzhluenJwc1K9fX+56/fr1kZOTwy0HIeT70Rl7Qggh5P/g4sWL+Pz5s9z1/Px8XL58WYREhJAfTWRkJIKDg2Wu9evXD1ZWVgCAWrVqYcSIEdzyNGzYEBs2bMC6detkrm/YsAENGzbkloMQ8v1oYk8IIYT8F+Lj44U/379/H5mZmcL3hYWFOHXqFGrUqCFGNELID+bx48cwNTUVvh8xYgQMDAyE72vVqiVUp+fB398frq6uOHfuHFq2bAkAiI2NRUZGBk6ePMktByHk+9EZe0IIIeS/IJVKhcJ4Zb2VamlpYf369fD29uYdjRDygzEwMMDZs2fh5ORU5uPXr1+Hs7Mz3r17xy3T8+fPsXHjRiQlJQEAbGxsMG7cOJkbEIQQ5UEr9oQQQsh/IT09HYwxWFlZ4fr166hatarwmLq6OoyNjaGioiJiQkLIj6JBgwY4d+5cuRP706dPw87OjmsmU1NTqn5PyA+EJvaEEELIf8HCwgJAcb9nQgj5v/Dy8sKUKVPQsGFDuLq6yjwWERGB5cuXIzAwUKEZ4uPjYWdnB6lUKnPUqCwODg4KzUII+c/RVnxCCCHkH3D//n08ffpUrpDe1+2iCCGkLL/88gsOHDiA+vXrC23tHj58iIcPH6Jfv34IDw9X6PhSqRSZmZkwNjYWjhqVNU2QSCQoLCxUaBZCyH+OJvaEEELI/8GjR4/Qp08fJCQkyHwQLjl/Tx+ACSHfa//+/di/fz+Sk5MBAHXr1sUvv/yCgQMHKnzsJ0+ewNzcHBKJBE+ePPnmc0t2LBFClAdN7AkhhJD/Azc3N6ioqGD79u2wtLTE9evXkZ2djWnTpmHVqlVo27at2BEJIeQf8/HjR2hpaYkdgxDyFanYAQghhJAfWWxsLBYuXIgqVapAKpVCKpWiTZs2WLZsGSZNmiR2PEII+Ud8+vQJq1evhqWlpdhRCCFloIk9IYQQ8n9QWFgIPT09AECVKlXw/PlzAMVbVR8+fChmNEII+Y98+vQJs2bNgqOjI1q1aoUjR44AAHbs2AFLS0sEBgZi6tSp4oYkhJSJquITQggh/wd2dnaIi4uDpaUlmjdvDn9/f6irq2Pr1q2wsrISOx4hhHy3efPmYcuWLXB2dkZMTAz69+8PLy8vXL16FQEBAejfvz+18SRESdHEnhBCCPk/mDNnDnJzcwEACxcuRM+ePdG2bVtUrlwZBw4cEDkdIYR8v99//x1hYWFwd3fHvXv34ODggIKCAsTFxQkFQQkhyomK5xFCCCH/sJycHBgZGdEHYULIf+3PP/8EAJiZmXEbU11dHenp6ahRowYAQEtLC9evX4e9vT23DISQ/w6dsSeEEEL+YZUqVaJJPSHkP1ZUVISFCxfCwMAAFhYWsLCwgKGhIRYtWoSioiKFj19YWAh1dXXhe1VVVejq6ip8XELI/x1txSeEEEL+C97e3t/1vJCQEAUnIYT8r5g9ezaCg4OxfPlytG7dGgBw5coV+Pn5IT8/H0uWLFHo+IwxeHp6QkNDAwCQn5+PMWPGQEdHR+Z5hw4dUmgOQsh/jrbiE0IIIf8FqVQKCwsLNG7cGN96Kz18+DDHVISQH5mpqSmCgoLg7u4uc/3o0aMYN24cnj17ptDxvby8vut5O3bsUGgOQsh/jib2hBBCyH9h/Pjx2LdvHywsLODl5YUhQ4agUqVKYscihPzANDU1ER8fj3r16slcf/jwIRo1aoSPHz+KlIwQouzojD0hhBDyX9i4cSNevHiBGTNmICIiAjVr1sSAAQNw+vTpb67gE0JIeRo2bIgNGzbIXd+wYQMaNmwoQiJCyI+CVuwJIYSQf8CTJ08QGhqKsLAwFBQUIDExkYpOEUL+I5cuXYKrqyvMzc3RsmVLAEBsbCwyMjJw8uRJtG3bVuSEhBBlRSv2hBBCyD9AKpVCIpGAMYbCwkKx4xBCfkDt27dHcnIy+vTpgzdv3uDNmzfo27cvHj58SJN6Qsg30Yo9IYQQ8l/69OkTDh06hJCQEFy5cgU9e/aEl5cXunXrBqmU7p0TQgghhA9qd0cIIYT8F8aNG4f9+/ejZs2a8Pb2xr59+1ClShWxYxFCfjDx8fGws7ODVCpFfHz8N5/r4ODAKRUh5EdDK/aEEELIf0EqlcLc3ByNGzeGRCIp93nU75kQ8i1SqRSZmZkwNjaWOdLzNYlEQsd8CCHlohV7Qggh5L/g4eHxzQk9IYR8j/T0dFStWlX4MyGE/DdoxZ4QQgghhBAl9/HjR2hpaYkdgxCipKiyDyGEEEIIIUrq06dPWL16NSwtLcWOQghRYjSxJ4QQQgghRESfPn3CrFmz4OjoiFatWuHIkSMAgB07dsDS0hKBgYGYOnWquCEJIUqNtuITQgghhBAiopkzZ2LLli1wdnZGTEwMXr16BS8vL1y9ehW//fYb+vfvDxUVFbFjEkKUGBXPI4QQQgghRES///47wsLC4O7ujnv37sHBwQEFBQWIi4ujIp2EkO9CK/aEEEIIIYSISF1dHenp6ahRowYAQEtLC9evX4e9vb3IyQghPwo6Y08IIYQQQoiICgsLoa6uLnyvqqoKXV1dERMRQn40tBWfEEIIIYQQETHG4OnpCQ0NDQBAfn4+xowZAx0dHZnnHTp0SIx4hJAfAE3sCSGEEEIIEdGwYcNkvh8yZIhISQghPyo6Y08IIYQQQgghhPzA6Iw9IYQQQgghhBDyA6OJPSGEEEIIIYQQ8gOjiT0hhBBCCCGEEPIDo4k9IYQQQgghhBDyA6OJPSGEEEJE16FDB0yZMkXsGIQQQsgPiSb2hBBCSAXm6ekJiUQi99WtW7e//W9r1aqFwMBAxYckhBBCyDdRH3tCCCGkguvWrRt27Nghc01DQ0OkNIQQQgj5T9GKPSGEEFLBaWhooHr16jJfRkZGYIzBz88P5ubm0NDQgKmpKSZNmgSgeOv8kydPMHXqVGGVHwCys7Pxyy+/oEaNGtDW1oa9vT327dsnM15ubi48PDygq6sLExMTrF69Wi7T69ev4eHhASMjI2hra6N79+5ISUkRHn/y5Anc3NxgZGQEHR0dNGjQACdPnlTg3xIhhBCivGhiTwghhJAy/fHHH1izZg22bNmClJQUHDlyBPb29gCAQ4cOwczMDAsXLsSLFy/w4sULAEB+fj6aNm2KEydO4N69exg1ahSGDh2K69evC/+7Pj4+uHTpEo4ePYozZ87g4sWLuH37tszYnp6euHnzJo4dO4bY2FgwxtCjRw98+fIFADB+/Hh8+vQJUVFRSEhIwIoVK6Crq8vpb4YQQghRLrQVnxBCCKngjh8/Ljcp/u2336CpqYnq1avD2dkZampqMDc3h5OTEwCgUqVKUFFRgZ6eHqpXry78dzVq1MD06dOF7ydOnIjTp08jPDwcTk5O+PDhA4KDg7F792507twZALBz506YmZkJ/01KSgqOHTuG6OhotGrVCgCwZ88e1KxZE0eOHEH//v3x9OlT9OvXT7jRYGVlpZi/HEIIIeQHQBN7QgghpILr2LEjNm/eLHOtUqVKyM3NRWBgIKysrNCtWzf06NEDbm5uUFUt/+NDYWEhli5divDwcDx79gyfP3/Gp0+foK2tDQBIS0vD58+f0bx5c5mxrK2the8fPHgAVVVVmedUrlwZ1tbWePDgAQBg0qRJGDt2LM6cOQNnZ2f069cPDg4O/8jfByGEEPKjoa34hBBCSAWno6ODOnXqyHxVqlQJNWvWxMOHD7Fp0yZoaWlh3LhxaNeunbAdviwrV67E2rVrMXPmTFy4cAF3795F165d8fnz538084gRI/Do0SMMHToUCQkJcHR0xPr16//RMQghhJAfBU3sCSGEEFIuLS0tuLm5Yd26dbh48SJiY2ORkJAAAFBXV0dhYaHM86Ojo9GrVy8MGTIEDRs2hJWVFZKTk4XHa9euDTU1NVy7dk249vr1a5nn2NjYoKCgQOY52dnZePjwIWxtbYVrNWvWxJgxY3Do0CFMmzYN27Zt+8f//xNCCCE/AtqKTwghhFRwnz59QmZmpsw1VVVVHD9+HIWFhWjevDm0tbWxe/duaGlpwcLCAkBxH/uoqCgMHDgQGhoaqFKlCurWrYuDBw8iJiYGRkZGCAgIQFZWljAh19XVxfDhw+Hj44PKlSvD2NgYs2fPhlT677WGunXrolevXhg5ciS2bNkCPT09+Pr6okaNGujVqxcAYMqUKejevTvq1auH169f48KFC7CxseH0N0YIIYQoF1qxJ4QQQiq4U6dOwcTEROarTZs2MDQ0xLZt29C6dWs4ODjg3LlziIiIQOXKlQEACxcuxOPHj1G7dm1UrVoVADBnzhw0adIEXbt2RYcOHVC9enX07t1bZryVK1eibdu2cHNzg7OzM9q0aYOmTZvKPGfHjh1o2rQpevbsiZYtW4IxhpMnT0JNTQ1A8Vn+8ePHw8bGBt26dUO9evWwadMmxf9lEUIIIUpIwhhjYocghBBCCCGEEELIf4dW7AkhhBBCCCGEkB8YTewJIYQQQgghhJAfGE3sCSGEEEIIIYSQHxhN7AkhhBBCCCGEkB8YTewJIYQQQgghhJAfGE3sCSGEEEIIIYSQHxhN7AkhhBBCCCGEkB8YTewJIYQQQgghhJAfGE3sCSGEEEIIIYSQHxhN7AkhhBBCCCGEkB8YTewJIYQQQgghhJAfGE3sCSGEEEIIIYSQH9j/A8mKQ/UoRYuRAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "plt.figure(figsize=(12, 8))\n",
+ "df_dengue.groupby([\"estado\"])[\"escassez_agua\"].sum().plot(kind='bar')\n",
+ "plt.title(\"Estados do Brasil e o escassez de água\")\n",
+ "plt.xlabel(\"Estados\")\n",
+ "plt.ylabel(\"Frenguência relatada de escassez de água\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "A escassez de água está concentrada na região do sudeste, onde há mais casos, o mau armazenamento e falta de abastecimento do mesmo, acarreta nas condições favoráveis na proliferação da doença."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.4"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/material/base com a analise exploratoria e csv tratado/dengue_brasil.csv b/material/base com a analise exploratoria e csv tratado/dengue_brasil.csv
new file mode 100644
index 0000000..551b18e
--- /dev/null
+++ b/material/base com a analise exploratoria e csv tratado/dengue_brasil.csv
@@ -0,0 +1,127225 @@
+municipio,estado,regiao,bioma,clima_principal,mes,ano,indice_mes,casos_dengue,populacao,densidade_populacao,populacao_urbana,acesso_agua,escassez_agua
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2001,13,267.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2001,13,12.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2001,13,2.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2001,13,93.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2001,13,1.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2001,13,14.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2001,13,271.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2001,13,8.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2001,13,1.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2001,13,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2001,13,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2001,13,1255.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2001,13,24.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2001,13,25.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2001,13,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2001,13,4.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2001,13,1.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2001,13,1.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2001,13,6.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2001,13,6938.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2001,13,5.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2001,13,38.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2001,13,13.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2001,13,1.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2001,13,1.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2001,13,1.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2001,13,770.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2001,13,3.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2001,13,33.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2001,13,4.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2001,13,7.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2001,13,99.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2001,13,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2001,13,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2001,13,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2001,13,9.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2001,13,743.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2001,13,151.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2001,13,11.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2001,13,30.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2001,13,209.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2001,13,21.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2001,13,5.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2001,13,4.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2001,13,6.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2001,13,676.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2001,13,4.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2001,13,1.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2001,13,6.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2001,13,435.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2001,13,40.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2001,13,7.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2001,13,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2001,13,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2001,13,5.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2001,13,2.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2001,13,83.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2001,13,48.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2001,13,71.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2001,13,455.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2001,13,31.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2001,13,331.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2001,13,74.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2001,13,9.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2001,13,0.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2001,13,15.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2001,13,0.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2001,13,91.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2001,13,2.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2001,13,27.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2001,13,12.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2001,13,75.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2001,13,442.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2001,13,42.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2001,13,42.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2001,13,11.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2001,13,11.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2001,13,34.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2001,13,2.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2001,13,2.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2001,13,17.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2001,13,119.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2001,13,37.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2001,13,22.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2001,13,22.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2001,13,38.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2001,13,16.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2001,13,181.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2001,13,56.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2001,13,16.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2001,13,15.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2001,13,2.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2001,13,3.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2001,13,5.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2001,13,19.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2001,13,1.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2001,13,1.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2001,13,31.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2001,13,1.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2001,13,56.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2001,13,19.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2001,13,46.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2001,13,2.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2001,13,0.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2001,13,9.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2001,13,0.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2001,13,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2001,13,1.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2001,13,13.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2001,13,14.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2001,13,16.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2001,13,8.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2001,13,18.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2001,13,6.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2001,13,18.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2001,13,288.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2001,13,18.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2001,13,4.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2001,13,122.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2001,13,45.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2001,13,55.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2001,13,11.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2001,13,76.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2001,13,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2001,13,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2001,13,202.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2001,13,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2001,13,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2001,13,2.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2001,13,1.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2001,13,0.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2001,13,849.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2001,13,3.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,44.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,5.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,17.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,36.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2001,13,3.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2001,13,10.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2001,13,51.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,11.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,28.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,3.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,381.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,84.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,0.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2001,13,9.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2001,13,43.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2001,13,3.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2001,13,51.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2001,13,1213.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2001,13,9.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2001,13,3.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2001,13,5.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2001,13,3.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2001,13,1.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2001,13,0.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2001,13,1.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2001,13,6.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2001,13,1.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2001,13,1.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2001,13,5.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2001,13,1.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2001,13,0.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2001,13,0.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2001,13,0.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2001,13,0.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2001,13,0.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2001,13,12.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2001,13,2.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2001,13,1.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2001,13,1.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2001,13,0.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2001,13,2.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2001,13,0.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2001,13,228.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2001,13,5.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2001,13,55.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2001,13,89.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2001,13,71.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2001,13,128.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2001,13,15.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2001,13,56.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2001,13,6.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2001,13,35.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2001,13,4.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2001,13,4.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2001,13,20.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2001,13,5.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2001,13,37.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2001,13,1.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2001,13,120.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2001,13,20.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2001,13,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2001,13,67.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2001,13,22.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2001,13,0.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2001,13,1.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2001,13,59.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2001,13,0.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2001,13,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2001,13,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2001,13,1.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2001,13,1.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2001,13,13.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2001,13,1.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2001,13,0.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2001,13,19.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2001,13,20.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,3.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,16.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2001,13,2.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2001,13,1.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,4.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,3.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,1.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,18.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2001,13,114.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2001,13,11.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2001,13,17.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2001,13,112.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2001,13,2.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2001,13,18.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2001,13,42.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2001,13,10.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2001,13,91.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2001,13,5.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2001,13,7.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2001,13,1.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2001,13,72.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2001,13,288.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2001,13,59.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2001,13,88.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2001,13,23.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2001,13,132.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2001,13,76.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2001,13,4.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,6.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,2.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,6.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,239.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2001,13,114.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2001,13,16.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2001,13,122.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2001,13,9.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2001,13,30.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2001,13,17.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2001,13,16.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2001,13,9.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,3.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,132.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2001,13,373.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,1.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,1.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,40.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2001,13,5.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,1.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,4.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2001,13,15.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2001,13,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,0.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2001,13,16.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2001,13,275.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,66.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,31.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,2.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,55.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2001,13,1.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,17.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,5.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,47.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2001,13,4.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,1.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2001,13,1.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,38.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,7.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,1.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,5.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,110.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,13.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,1.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,1582.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,233.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,4.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,5.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,0.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,7.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2001,13,2.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2001,13,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,1.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,2.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,1.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,1.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,2.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,0.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,1.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,5.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2001,13,12.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2001,13,6.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,2.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,12.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,8.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,12.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,9.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2001,13,8.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2001,13,2.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2001,13,811.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,10.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2001,13,2.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,7.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2001,13,1.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,32.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,74.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,7.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,2.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2001,13,401.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2001,13,3.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2001,13,0.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2001,13,2.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,3.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,75.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2001,13,22.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2001,13,4.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2001,13,7.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2001,13,13.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2001,13,10.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2001,13,21.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2001,13,2471.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,4.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,2.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2001,13,8.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,69.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,24.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,2.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2001,13,821.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2001,13,80.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2001,13,1.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2001,13,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2001,13,4.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2001,13,53.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2001,13,2.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,12.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,37.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,5.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,1.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2001,13,8.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2001,13,1.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2001,13,1.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2001,13,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2001,13,43.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2001,13,2.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2001,13,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2001,13,1.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2001,13,1.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2001,13,0.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2001,13,2.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,10.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2001,13,1.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,1.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,1.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2001,13,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,4.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,1.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,3.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,1.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,1.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2001,13,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,2.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,1.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2001,13,2.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,10.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,3.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,3.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,6.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,125.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2001,13,10.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2001,13,47.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,1.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,15.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,3.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,2.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,1.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,5.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,2.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,1.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,6.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,11.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,1.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,6.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2001,13,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2001,13,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,1.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2001,13,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2001,13,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,5.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2001,13,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2001,13,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,1.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2001,13,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2001,13,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2001,13,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2001,13,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,1.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,1.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,1.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2001,13,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,2.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2001,13,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2001,13,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2001,13,1.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2001,13,0.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2001,13,67.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2001,13,1.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2001,13,1.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2001,13,194.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2001,13,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2001,13,3.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2001,13,7.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2001,13,2.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2001,13,0.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2001,13,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2001,13,7.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2001,13,1.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2001,13,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,6.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2001,13,5.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2001,13,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,65.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,2.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2001,13,34.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,14.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2001,13,12.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2001,13,0.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,4.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2001,13,5.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,0.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,1.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,1.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2001,13,0.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2001,13,35.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2001,13,3.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2001,13,1.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2001,13,23.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2001,13,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2001,13,17.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2001,13,32.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2001,13,1.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2001,13,7.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2001,13,514.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2001,13,6.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2001,13,57.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2001,13,19.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2001,13,5.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2001,13,15.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2001,13,3.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2001,13,2.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2001,13,3.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2001,13,400.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2001,14,67.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2001,14,20.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2001,14,1.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2001,14,70.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2001,14,4.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2001,14,10.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2001,14,99.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2001,14,4.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2001,14,3.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2001,14,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2001,14,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2001,14,214.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2001,14,24.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2001,14,11.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2001,14,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2001,14,1.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2001,14,3.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2001,14,1.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2001,14,40.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2001,14,6288.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2001,14,10.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2001,14,159.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2001,14,7.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2001,14,2.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2001,14,7.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2001,14,40.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2001,14,342.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2001,14,1.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2001,14,22.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2001,14,2.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2001,14,137.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2001,14,1222.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2001,14,1.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2001,14,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2001,14,1.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2001,14,3.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2001,14,645.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2001,14,122.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2001,14,36.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2001,14,109.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2001,14,244.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2001,14,45.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2001,14,38.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2001,14,4.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2001,14,3.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2001,14,998.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2001,14,3.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2001,14,6.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2001,14,3.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2001,14,116.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2001,14,76.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2001,14,4.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2001,14,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2001,14,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2001,14,17.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2001,14,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2001,14,38.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2001,14,49.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2001,14,59.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2001,14,179.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2001,14,41.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2001,14,241.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2001,14,71.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2001,14,18.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2001,14,1.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2001,14,38.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2001,14,13.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2001,14,70.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2001,14,0.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2001,14,24.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2001,14,1.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2001,14,64.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2001,14,200.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2001,14,11.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2001,14,180.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2001,14,10.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2001,14,15.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2001,14,41.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2001,14,4.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2001,14,0.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2001,14,65.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2001,14,146.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2001,14,16.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2001,14,41.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2001,14,35.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2001,14,97.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2001,14,27.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2001,14,329.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2001,14,171.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2001,14,23.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2001,14,4.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2001,14,35.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2001,14,1.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2001,14,2.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2001,14,3.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2001,14,7.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2001,14,0.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2001,14,160.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2001,14,3.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2001,14,90.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2001,14,26.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2001,14,22.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2001,14,2.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2001,14,0.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2001,14,100.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2001,14,4.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2001,14,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2001,14,1.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2001,14,40.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2001,14,13.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2001,14,54.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2001,14,11.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2001,14,35.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2001,14,17.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2001,14,36.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2001,14,395.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2001,14,30.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2001,14,2.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2001,14,122.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2001,14,8.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2001,14,222.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2001,14,24.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2001,14,126.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2001,14,1.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2001,14,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2001,14,61.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2001,14,2.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2001,14,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2001,14,9.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2001,14,5.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2001,14,4.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2001,14,2009.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2001,14,17.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,18.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,133.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,208.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,107.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2001,14,2.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2001,14,11.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2001,14,78.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,30.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,33.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,8.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,509.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,126.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,4.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2001,14,101.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2001,14,84.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2001,14,9.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2001,14,160.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2001,14,2196.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2001,14,20.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2001,14,0.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2001,14,22.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2001,14,44.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2001,14,25.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2001,14,2.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2001,14,6.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2001,14,7.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2001,14,3.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2001,14,7.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2001,14,153.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2001,14,5.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2001,14,0.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2001,14,0.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2001,14,0.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2001,14,0.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2001,14,1.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2001,14,6.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2001,14,0.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2001,14,1.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2001,14,9.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2001,14,0.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2001,14,132.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2001,14,11.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2001,14,175.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2001,14,63.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2001,14,31.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2001,14,237.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2001,14,23.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2001,14,123.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2001,14,19.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2001,14,17.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2001,14,5.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2001,14,4.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2001,14,33.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2001,14,13.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2001,14,26.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2001,14,3.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2001,14,123.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2001,14,12.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2001,14,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2001,14,24.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2001,14,138.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2001,14,1.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2001,14,0.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2001,14,12.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2001,14,5.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2001,14,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2001,14,0.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2001,14,8.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2001,14,2.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2001,14,1.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2001,14,15.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,15.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2001,14,3.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2001,14,1.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,2.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,2.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,0.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,7.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2001,14,135.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2001,14,1.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2001,14,43.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2001,14,183.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2001,14,36.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2001,14,137.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2001,14,55.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2001,14,2.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2001,14,7.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2001,14,5.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2001,14,31.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2001,14,1.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2001,14,127.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2001,14,578.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2001,14,79.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2001,14,52.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2001,14,100.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2001,14,199.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2001,14,265.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2001,14,1.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,6.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,5.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,34.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,440.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2001,14,44.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2001,14,27.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2001,14,306.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2001,14,21.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2001,14,206.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2001,14,19.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2001,14,25.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2001,14,10.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,15.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,403.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2001,14,244.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,1.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,77.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2001,14,22.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,1.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,1.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2001,14,9.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2001,14,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,4.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2001,14,97.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2001,14,183.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,13.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,74.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,1.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,6.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,112.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2001,14,5.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,393.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,13.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,98.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2001,14,5.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,1.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2001,14,15.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,97.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,18.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,3.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,634.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,230.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,1.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,2.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,1.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,1.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,1266.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,1.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,792.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,36.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,5.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,2.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,97.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2001,14,7.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2001,14,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,1.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,3.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,2.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,1.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,2.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,4.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,0.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,5.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2001,14,208.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2001,14,14.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2001,14,8.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,3.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,16.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,91.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,70.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,16.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2001,14,5.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2001,14,4.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2001,14,945.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,20.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2001,14,2.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,19.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2001,14,5.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,83.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,141.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,9.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,14.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2001,14,407.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2001,14,0.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2001,14,4.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2001,14,1.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,5.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,277.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2001,14,89.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2001,14,2.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2001,14,20.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2001,14,102.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2001,14,19.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,16.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2001,14,29.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2001,14,4851.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,4.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,22.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2001,14,13.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,264.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,29.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,0.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,2.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2001,14,1208.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2001,14,292.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2001,14,20.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2001,14,1.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2001,14,42.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2001,14,252.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2001,14,0.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,99.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,62.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,7.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,2.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2001,14,9.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2001,14,0.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2001,14,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2001,14,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2001,14,546.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2001,14,7.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2001,14,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2001,14,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2001,14,0.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2001,14,1.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2001,14,2.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,5.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2001,14,0.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,7.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,1.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,1.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2001,14,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,4.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2001,14,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,2.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2001,14,1.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,8.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,2.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,2.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,3.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,80.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2001,14,3.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2001,14,127.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,3.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,169.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,1.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,40.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,11.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,17.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,1.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,2.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,3.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,1.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,14.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,2.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,7.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2001,14,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2001,14,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,1.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,1.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2001,14,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2001,14,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2001,14,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2001,14,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2001,14,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2001,14,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2001,14,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2001,14,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2001,14,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,3.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2001,14,1.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2001,14,1.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2001,14,0.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2001,14,2.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2001,14,231.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2001,14,2.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2001,14,13.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2001,14,238.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2001,14,26.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2001,14,4.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2001,14,17.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2001,14,0.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2001,14,2.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2001,14,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2001,14,11.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2001,14,8.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2001,14,1.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,0.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2001,14,8.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,1.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2001,14,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,20.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,6.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2001,14,42.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,8.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2001,14,23.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2001,14,3.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,7.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2001,14,4.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,0.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,0.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,3.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2001,14,0.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2001,14,165.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2001,14,6.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2001,14,2.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2001,14,47.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2001,14,1.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2001,14,18.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2001,14,40.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2001,14,0.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2001,14,7.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2001,14,1146.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2001,14,8.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2001,14,73.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2001,14,18.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2001,14,6.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2001,14,19.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2001,14,2.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2001,14,1.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2001,14,14.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2001,14,220.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2001,15,60.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2001,15,17.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2001,15,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2001,15,30.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2001,15,0.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2001,15,27.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2001,15,38.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2001,15,1.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2001,15,2.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2001,15,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2001,15,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2001,15,97.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2001,15,15.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2001,15,10.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2001,15,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2001,15,1.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2001,15,3.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2001,15,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2001,15,9.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2001,15,2780.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2001,15,3.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2001,15,66.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2001,15,5.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2001,15,9.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2001,15,1.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2001,15,60.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2001,15,128.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2001,15,2.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2001,15,6.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2001,15,1.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2001,15,217.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2001,15,2020.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2001,15,1.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2001,15,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2001,15,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2001,15,11.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2001,15,551.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2001,15,94.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2001,15,18.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2001,15,122.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2001,15,189.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2001,15,18.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2001,15,20.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2001,15,6.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2001,15,2.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2001,15,528.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2001,15,1.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2001,15,7.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2001,15,20.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2001,15,144.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2001,15,61.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2001,15,0.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2001,15,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2001,15,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2001,15,88.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2001,15,1.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2001,15,33.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2001,15,66.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2001,15,30.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2001,15,117.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2001,15,35.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2001,15,248.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2001,15,20.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2001,15,29.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2001,15,1.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2001,15,112.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2001,15,28.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2001,15,15.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2001,15,2.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2001,15,14.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2001,15,5.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2001,15,261.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2001,15,61.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2001,15,18.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2001,15,177.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2001,15,13.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2001,15,62.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2001,15,80.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2001,15,12.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2001,15,50.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2001,15,95.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2001,15,214.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2001,15,11.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2001,15,18.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2001,15,33.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2001,15,211.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2001,15,14.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2001,15,637.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2001,15,118.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2001,15,23.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2001,15,4.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2001,15,63.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2001,15,4.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2001,15,4.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2001,15,15.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2001,15,8.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2001,15,0.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2001,15,80.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2001,15,34.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2001,15,140.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2001,15,131.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2001,15,27.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2001,15,6.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2001,15,2.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2001,15,119.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2001,15,9.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2001,15,4.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2001,15,44.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2001,15,14.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2001,15,10.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2001,15,106.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2001,15,21.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2001,15,158.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2001,15,14.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2001,15,127.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2001,15,1385.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2001,15,124.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2001,15,14.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2001,15,116.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2001,15,8.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2001,15,171.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2001,15,62.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2001,15,87.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2001,15,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2001,15,2.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2001,15,159.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2001,15,1.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2001,15,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2001,15,32.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2001,15,7.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2001,15,151.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2001,15,1733.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2001,15,45.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,76.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,258.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,483.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,156.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2001,15,2.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2001,15,39.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2001,15,96.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,57.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,167.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,111.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,380.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,174.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,13.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2001,15,133.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2001,15,45.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2001,15,42.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2001,15,722.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2001,15,2960.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2001,15,51.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2001,15,9.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2001,15,221.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2001,15,55.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2001,15,78.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2001,15,21.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2001,15,140.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2001,15,55.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2001,15,8.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2001,15,9.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2001,15,45.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2001,15,9.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2001,15,2.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2001,15,5.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2001,15,1.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2001,15,0.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2001,15,7.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2001,15,18.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2001,15,0.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2001,15,0.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2001,15,0.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2001,15,0.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2001,15,22.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2001,15,0.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2001,15,63.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2001,15,90.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2001,15,203.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2001,15,63.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2001,15,114.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2001,15,176.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2001,15,26.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2001,15,231.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2001,15,11.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2001,15,17.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2001,15,15.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2001,15,7.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2001,15,25.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2001,15,2.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2001,15,38.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2001,15,5.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2001,15,158.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2001,15,14.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2001,15,1.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2001,15,0.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2001,15,652.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2001,15,12.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2001,15,4.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2001,15,2.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2001,15,34.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2001,15,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2001,15,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2001,15,3.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2001,15,1.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2001,15,13.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2001,15,3.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2001,15,2.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2001,15,5.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2001,15,22.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,4.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,43.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2001,15,18.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2001,15,3.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,7.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,9.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,0.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,4.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2001,15,172.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2001,15,8.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2001,15,71.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2001,15,64.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2001,15,138.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2001,15,715.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2001,15,208.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2001,15,3.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2001,15,8.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2001,15,27.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2001,15,52.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2001,15,11.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2001,15,273.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2001,15,225.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2001,15,95.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2001,15,6.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2001,15,305.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2001,15,231.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2001,15,341.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2001,15,37.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,9.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,21.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,369.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,810.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2001,15,33.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2001,15,178.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2001,15,210.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2001,15,10.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2001,15,333.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2001,15,11.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2001,15,64.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2001,15,44.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,136.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,560.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2001,15,180.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,1.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,2.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,80.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2001,15,58.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,2.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,18.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2001,15,28.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,1.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2001,15,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,1.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2001,15,90.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2001,15,60.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,10.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,22.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,5.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,4.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,374.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2001,15,11.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,338.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,78.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,209.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2001,15,5.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,0.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2001,15,72.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,413.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,114.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,1.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,24.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,1896.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,557.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,2.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,2.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,1.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,1.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,286.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,1.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,1701.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,65.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,6.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,11.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,608.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2001,15,41.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,6.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,2.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2001,15,1.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,3.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,12.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,2.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2001,15,1.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,2.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,6.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,4.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,5.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,2.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2001,15,557.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2001,15,33.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2001,15,7.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,3.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,8.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,39.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,41.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,112.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,25.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2001,15,7.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2001,15,2.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2001,15,997.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,44.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2001,15,7.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,64.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2001,15,0.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,349.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,149.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,95.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,39.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2001,15,144.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2001,15,29.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2001,15,8.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2001,15,1.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,20.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,409.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2001,15,115.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2001,15,24.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2001,15,32.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2001,15,273.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2001,15,35.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,36.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2001,15,114.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2001,15,7356.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,16.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,156.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2001,15,40.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,1469.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,203.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,2.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,26.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,5.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2001,15,1358.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2001,15,584.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2001,15,156.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2001,15,1.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2001,15,231.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2001,15,1557.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2001,15,3.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,594.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,226.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,31.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,34.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2001,15,59.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2001,15,80.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2001,15,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2001,15,1.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2001,15,653.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2001,15,17.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2001,15,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2001,15,1.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,1.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2001,15,2.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2001,15,18.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2001,15,13.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,16.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2001,15,3.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,4.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,10.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,32.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,1.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2001,15,1.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,1.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,8.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,2.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2001,15,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,4.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2001,15,4.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,11.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,4.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,8.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,191.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2001,15,3.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2001,15,1272.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,8.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,4.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,3.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,5.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,182.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,77.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,64.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,6.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,111.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,87.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,1.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,1.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,1.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,1.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,34.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,1.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,6.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2001,15,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2001,15,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,1.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,2.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,1.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,1.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,1.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2001,15,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2001,15,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,1.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2001,15,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2001,15,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2001,15,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2001,15,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2001,15,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2001,15,1.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2001,15,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,1.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,1.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2001,15,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2001,15,1.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2001,15,5.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2001,15,6.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2001,15,777.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2001,15,4.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2001,15,43.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2001,15,317.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2001,15,196.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2001,15,14.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2001,15,58.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2001,15,6.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2001,15,0.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2001,15,3.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2001,15,2.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2001,15,27.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2001,15,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,2.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2001,15,32.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2001,15,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,21.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,11.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2001,15,26.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,8.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2001,15,15.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2001,15,2.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,5.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2001,15,3.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,2.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,4.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,4.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2001,15,1.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2001,15,77.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2001,15,3.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2001,15,1.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2001,15,61.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2001,15,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2001,15,26.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2001,15,40.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2001,15,2.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2001,15,10.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2001,15,1774.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2001,15,65.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2001,15,111.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2001,15,47.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2001,15,9.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2001,15,69.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2001,15,2.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2001,15,16.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2001,15,16.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2001,15,209.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2001,16,35.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2001,16,5.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2001,16,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2001,16,5.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2001,16,0.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2001,16,15.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2001,16,19.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2001,16,1.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2001,16,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2001,16,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2001,16,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2001,16,73.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2001,16,5.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2001,16,2.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2001,16,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2001,16,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2001,16,2.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2001,16,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2001,16,4.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2001,16,1129.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2001,16,1.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2001,16,18.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2001,16,2.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2001,16,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2001,16,1.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2001,16,19.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2001,16,86.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2001,16,0.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2001,16,1.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2001,16,1.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2001,16,62.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2001,16,1432.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2001,16,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2001,16,3.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2001,16,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2001,16,7.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2001,16,174.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2001,16,33.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2001,16,4.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2001,16,25.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2001,16,107.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2001,16,8.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2001,16,27.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2001,16,6.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2001,16,1.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2001,16,379.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2001,16,1.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2001,16,6.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2001,16,15.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2001,16,64.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2001,16,63.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2001,16,4.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2001,16,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2001,16,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2001,16,164.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2001,16,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2001,16,31.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2001,16,30.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2001,16,14.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2001,16,41.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2001,16,51.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2001,16,187.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2001,16,30.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2001,16,27.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2001,16,3.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2001,16,134.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2001,16,31.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2001,16,3.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2001,16,2.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2001,16,3.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2001,16,1.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2001,16,42.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2001,16,19.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2001,16,12.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2001,16,41.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2001,16,35.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2001,16,47.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2001,16,157.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2001,16,8.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2001,16,20.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2001,16,42.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2001,16,136.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2001,16,19.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2001,16,4.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2001,16,21.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2001,16,226.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2001,16,21.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2001,16,1031.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2001,16,67.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2001,16,47.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2001,16,4.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2001,16,22.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2001,16,3.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2001,16,12.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2001,16,3.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2001,16,10.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2001,16,7.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2001,16,187.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2001,16,17.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2001,16,201.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2001,16,75.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2001,16,41.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2001,16,33.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2001,16,1.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2001,16,96.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2001,16,0.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2001,16,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2001,16,36.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2001,16,26.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2001,16,10.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2001,16,69.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2001,16,10.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2001,16,84.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2001,16,16.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2001,16,76.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2001,16,2628.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2001,16,105.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2001,16,30.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2001,16,48.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2001,16,23.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2001,16,35.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2001,16,71.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2001,16,119.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2001,16,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2001,16,1.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2001,16,96.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2001,16,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2001,16,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2001,16,10.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2001,16,6.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2001,16,66.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2001,16,679.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2001,16,123.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,105.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,98.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,372.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,141.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2001,16,2.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2001,16,125.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2001,16,87.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,61.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,336.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,138.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,361.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,193.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,17.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2001,16,167.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2001,16,84.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2001,16,50.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2001,16,614.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2001,16,2021.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2001,16,77.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2001,16,281.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2001,16,1043.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2001,16,87.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2001,16,98.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2001,16,133.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2001,16,213.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2001,16,207.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2001,16,101.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2001,16,20.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2001,16,606.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2001,16,6.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2001,16,112.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2001,16,0.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2001,16,2.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2001,16,3.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2001,16,13.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2001,16,50.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2001,16,2.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2001,16,2.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2001,16,1.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2001,16,2.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2001,16,10.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2001,16,0.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2001,16,91.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2001,16,117.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2001,16,241.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2001,16,91.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2001,16,260.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2001,16,104.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2001,16,63.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2001,16,507.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2001,16,52.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2001,16,11.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2001,16,49.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2001,16,0.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2001,16,37.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2001,16,10.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2001,16,40.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2001,16,6.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2001,16,292.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2001,16,33.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2001,16,56.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2001,16,8.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2001,16,226.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2001,16,1.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2001,16,5.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2001,16,1.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2001,16,0.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2001,16,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2001,16,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2001,16,6.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2001,16,0.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2001,16,29.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2001,16,22.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2001,16,2.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2001,16,9.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2001,16,48.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,12.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,34.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2001,16,11.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2001,16,0.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,2.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,3.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,0.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,11.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2001,16,268.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2001,16,6.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2001,16,100.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2001,16,25.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2001,16,36.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2001,16,298.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2001,16,283.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2001,16,5.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2001,16,4.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2001,16,38.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2001,16,41.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2001,16,26.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2001,16,171.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2001,16,397.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2001,16,140.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2001,16,5.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2001,16,290.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2001,16,232.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2001,16,316.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2001,16,48.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,16.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,31.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,135.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,801.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2001,16,29.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2001,16,48.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2001,16,459.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2001,16,8.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2001,16,369.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2001,16,25.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2001,16,111.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2001,16,25.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,125.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,577.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2001,16,311.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,0.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,93.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2001,16,70.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,6.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,68.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2001,16,12.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,15.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2001,16,2.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,6.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2001,16,20.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2001,16,18.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,13.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,17.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,1.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,6.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,546.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2001,16,30.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,53.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,69.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,287.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2001,16,7.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,5.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2001,16,143.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,413.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,321.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,114.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,2810.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,316.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,1.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,3.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,1.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,56.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,1.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,1441.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,72.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,1.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,26.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,608.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2001,16,210.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,45.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2001,16,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,1.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,2.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,40.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,4.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2001,16,2.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,1.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,3.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,7.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,4.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2001,16,176.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2001,16,21.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2001,16,17.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,2.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,3.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,45.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,25.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,100.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,36.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2001,16,8.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2001,16,2.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2001,16,863.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,102.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2001,16,9.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,177.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2001,16,9.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,467.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,89.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,185.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,88.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2001,16,42.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2001,16,31.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2001,16,11.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2001,16,3.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,106.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,767.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2001,16,275.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2001,16,123.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2001,16,77.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2001,16,161.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2001,16,18.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,69.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2001,16,460.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2001,16,13263.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,26.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,348.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2001,16,69.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,4240.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,267.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,6.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,58.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,5.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2001,16,554.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2001,16,416.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2001,16,413.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2001,16,3.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2001,16,416.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2001,16,2967.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2001,16,14.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,1008.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,270.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,129.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,76.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2001,16,84.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2001,16,89.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2001,16,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2001,16,1.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2001,16,182.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2001,16,21.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2001,16,2.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2001,16,1.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,1.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2001,16,1.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2001,16,53.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2001,16,27.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,67.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2001,16,16.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,14.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,159.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,2.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2001,16,1.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,9.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,1.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2001,16,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,91.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2001,16,13.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,27.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,6.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,7.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,257.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2001,16,4.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2001,16,6399.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,5.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,3.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,2.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,69.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,6.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,14.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,70.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,2.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,153.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,2.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,33.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,3.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,4.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,33.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,1.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,1.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2001,16,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2001,16,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,1.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,1.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,1.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,1.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2001,16,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,1.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2001,16,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,1.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2001,16,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,1.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2001,16,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2001,16,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2001,16,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2001,16,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2001,16,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,1.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2001,16,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,3.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2001,16,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2001,16,5.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2001,16,5.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2001,16,14.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2001,16,2617.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2001,16,35.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2001,16,23.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2001,16,136.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2001,16,106.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2001,16,60.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2001,16,154.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2001,16,3.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2001,16,1.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2001,16,1.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2001,16,3.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2001,16,21.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2001,16,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,13.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2001,16,16.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2001,16,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,47.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,7.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2001,16,24.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,13.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2001,16,40.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2001,16,0.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,5.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2001,16,1.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,2.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,2.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,4.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2001,16,1.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2001,16,6.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2001,16,2.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2001,16,2.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2001,16,44.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2001,16,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2001,16,7.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2001,16,18.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2001,16,3.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2001,16,6.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2001,16,1310.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2001,16,87.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2001,16,83.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2001,16,44.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2001,16,14.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2001,16,50.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2001,16,2.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2001,16,8.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2001,16,22.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2001,16,190.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2001,17,62.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2001,17,2.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2001,17,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2001,17,11.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2001,17,1.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2001,17,7.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2001,17,25.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2001,17,1.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2001,17,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2001,17,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2001,17,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2001,17,35.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2001,17,1.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2001,17,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2001,17,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2001,17,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2001,17,0.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2001,17,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2001,17,6.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2001,17,696.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2001,17,3.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2001,17,9.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2001,17,0.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2001,17,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2001,17,1.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2001,17,19.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2001,17,111.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2001,17,3.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2001,17,1.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2001,17,0.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2001,17,30.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2001,17,614.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2001,17,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2001,17,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2001,17,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2001,17,1.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2001,17,83.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2001,17,12.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2001,17,3.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2001,17,19.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2001,17,55.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2001,17,5.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2001,17,29.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2001,17,2.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2001,17,2.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2001,17,127.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2001,17,0.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2001,17,1.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2001,17,5.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2001,17,25.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2001,17,73.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2001,17,21.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2001,17,1.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2001,17,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2001,17,544.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2001,17,1.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2001,17,9.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2001,17,69.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2001,17,8.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2001,17,17.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2001,17,88.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2001,17,176.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2001,17,23.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2001,17,15.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2001,17,0.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2001,17,107.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2001,17,52.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2001,17,6.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2001,17,1.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2001,17,4.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2001,17,3.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2001,17,24.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2001,17,31.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2001,17,32.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2001,17,42.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2001,17,52.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2001,17,49.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2001,17,182.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2001,17,31.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2001,17,9.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2001,17,7.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2001,17,112.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2001,17,14.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2001,17,16.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2001,17,28.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2001,17,175.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2001,17,34.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2001,17,930.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2001,17,83.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2001,17,52.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2001,17,9.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2001,17,8.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2001,17,3.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2001,17,10.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2001,17,5.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2001,17,13.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2001,17,32.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2001,17,331.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2001,17,2.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2001,17,212.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2001,17,57.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2001,17,42.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2001,17,32.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2001,17,5.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2001,17,230.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2001,17,1.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2001,17,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2001,17,54.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2001,17,20.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2001,17,11.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2001,17,59.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2001,17,4.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2001,17,61.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2001,17,16.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2001,17,55.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2001,17,4462.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2001,17,143.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2001,17,40.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2001,17,38.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2001,17,28.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2001,17,76.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2001,17,80.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2001,17,166.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2001,17,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2001,17,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2001,17,51.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2001,17,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2001,17,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2001,17,13.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2001,17,1.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2001,17,3.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2001,17,374.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2001,17,74.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,77.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,81.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,209.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,73.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2001,17,12.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2001,17,169.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2001,17,67.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,34.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,136.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,57.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,224.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,379.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,37.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2001,17,179.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2001,17,235.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2001,17,61.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2001,17,625.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2001,17,3784.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2001,17,231.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2001,17,509.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2001,17,956.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2001,17,351.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2001,17,274.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2001,17,516.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2001,17,189.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2001,17,303.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2001,17,68.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2001,17,37.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2001,17,329.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2001,17,26.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2001,17,389.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2001,17,0.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2001,17,15.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2001,17,44.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2001,17,13.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2001,17,585.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2001,17,1.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2001,17,0.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2001,17,9.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2001,17,6.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2001,17,57.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2001,17,2.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2001,17,40.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2001,17,34.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2001,17,262.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2001,17,104.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2001,17,160.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2001,17,116.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2001,17,49.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2001,17,390.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2001,17,144.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2001,17,35.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2001,17,70.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2001,17,18.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2001,17,72.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2001,17,3.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2001,17,106.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2001,17,5.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2001,17,459.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2001,17,36.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2001,17,188.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2001,17,30.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2001,17,6.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2001,17,3.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2001,17,0.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2001,17,0.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2001,17,5.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2001,17,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2001,17,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2001,17,6.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2001,17,1.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2001,17,39.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2001,17,29.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2001,17,3.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2001,17,1.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2001,17,19.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,14.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,54.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2001,17,4.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2001,17,2.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,9.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,5.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,5.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,47.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2001,17,501.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2001,17,21.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2001,17,111.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2001,17,17.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2001,17,23.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2001,17,83.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2001,17,212.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2001,17,7.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2001,17,2.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2001,17,35.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2001,17,58.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2001,17,14.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2001,17,58.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2001,17,283.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2001,17,237.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2001,17,0.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2001,17,82.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2001,17,281.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2001,17,277.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2001,17,108.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,12.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,73.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,121.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,753.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2001,17,51.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2001,17,15.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2001,17,354.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2001,17,7.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2001,17,115.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2001,17,10.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2001,17,58.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2001,17,128.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,39.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,584.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2001,17,481.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,2.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,140.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2001,17,68.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,1.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,44.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2001,17,36.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2001,17,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,6.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2001,17,5.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2001,17,5.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,15.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,6.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,372.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2001,17,17.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,66.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,64.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,39.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2001,17,4.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,9.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2001,17,58.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,147.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,227.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,97.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1914.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,159.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,3.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,26.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,457.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,57.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,8.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,10.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,290.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2001,17,100.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,38.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2001,17,1.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,24.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,3.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,10.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,1.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,1.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2001,17,20.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2001,17,8.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2001,17,29.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,2.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,3.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,44.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,31.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,46.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,27.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2001,17,8.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2001,17,6.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2001,17,667.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,139.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2001,17,4.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,85.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2001,17,21.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,354.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,33.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,105.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,85.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2001,17,11.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2001,17,57.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2001,17,4.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2001,17,3.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,68.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,608.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2001,17,295.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2001,17,180.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2001,17,221.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2001,17,54.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2001,17,14.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,52.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2001,17,396.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2001,17,11315.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,37.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,167.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2001,17,30.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,3159.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,78.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,9.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,64.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,8.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2001,17,248.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2001,17,152.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2001,17,365.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2001,17,2.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2001,17,142.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2001,17,1648.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2001,17,0.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,580.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,121.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,81.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,56.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2001,17,39.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2001,17,9.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2001,17,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2001,17,2.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2001,17,72.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2001,17,15.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2001,17,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2001,17,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2001,17,5.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2001,17,15.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2001,17,7.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,29.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2001,17,2.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,1.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,4.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,12.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2001,17,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,1.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,2.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,8.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2001,17,2.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,488.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,1.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2001,17,14.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,34.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,3.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,4.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,125.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2001,17,1.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2001,17,10031.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,3.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,2.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,1.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,37.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,4.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,26.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,2.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,35.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,9.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,1.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,1.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,2.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,18.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,2.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2001,17,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2001,17,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,1.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,1.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,1.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,1.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2001,17,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2001,17,1.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2001,17,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2001,17,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2001,17,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2001,17,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2001,17,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2001,17,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,2.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2001,17,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,4.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2001,17,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2001,17,1.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2001,17,4.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2001,17,24.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2001,17,2133.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2001,17,15.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2001,17,22.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2001,17,81.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2001,17,23.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2001,17,39.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2001,17,65.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2001,17,5.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2001,17,1.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2001,17,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2001,17,0.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2001,17,14.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2001,17,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,16.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2001,17,9.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2001,17,2.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,42.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,1.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2001,17,32.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,10.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2001,17,22.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2001,17,2.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,10.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2001,17,28.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,7.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,7.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,1.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2001,17,7.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2001,17,0.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2001,17,3.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2001,17,0.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2001,17,34.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2001,17,1.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2001,17,6.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2001,17,29.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2001,17,0.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2001,17,1.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2001,17,757.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2001,17,7.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2001,17,80.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2001,17,16.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2001,17,1.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2001,17,32.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2001,17,1.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2001,17,14.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2001,17,23.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2001,17,173.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2001,18,35.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2001,18,1.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2001,18,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2001,18,0.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2001,18,0.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2001,18,2.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2001,18,13.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2001,18,0.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2001,18,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2001,18,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2001,18,4.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2001,18,27.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2001,18,1.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2001,18,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2001,18,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2001,18,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2001,18,2.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2001,18,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2001,18,1.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2001,18,309.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2001,18,2.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2001,18,0.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2001,18,4.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2001,18,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2001,18,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2001,18,7.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2001,18,95.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2001,18,2.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2001,18,5.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2001,18,1.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2001,18,17.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2001,18,113.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2001,18,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2001,18,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2001,18,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2001,18,0.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2001,18,33.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2001,18,4.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2001,18,0.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2001,18,16.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2001,18,14.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2001,18,2.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2001,18,5.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2001,18,0.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2001,18,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2001,18,118.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2001,18,3.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2001,18,0.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2001,18,5.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2001,18,14.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2001,18,57.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2001,18,25.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2001,18,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2001,18,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2001,18,417.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2001,18,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2001,18,0.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2001,18,43.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2001,18,3.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2001,18,5.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2001,18,46.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2001,18,83.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2001,18,7.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2001,18,5.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2001,18,1.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2001,18,50.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2001,18,19.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2001,18,2.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2001,18,0.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2001,18,0.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2001,18,2.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2001,18,6.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2001,18,7.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2001,18,9.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2001,18,28.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2001,18,38.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2001,18,56.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2001,18,78.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2001,18,32.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2001,18,25.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2001,18,2.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2001,18,27.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2001,18,8.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2001,18,10.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2001,18,22.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2001,18,134.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2001,18,27.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2001,18,865.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2001,18,79.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2001,18,39.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2001,18,23.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2001,18,1.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2001,18,38.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2001,18,8.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2001,18,0.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2001,18,6.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2001,18,15.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2001,18,169.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2001,18,3.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2001,18,139.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2001,18,62.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2001,18,30.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2001,18,6.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2001,18,0.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2001,18,93.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2001,18,2.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2001,18,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2001,18,60.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2001,18,9.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2001,18,7.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2001,18,60.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2001,18,6.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2001,18,38.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2001,18,8.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2001,18,40.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2001,18,3211.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2001,18,77.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2001,18,145.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2001,18,40.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2001,18,38.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2001,18,54.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2001,18,97.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2001,18,150.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2001,18,2.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2001,18,1.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2001,18,55.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2001,18,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2001,18,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2001,18,35.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2001,18,0.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2001,18,3.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2001,18,27.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2001,18,15.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,11.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,51.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,108.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,30.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2001,18,0.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2001,18,168.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2001,18,7.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,12.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,38.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,28.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,45.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,375.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,22.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2001,18,77.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2001,18,186.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2001,18,65.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2001,18,351.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2001,18,2984.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2001,18,231.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2001,18,294.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2001,18,219.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2001,18,99.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2001,18,89.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2001,18,103.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2001,18,58.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2001,18,151.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2001,18,37.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2001,18,23.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2001,18,159.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2001,18,12.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2001,18,148.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2001,18,3.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2001,18,30.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2001,18,21.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2001,18,13.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2001,18,531.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2001,18,6.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2001,18,9.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2001,18,10.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2001,18,13.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2001,18,94.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2001,18,2.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2001,18,37.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2001,18,7.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2001,18,68.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2001,18,126.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2001,18,76.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2001,18,43.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2001,18,31.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2001,18,174.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2001,18,160.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2001,18,21.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2001,18,16.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2001,18,12.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2001,18,15.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2001,18,4.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2001,18,137.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2001,18,3.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2001,18,473.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2001,18,34.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2001,18,55.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2001,18,3.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2001,18,3.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2001,18,5.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2001,18,4.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2001,18,7.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2001,18,0.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2001,18,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2001,18,3.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2001,18,8.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2001,18,0.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2001,18,42.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2001,18,5.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2001,18,6.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2001,18,7.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2001,18,19.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,8.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,64.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2001,18,1.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2001,18,6.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,9.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,3.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,2.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,58.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2001,18,254.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2001,18,21.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2001,18,78.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2001,18,54.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2001,18,9.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2001,18,18.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2001,18,42.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2001,18,10.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2001,18,13.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2001,18,42.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2001,18,12.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2001,18,5.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2001,18,12.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2001,18,56.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2001,18,132.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2001,18,2.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2001,18,36.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2001,18,139.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2001,18,120.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2001,18,30.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,8.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,41.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,37.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,335.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2001,18,45.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2001,18,11.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2001,18,138.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2001,18,1.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2001,18,45.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2001,18,5.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2001,18,36.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2001,18,84.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,7.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,236.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2001,18,209.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,0.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,52.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2001,18,12.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,1.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,1.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2001,18,12.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2001,18,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,1.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2001,18,0.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2001,18,0.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,3.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,1.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,126.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2001,18,1.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,16.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,9.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,8.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2001,18,1.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,9.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2001,18,21.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,38.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,107.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,57.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,399.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,11.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,3.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,20.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,149.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,18.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,3.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,60.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2001,18,4.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2001,18,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,6.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,3.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2001,18,3.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2001,18,27.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,1.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,122.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,27.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,32.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,13.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2001,18,6.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2001,18,5.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2001,18,289.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,89.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2001,18,1.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,44.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2001,18,15.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,113.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,15.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,37.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,61.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2001,18,4.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2001,18,37.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2001,18,0.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2001,18,2.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,29.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,256.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2001,18,80.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2001,18,66.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2001,18,163.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2001,18,16.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2001,18,1.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,6.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2001,18,65.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2001,18,4997.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,10.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,31.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2001,18,8.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,657.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,12.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,2.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,10.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,2.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2001,18,19.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2001,18,49.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2001,18,69.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2001,18,3.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2001,18,37.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2001,18,382.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2001,18,1.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,88.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,53.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,16.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,8.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2001,18,16.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2001,18,2.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2001,18,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2001,18,1.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2001,18,17.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2001,18,2.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2001,18,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2001,18,2.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2001,18,6.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2001,18,2.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2001,18,4.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,8.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2001,18,0.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,2.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,2.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2001,18,1.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,1.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,0.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,1.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2001,18,1.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,222.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,2.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2001,18,5.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,7.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,3.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,42.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2001,18,0.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2001,18,4026.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,4.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,1.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,2.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,2.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,4.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,7.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,2.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2001,18,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2001,18,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,1.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,2.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,2.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2001,18,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2001,18,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2001,18,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,2.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2001,18,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2001,18,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2001,18,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2001,18,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2001,18,1.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2001,18,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,1.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,1.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2001,18,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2001,18,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2001,18,1.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2001,18,7.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2001,18,189.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2001,18,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2001,18,1.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2001,18,14.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2001,18,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2001,18,7.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2001,18,19.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2001,18,0.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2001,18,0.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2001,18,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2001,18,3.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2001,18,11.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2001,18,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,7.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2001,18,4.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2001,18,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,20.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,2.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2001,18,22.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,4.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2001,18,13.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2001,18,0.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,1.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2001,18,0.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,3.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,4.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,1.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2001,18,1.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2001,18,5.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2001,18,0.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2001,18,2.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2001,18,15.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2001,18,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2001,18,3.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2001,18,10.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2001,18,0.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2001,18,2.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2001,18,385.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2001,18,1.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2001,18,36.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2001,18,7.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2001,18,4.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2001,18,9.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2001,18,4.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2001,18,4.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2001,18,1.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2001,18,92.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2001,19,11.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2001,19,0.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2001,19,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2001,19,1.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2001,19,0.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2001,19,1.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2001,19,13.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2001,19,0.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2001,19,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2001,19,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2001,19,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2001,19,5.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2001,19,2.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2001,19,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2001,19,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2001,19,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2001,19,0.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2001,19,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2001,19,0.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2001,19,121.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2001,19,0.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2001,19,3.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2001,19,2.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2001,19,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2001,19,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2001,19,0.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2001,19,155.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2001,19,0.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2001,19,5.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2001,19,0.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2001,19,7.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2001,19,20.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2001,19,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2001,19,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2001,19,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2001,19,2.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2001,19,28.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2001,19,2.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2001,19,0.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2001,19,17.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2001,19,13.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2001,19,0.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2001,19,4.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2001,19,0.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2001,19,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2001,19,26.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2001,19,2.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2001,19,2.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2001,19,5.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2001,19,15.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2001,19,48.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2001,19,19.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2001,19,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2001,19,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2001,19,461.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2001,19,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2001,19,3.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2001,19,15.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2001,19,1.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2001,19,1.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2001,19,18.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2001,19,29.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2001,19,3.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2001,19,3.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2001,19,0.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2001,19,35.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2001,19,6.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2001,19,3.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2001,19,0.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2001,19,2.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2001,19,0.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2001,19,2.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2001,19,8.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2001,19,7.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2001,19,30.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2001,19,11.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2001,19,48.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2001,19,33.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2001,19,11.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2001,19,2.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2001,19,7.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2001,19,17.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2001,19,1.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2001,19,15.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2001,19,1.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2001,19,197.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2001,19,7.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2001,19,276.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2001,19,52.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2001,19,55.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2001,19,13.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2001,19,0.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2001,19,6.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2001,19,16.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2001,19,0.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2001,19,4.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2001,19,1.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2001,19,110.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2001,19,0.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2001,19,42.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2001,19,91.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2001,19,11.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2001,19,6.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2001,19,0.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2001,19,41.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2001,19,2.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2001,19,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2001,19,43.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2001,19,8.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2001,19,4.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2001,19,37.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2001,19,1.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2001,19,27.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2001,19,3.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2001,19,37.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2001,19,1458.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2001,19,26.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2001,19,104.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2001,19,18.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2001,19,71.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2001,19,22.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2001,19,38.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2001,19,201.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2001,19,2.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2001,19,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2001,19,39.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2001,19,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2001,19,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2001,19,4.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2001,19,0.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2001,19,0.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2001,19,15.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2001,19,3.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,9.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,38.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,51.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,40.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2001,19,26.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2001,19,28.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2001,19,21.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,14.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,29.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,33.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,22.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,162.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,19.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2001,19,69.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2001,19,156.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2001,19,122.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2001,19,368.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2001,19,2362.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2001,19,247.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2001,19,262.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2001,19,23.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2001,19,69.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2001,19,70.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2001,19,65.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2001,19,46.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2001,19,87.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2001,19,84.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2001,19,65.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2001,19,56.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2001,19,16.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2001,19,63.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2001,19,1.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2001,19,15.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2001,19,36.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2001,19,18.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2001,19,285.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2001,19,3.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2001,19,1.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2001,19,11.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2001,19,6.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2001,19,94.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2001,19,2.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2001,19,21.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2001,19,2.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2001,19,45.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2001,19,63.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2001,19,13.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2001,19,15.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2001,19,19.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2001,19,111.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2001,19,61.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2001,19,23.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2001,19,7.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2001,19,16.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2001,19,39.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2001,19,13.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2001,19,97.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2001,19,28.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2001,19,588.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2001,19,31.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2001,19,24.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2001,19,2.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2001,19,1.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2001,19,3.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2001,19,0.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2001,19,1.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2001,19,3.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2001,19,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2001,19,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2001,19,15.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2001,19,0.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2001,19,33.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2001,19,4.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2001,19,18.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2001,19,2.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2001,19,9.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,4.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,41.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2001,19,14.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2001,19,3.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,7.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,2.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,8.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,35.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2001,19,138.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2001,19,6.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2001,19,46.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2001,19,45.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2001,19,0.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2001,19,8.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2001,19,25.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2001,19,6.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2001,19,1.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2001,19,3.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2001,19,11.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2001,19,4.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2001,19,9.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2001,19,29.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2001,19,74.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2001,19,0.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2001,19,14.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2001,19,80.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2001,19,34.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2001,19,13.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,5.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,23.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,19.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,206.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2001,19,31.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2001,19,2.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2001,19,88.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2001,19,1.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2001,19,43.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2001,19,3.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2001,19,33.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2001,19,52.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,12.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,160.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2001,19,50.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,1.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,8.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2001,19,2.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,0.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,3.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2001,19,9.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2001,19,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,2.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2001,19,0.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2001,19,0.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,11.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,0.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,54.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2001,19,0.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,5.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,2.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,4.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2001,19,1.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,7.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2001,19,14.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,10.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,30.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,16.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,78.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,3.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,1.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,1.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,16.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,101.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,3.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,3.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,1.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,13.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2001,19,7.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2001,19,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2001,19,2.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,0.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,2.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,1.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2001,19,0.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2001,19,1.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2001,19,24.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,4.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,155.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,6.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,13.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,14.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2001,19,3.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2001,19,3.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2001,19,165.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,14.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2001,19,3.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,51.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2001,19,9.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,62.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,11.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,25.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,25.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2001,19,1.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2001,19,18.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2001,19,1.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2001,19,1.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,11.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,99.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2001,19,23.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2001,19,15.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2001,19,56.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2001,19,8.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2001,19,2.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,5.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2001,19,11.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2001,19,1644.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,3.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,4.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2001,19,4.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,95.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,11.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2001,19,2.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2001,19,13.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2001,19,12.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2001,19,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2001,19,4.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2001,19,77.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2001,19,1.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,9.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,7.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,6.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2001,19,4.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2001,19,0.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2001,19,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2001,19,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2001,19,9.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2001,19,2.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2001,19,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2001,19,1.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2001,19,3.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2001,19,0.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2001,19,0.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2001,19,1.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2001,19,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,3.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2001,19,3.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,29.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,1.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2001,19,2.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,7.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,0.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,1.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,25.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2001,19,1.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2001,19,653.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,7.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,6.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,1.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,2.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,1.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2001,19,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2001,19,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2001,19,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,1.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2001,19,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2001,19,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2001,19,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2001,19,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2001,19,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2001,19,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2001,19,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,2.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2001,19,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,2.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2001,19,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2001,19,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2001,19,2.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2001,19,1.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2001,19,29.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2001,19,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2001,19,1.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2001,19,7.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2001,19,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2001,19,2.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2001,19,12.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2001,19,3.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2001,19,2.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2001,19,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2001,19,1.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2001,19,3.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2001,19,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,5.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2001,19,2.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2001,19,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,11.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,1.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2001,19,4.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,0.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2001,19,17.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2001,19,0.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,0.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2001,19,3.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,2.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,3.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,0.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2001,19,2.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2001,19,4.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2001,19,0.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2001,19,0.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2001,19,5.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2001,19,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2001,19,3.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2001,19,6.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2001,19,0.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2001,19,3.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2001,19,192.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2001,19,1.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2001,19,32.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2001,19,8.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2001,19,5.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2001,19,4.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2001,19,0.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2001,19,4.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2001,19,0.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2001,19,76.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2001,20,8.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2001,20,0.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2001,20,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2001,20,3.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2001,20,1.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2001,20,0.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2001,20,7.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2001,20,1.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2001,20,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2001,20,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2001,20,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2001,20,8.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2001,20,0.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2001,20,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2001,20,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2001,20,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2001,20,0.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2001,20,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2001,20,0.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2001,20,51.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2001,20,0.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2001,20,4.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2001,20,0.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2001,20,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2001,20,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2001,20,0.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2001,20,248.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2001,20,1.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2001,20,7.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2001,20,1.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2001,20,1.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2001,20,10.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2001,20,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2001,20,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2001,20,1.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2001,20,0.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2001,20,31.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2001,20,2.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2001,20,2.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2001,20,7.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2001,20,21.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2001,20,0.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2001,20,7.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2001,20,1.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2001,20,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2001,20,2.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2001,20,4.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2001,20,9.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2001,20,3.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2001,20,18.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2001,20,16.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2001,20,13.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2001,20,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2001,20,1.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2001,20,730.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2001,20,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2001,20,3.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2001,20,17.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2001,20,2.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2001,20,1.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2001,20,8.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2001,20,25.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2001,20,4.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2001,20,0.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2001,20,1.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2001,20,29.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2001,20,14.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2001,20,2.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2001,20,3.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2001,20,4.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2001,20,0.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2001,20,0.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2001,20,2.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2001,20,5.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2001,20,38.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2001,20,6.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2001,20,21.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2001,20,19.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2001,20,9.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2001,20,0.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2001,20,2.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2001,20,6.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2001,20,1.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2001,20,2.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2001,20,0.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2001,20,167.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2001,20,16.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2001,20,219.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2001,20,37.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2001,20,31.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2001,20,2.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2001,20,0.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2001,20,0.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2001,20,27.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2001,20,1.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2001,20,3.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2001,20,2.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2001,20,62.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2001,20,1.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2001,20,19.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2001,20,93.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2001,20,8.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2001,20,14.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2001,20,2.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2001,20,50.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2001,20,0.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2001,20,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2001,20,29.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2001,20,1.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2001,20,1.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2001,20,15.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2001,20,0.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2001,20,27.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2001,20,4.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2001,20,13.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2001,20,625.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2001,20,21.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2001,20,287.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2001,20,14.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2001,20,79.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2001,20,27.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2001,20,20.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2001,20,242.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2001,20,1.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2001,20,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2001,20,14.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2001,20,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2001,20,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2001,20,9.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2001,20,0.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2001,20,0.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2001,20,19.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2001,20,6.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,14.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,8.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,13.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,28.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2001,20,28.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2001,20,77.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2001,20,80.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,23.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,25.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,26.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,17.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,83.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,12.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2001,20,42.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2001,20,57.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2001,20,35.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2001,20,265.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2001,20,1276.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2001,20,145.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2001,20,271.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2001,20,12.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2001,20,59.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2001,20,21.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2001,20,29.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2001,20,29.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2001,20,70.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2001,20,19.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2001,20,39.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2001,20,22.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2001,20,3.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2001,20,51.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2001,20,0.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2001,20,28.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2001,20,60.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2001,20,3.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2001,20,184.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2001,20,8.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2001,20,0.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2001,20,6.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2001,20,11.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2001,20,90.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2001,20,7.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2001,20,1.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2001,20,0.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2001,20,26.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2001,20,38.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2001,20,5.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2001,20,11.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2001,20,13.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2001,20,106.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2001,20,47.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2001,20,39.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2001,20,11.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2001,20,16.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2001,20,69.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2001,20,29.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2001,20,43.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2001,20,5.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2001,20,356.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2001,20,26.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2001,20,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2001,20,0.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2001,20,0.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2001,20,0.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2001,20,1.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2001,20,3.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2001,20,5.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2001,20,1.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2001,20,1.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2001,20,4.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2001,20,1.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2001,20,49.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2001,20,2.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2001,20,17.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2001,20,0.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2001,20,11.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,5.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,17.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2001,20,14.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2001,20,0.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,17.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,0.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,4.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,15.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2001,20,79.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2001,20,3.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2001,20,43.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2001,20,57.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2001,20,1.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2001,20,9.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2001,20,3.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2001,20,6.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2001,20,2.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2001,20,2.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2001,20,15.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2001,20,0.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2001,20,8.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2001,20,28.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2001,20,49.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2001,20,0.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2001,20,24.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2001,20,52.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2001,20,14.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2001,20,13.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,0.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,17.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,12.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,118.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2001,20,8.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2001,20,9.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2001,20,26.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2001,20,0.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2001,20,19.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2001,20,7.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2001,20,10.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2001,20,41.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,5.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,62.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2001,20,21.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,0.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,5.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2001,20,0.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,0.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2001,20,3.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2001,20,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,0.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2001,20,0.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2001,20,0.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,5.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,1.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,11.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2001,20,0.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,3.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,1.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,0.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2001,20,0.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,3.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2001,20,3.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,12.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,16.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,8.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,26.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,18.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,26.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,6.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,8.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2001,20,3.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2001,20,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,1.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2001,20,5.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,43.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,3.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,14.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,12.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2001,20,2.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2001,20,69.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,9.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,18.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2001,20,5.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,12.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,5.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,12.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,11.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2001,20,1.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2001,20,0.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,2.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,20.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2001,20,5.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2001,20,6.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2001,20,20.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2001,20,3.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,1.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2001,20,13.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2001,20,630.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,5.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2001,20,5.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,48.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,4.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2001,20,0.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2001,20,5.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2001,20,5.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2001,20,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2001,20,0.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2001,20,9.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2001,20,0.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,15.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,6.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,3.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,2.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2001,20,7.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2001,20,0.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2001,20,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2001,20,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2001,20,2.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2001,20,2.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2001,20,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2001,20,2.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2001,20,0.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2001,20,0.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2001,20,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,2.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2001,20,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,11.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2001,20,0.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,5.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,0.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,2.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,14.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2001,20,1.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2001,20,178.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,11.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,1.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,7.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,2.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2001,20,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2001,20,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2001,20,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2001,20,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,1.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2001,20,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2001,20,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2001,20,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2001,20,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2001,20,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2001,20,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2001,20,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,1.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,1.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,2.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2001,20,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2001,20,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2001,20,0.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2001,20,3.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2001,20,24.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2001,20,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2001,20,1.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2001,20,2.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2001,20,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2001,20,2.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2001,20,10.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2001,20,0.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2001,20,5.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2001,20,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2001,20,0.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2001,20,1.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2001,20,1.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,3.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2001,20,3.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2001,20,3.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,11.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,2.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2001,20,4.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,4.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2001,20,11.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2001,20,0.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,4.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2001,20,3.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,1.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,4.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,1.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2001,20,0.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2001,20,1.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2001,20,1.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2001,20,5.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2001,20,2.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2001,20,4.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2001,20,2.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2001,20,117.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2001,20,7.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2001,20,6.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2001,20,1.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2001,20,0.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2001,20,32.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2001,21,1.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2001,21,0.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2001,21,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2001,21,1.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2001,21,0.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2001,21,0.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2001,21,9.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2001,21,0.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2001,21,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2001,21,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2001,21,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2001,21,8.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2001,21,0.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2001,21,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2001,21,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2001,21,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2001,21,2.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2001,21,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2001,21,0.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2001,21,38.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2001,21,0.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2001,21,4.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2001,21,1.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2001,21,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2001,21,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2001,21,6.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2001,21,357.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2001,21,0.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2001,21,17.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2001,21,2.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2001,21,2.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2001,21,50.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2001,21,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2001,21,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2001,21,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2001,21,0.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2001,21,59.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2001,21,26.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2001,21,1.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2001,21,11.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2001,21,21.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2001,21,0.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2001,21,3.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2001,21,0.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2001,21,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2001,21,6.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2001,21,4.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2001,21,8.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2001,21,2.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2001,21,6.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2001,21,46.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2001,21,6.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2001,21,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2001,21,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2001,21,434.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2001,21,2.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2001,21,2.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2001,21,3.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2001,21,1.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2001,21,4.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2001,21,7.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2001,21,17.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2001,21,2.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2001,21,0.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2001,21,0.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2001,21,26.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2001,21,3.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2001,21,0.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2001,21,1.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2001,21,3.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2001,21,0.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2001,21,0.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2001,21,0.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2001,21,6.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2001,21,2.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2001,21,3.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2001,21,5.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2001,21,10.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2001,21,18.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2001,21,1.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2001,21,1.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2001,21,12.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2001,21,2.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2001,21,1.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2001,21,1.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2001,21,90.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2001,21,8.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2001,21,92.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2001,21,7.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2001,21,28.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2001,21,0.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2001,21,0.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2001,21,3.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2001,21,6.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2001,21,1.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2001,21,2.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2001,21,2.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2001,21,4.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2001,21,3.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2001,21,20.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2001,21,66.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2001,21,3.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2001,21,12.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2001,21,1.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2001,21,41.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2001,21,1.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2001,21,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2001,21,14.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2001,21,1.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2001,21,1.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2001,21,12.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2001,21,17.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2001,21,10.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2001,21,3.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2001,21,1.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2001,21,213.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2001,21,6.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2001,21,292.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2001,21,15.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2001,21,17.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2001,21,88.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2001,21,15.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2001,21,249.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2001,21,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2001,21,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2001,21,92.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2001,21,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2001,21,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2001,21,0.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2001,21,0.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2001,21,0.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2001,21,10.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2001,21,15.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,3.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,0.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,28.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,13.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2001,21,5.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2001,21,63.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2001,21,70.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,3.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,18.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,6.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,13.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,23.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,5.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2001,21,54.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2001,21,39.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2001,21,26.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2001,21,95.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2001,21,571.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2001,21,63.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2001,21,138.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2001,21,2.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2001,21,17.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2001,21,35.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2001,21,17.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2001,21,7.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2001,21,34.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2001,21,17.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2001,21,24.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2001,21,35.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2001,21,4.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2001,21,26.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2001,21,4.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2001,21,6.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2001,21,54.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2001,21,7.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2001,21,100.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2001,21,38.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2001,21,0.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2001,21,6.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2001,21,6.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2001,21,65.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2001,21,11.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2001,21,2.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2001,21,0.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2001,21,11.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2001,21,32.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2001,21,4.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2001,21,5.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2001,21,1.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2001,21,58.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2001,21,25.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2001,21,24.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2001,21,12.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2001,21,18.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2001,21,37.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2001,21,8.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2001,21,47.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2001,21,3.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2001,21,193.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2001,21,19.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2001,21,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2001,21,3.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2001,21,0.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2001,21,0.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2001,21,7.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2001,21,4.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2001,21,2.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2001,21,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2001,21,1.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2001,21,9.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2001,21,0.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2001,21,44.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2001,21,2.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2001,21,7.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2001,21,0.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2001,21,14.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,0.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,6.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2001,21,10.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2001,21,7.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,5.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,2.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,2.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,8.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2001,21,30.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2001,21,2.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2001,21,10.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2001,21,1.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2001,21,6.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2001,21,0.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2001,21,1.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2001,21,15.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2001,21,1.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2001,21,0.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2001,21,25.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2001,21,0.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2001,21,9.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2001,21,18.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2001,21,64.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2001,21,0.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2001,21,11.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2001,21,62.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2001,21,17.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2001,21,33.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,1.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,8.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,17.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,127.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2001,21,2.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2001,21,13.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2001,21,27.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2001,21,0.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2001,21,12.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2001,21,1.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2001,21,18.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2001,21,24.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,6.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,51.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2001,21,12.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,0.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,1.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2001,21,0.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,2.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2001,21,10.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2001,21,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,1.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2001,21,0.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2001,21,1.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,1.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,26.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2001,21,0.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,2.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,1.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,1.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2001,21,0.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,6.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2001,21,10.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,6.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,9.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,4.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,39.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,4.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,1.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,31.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,19.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,3.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,4.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,6.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2001,21,2.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2001,21,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,1.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,1.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,1.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2001,21,3.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,21.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,3.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,3.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,7.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2001,21,51.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,4.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2001,21,3.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,8.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2001,21,4.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,2.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,1.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,10.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2001,21,2.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2001,21,0.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,4.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,4.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2001,21,2.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2001,21,4.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2001,21,11.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2001,21,1.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2001,21,373.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,2.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2001,21,6.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,41.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,2.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,2.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,2.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2001,21,1.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2001,21,7.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2001,21,5.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2001,21,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2001,21,2.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2001,21,7.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2001,21,0.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,7.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,7.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,1.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2001,21,6.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2001,21,0.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2001,21,1.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2001,21,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2001,21,2.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2001,21,4.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2001,21,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2001,21,2.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2001,21,0.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2001,21,0.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,1.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2001,21,0.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,1.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2001,21,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,1.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,1.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2001,21,1.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,6.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2001,21,0.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,2.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,2.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,1.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,2.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,3.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2001,21,0.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2001,21,65.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,3.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,2.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,1.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2001,21,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2001,21,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2001,21,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,1.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2001,21,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2001,21,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2001,21,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2001,21,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2001,21,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2001,21,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2001,21,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2001,21,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,1.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2001,21,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2001,21,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2001,21,0.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2001,21,2.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2001,21,20.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2001,21,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2001,21,1.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2001,21,0.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2001,21,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2001,21,8.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2001,21,10.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2001,21,0.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2001,21,0.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2001,21,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2001,21,1.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2001,21,0.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2001,21,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,0.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2001,21,1.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2001,21,2.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,2.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,1.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2001,21,0.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,11.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2001,21,17.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2001,21,5.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,3.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2001,21,0.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,0.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,14.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,1.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2001,21,0.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2001,21,0.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2001,21,1.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2001,21,2.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2001,21,5.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2001,21,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2001,21,1.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2001,21,2.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2001,21,3.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2001,21,4.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2001,21,183.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2001,21,0.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2001,21,6.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2001,21,2.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2001,21,3.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2001,21,3.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2001,21,0.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2001,21,2.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2001,21,1.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2001,21,21.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2001,22,3.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2001,22,0.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2001,22,0.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2001,22,4.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2001,22,0.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2001,22,0.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2001,22,24.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2001,22,1.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2001,22,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2001,22,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2001,22,0.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2001,22,21.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2001,22,1.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2001,22,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2001,22,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2001,22,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2001,22,0.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2001,22,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2001,22,0.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2001,22,30.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2001,22,0.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2001,22,1.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2001,22,0.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2001,22,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2001,22,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2001,22,0.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2001,22,600.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2001,22,3.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2001,22,32.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2001,22,1.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2001,22,0.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2001,22,94.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2001,22,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2001,22,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2001,22,0.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2001,22,0.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2001,22,36.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2001,22,61.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2001,22,2.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2001,22,24.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2001,22,20.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2001,22,0.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2001,22,4.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2001,22,1.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2001,22,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2001,22,6.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2001,22,27.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2001,22,3.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2001,22,11.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2001,22,42.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2001,22,107.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2001,22,0.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2001,22,1.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2001,22,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2001,22,233.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2001,22,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2001,22,4.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2001,22,8.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2001,22,3.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2001,22,26.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2001,22,26.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2001,22,22.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2001,22,8.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2001,22,4.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2001,22,0.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2001,22,11.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2001,22,3.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2001,22,0.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2001,22,1.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2001,22,0.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2001,22,0.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2001,22,0.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2001,22,4.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2001,22,5.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2001,22,17.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2001,22,8.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2001,22,12.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2001,22,11.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2001,22,4.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2001,22,0.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2001,22,1.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2001,22,26.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2001,22,3.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2001,22,14.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2001,22,5.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2001,22,69.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2001,22,6.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2001,22,78.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2001,22,20.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2001,22,31.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2001,22,2.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2001,22,0.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2001,22,0.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2001,22,2.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2001,22,0.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2001,22,0.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2001,22,0.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2001,22,3.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2001,22,0.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2001,22,15.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2001,22,47.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2001,22,1.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2001,22,3.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2001,22,40.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2001,22,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2001,22,14.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2001,22,3.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2001,22,5.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2001,22,0.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2001,22,9.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2001,22,1.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2001,22,119.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2001,22,1.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2001,22,784.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2001,22,13.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2001,22,89.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2001,22,60.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2001,22,11.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2001,22,135.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2001,22,1.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2001,22,12.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2001,22,245.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2001,22,0.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2001,22,0.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2001,22,1.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2001,22,10.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2001,22,7.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,1.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,0.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,36.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,12.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2001,22,5.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2001,22,69.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2001,22,44.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,3.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,12.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,27.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,72.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,8.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,5.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2001,22,45.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2001,22,33.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2001,22,36.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2001,22,54.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2001,22,377.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2001,22,46.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2001,22,73.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2001,22,1.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2001,22,17.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2001,22,27.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2001,22,23.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2001,22,4.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2001,22,16.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2001,22,9.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2001,22,10.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2001,22,40.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2001,22,1.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2001,22,19.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2001,22,2.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2001,22,7.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2001,22,54.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2001,22,9.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2001,22,52.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2001,22,21.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2001,22,2.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2001,22,1.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2001,22,6.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2001,22,31.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2001,22,9.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2001,22,1.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2001,22,0.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2001,22,10.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2001,22,60.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2001,22,3.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2001,22,0.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2001,22,3.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2001,22,30.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2001,22,35.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2001,22,36.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2001,22,1.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2001,22,4.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2001,22,24.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2001,22,19.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2001,22,40.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2001,22,0.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2001,22,222.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2001,22,26.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2001,22,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2001,22,0.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2001,22,2.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2001,22,5.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2001,22,2.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2001,22,0.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2001,22,4.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2001,22,2.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2001,22,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2001,22,2.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2001,22,6.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2001,22,36.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2001,22,9.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2001,22,0.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2001,22,0.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2001,22,24.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,2.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,7.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2001,22,13.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2001,22,2.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,27.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,0.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,3.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,3.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2001,22,16.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2001,22,11.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2001,22,8.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2001,22,4.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2001,22,3.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2001,22,0.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2001,22,2.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2001,22,55.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2001,22,0.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2001,22,23.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2001,22,9.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2001,22,0.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2001,22,15.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2001,22,13.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2001,22,66.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2001,22,2.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2001,22,10.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2001,22,42.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2001,22,9.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2001,22,11.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,3.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,3.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,8.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,107.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2001,22,19.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2001,22,35.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2001,22,6.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2001,22,1.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2001,22,5.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2001,22,7.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2001,22,18.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2001,22,8.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,6.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,57.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2001,22,9.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,1.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,4.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2001,22,1.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,0.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2001,22,4.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,0.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2001,22,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,0.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2001,22,0.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2001,22,0.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,1.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,11.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2001,22,3.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,2.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,4.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,4.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2001,22,0.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,6.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2001,22,6.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,11.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,10.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,6.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,38.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,5.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,1.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,52.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,20.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,2.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,0.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,9.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2001,22,2.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,1.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2001,22,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,5.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,1.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,1.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2001,22,1.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2001,22,0.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2001,22,4.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,1.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,22.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,2.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,3.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2001,22,2.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2001,22,1.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2001,22,52.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,9.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2001,22,4.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,2.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2001,22,3.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,5.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,3.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,2.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,12.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2001,22,2.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2001,22,1.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2001,22,1.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,2.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,4.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2001,22,3.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2001,22,8.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2001,22,10.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2001,22,2.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2001,22,1.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2001,22,565.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,2.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,4.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2001,22,0.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,18.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,1.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2001,22,1.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2001,22,5.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2001,22,0.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2001,22,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2001,22,1.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2001,22,5.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2001,22,0.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,1.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,8.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,9.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,1.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2001,22,3.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2001,22,0.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2001,22,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2001,22,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2001,22,15.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2001,22,2.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2001,22,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2001,22,4.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2001,22,0.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,1.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2001,22,0.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,7.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2001,22,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,1.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2001,22,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,4.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,1.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2001,22,0.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,4.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,3.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2001,22,0.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2001,22,75.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,1.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,5.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,6.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,1.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2001,22,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2001,22,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,1.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,1.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,1.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2001,22,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2001,22,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2001,22,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,1.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2001,22,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2001,22,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2001,22,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2001,22,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2001,22,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2001,22,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,1.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2001,22,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2001,22,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2001,22,0.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2001,22,2.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2001,22,78.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2001,22,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2001,22,0.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2001,22,1.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2001,22,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2001,22,7.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2001,22,7.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2001,22,0.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2001,22,0.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2001,22,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2001,22,1.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2001,22,0.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2001,22,0.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,1.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2001,22,12.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,0.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2001,22,78.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,17.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,3.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2001,22,5.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,9.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2001,22,29.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2001,22,73.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,12.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2001,22,5.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,0.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,16.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,0.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2001,22,1.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2001,22,1.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2001,22,5.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2001,22,22.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2001,22,23.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2001,22,0.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2001,22,2.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2001,22,7.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2001,22,0.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2001,22,3.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2001,22,246.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2001,22,9.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2001,22,20.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2001,22,6.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2001,22,1.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2001,22,1.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2001,22,2.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2001,22,2.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2001,22,3.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2001,22,32.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2001,23,11.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2001,23,0.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2001,23,1.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2001,23,29.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2001,23,1.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2001,23,6.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2001,23,48.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2001,23,8.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2001,23,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2001,23,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2001,23,1.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2001,23,169.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2001,23,2.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2001,23,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2001,23,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2001,23,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2001,23,0.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2001,23,0.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2001,23,0.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2001,23,44.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2001,23,0.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2001,23,0.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2001,23,0.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2001,23,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2001,23,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2001,23,0.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2001,23,438.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2001,23,4.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2001,23,21.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2001,23,2.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2001,23,6.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2001,23,138.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2001,23,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2001,23,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2001,23,1.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2001,23,0.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2001,23,110.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2001,23,58.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2001,23,3.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2001,23,2.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2001,23,72.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2001,23,0.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2001,23,3.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2001,23,0.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2001,23,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2001,23,11.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2001,23,19.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2001,23,5.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2001,23,69.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2001,23,140.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2001,23,123.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2001,23,4.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2001,23,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2001,23,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2001,23,85.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2001,23,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2001,23,30.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2001,23,45.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2001,23,7.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2001,23,153.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2001,23,185.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2001,23,140.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2001,23,16.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2001,23,8.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2001,23,2.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2001,23,4.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2001,23,3.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2001,23,3.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2001,23,5.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2001,23,0.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2001,23,4.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2001,23,4.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2001,23,6.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2001,23,0.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2001,23,10.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2001,23,3.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2001,23,1.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2001,23,14.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2001,23,4.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2001,23,1.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2001,23,7.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2001,23,27.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2001,23,17.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2001,23,14.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2001,23,1.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2001,23,20.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2001,23,17.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2001,23,92.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2001,23,4.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2001,23,27.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2001,23,0.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2001,23,0.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2001,23,0.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2001,23,7.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2001,23,2.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2001,23,0.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2001,23,0.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2001,23,0.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2001,23,0.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2001,23,31.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2001,23,31.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2001,23,1.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2001,23,5.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2001,23,1.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2001,23,16.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2001,23,1.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2001,23,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2001,23,5.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2001,23,3.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2001,23,1.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2001,23,3.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2001,23,1.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2001,23,16.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2001,23,2.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2001,23,4.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2001,23,143.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2001,23,4.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2001,23,444.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2001,23,12.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2001,23,89.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2001,23,83.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2001,23,21.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2001,23,62.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2001,23,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2001,23,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2001,23,236.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2001,23,0.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2001,23,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2001,23,0.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2001,23,0.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2001,23,1.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2001,23,17.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2001,23,8.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,0.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,0.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,6.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,9.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2001,23,29.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2001,23,23.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2001,23,7.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,1.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,24.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,16.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,188.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,30.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,3.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2001,23,36.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2001,23,16.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2001,23,13.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2001,23,42.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2001,23,185.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2001,23,27.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2001,23,72.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2001,23,24.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2001,23,20.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2001,23,15.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2001,23,28.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2001,23,11.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2001,23,8.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2001,23,19.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2001,23,11.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2001,23,86.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2001,23,0.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2001,23,16.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2001,23,1.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2001,23,5.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2001,23,32.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2001,23,3.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2001,23,35.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2001,23,4.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2001,23,0.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2001,23,18.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2001,23,4.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2001,23,10.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2001,23,10.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2001,23,2.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2001,23,0.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2001,23,9.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2001,23,18.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2001,23,5.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2001,23,5.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2001,23,6.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2001,23,35.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2001,23,27.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2001,23,34.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2001,23,7.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2001,23,4.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2001,23,69.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2001,23,44.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2001,23,19.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2001,23,1.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2001,23,327.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2001,23,49.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2001,23,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2001,23,0.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2001,23,1.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2001,23,0.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2001,23,0.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2001,23,1.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2001,23,4.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2001,23,6.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2001,23,0.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2001,23,9.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2001,23,0.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2001,23,26.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2001,23,2.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2001,23,0.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2001,23,0.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2001,23,11.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,10.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,6.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2001,23,6.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2001,23,0.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,10.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,0.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,1.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,5.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2001,23,16.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2001,23,9.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2001,23,21.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2001,23,2.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2001,23,66.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2001,23,0.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2001,23,2.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2001,23,27.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2001,23,0.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2001,23,27.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2001,23,13.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2001,23,1.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2001,23,92.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2001,23,9.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2001,23,72.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2001,23,0.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2001,23,10.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2001,23,33.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2001,23,3.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2001,23,5.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,1.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,1.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,8.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,113.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2001,23,15.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2001,23,71.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2001,23,36.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2001,23,1.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2001,23,20.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2001,23,5.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2001,23,36.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2001,23,8.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,4.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,53.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2001,23,10.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,0.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,6.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2001,23,2.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,0.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2001,23,9.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,4.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2001,23,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,0.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2001,23,1.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2001,23,1.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,0.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,22.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2001,23,0.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,0.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,14.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,7.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2001,23,1.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,6.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2001,23,2.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,5.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,30.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,23.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,46.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,1.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,478.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,36.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,12.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,1.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,0.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,16.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2001,23,0.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2001,23,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,1.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,1.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,1.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2001,23,3.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2001,23,0.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2001,23,2.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,18.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,1.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,4.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,3.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2001,23,3.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2001,23,1.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2001,23,86.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,4.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2001,23,5.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,5.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2001,23,13.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,18.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,35.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,4.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2001,23,4.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2001,23,1.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,2.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,5.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2001,23,9.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2001,23,22.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2001,23,22.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2001,23,5.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2001,23,1.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,1.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2001,23,3.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2001,23,710.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,2.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,5.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2001,23,5.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,15.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,1.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,3.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2001,23,2.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2001,23,3.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2001,23,0.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2001,23,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2001,23,3.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2001,23,3.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2001,23,1.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,1.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,4.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,9.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2001,23,2.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2001,23,0.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2001,23,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2001,23,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2001,23,18.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2001,23,1.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2001,23,0.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2001,23,0.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,2.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2001,23,1.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,2.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2001,23,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,1.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,2.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2001,23,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,10.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2001,23,0.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,0.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,1.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,4.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2001,23,2.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2001,23,52.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,2.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,2.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,2.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,1.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,4.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,1.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,1.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,1.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,6.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2001,23,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2001,23,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,1.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,1.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2001,23,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2001,23,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,1.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,1.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2001,23,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2001,23,0.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2001,23,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2001,23,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2001,23,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2001,23,0.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2001,23,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2001,23,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2001,23,0.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2001,23,3.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2001,23,19.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2001,23,286.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2001,23,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2001,23,1.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2001,23,4.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2001,23,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2001,23,0.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2001,23,3.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2001,23,5.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2001,23,5.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2001,23,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2001,23,11.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2001,23,7.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2001,23,1.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,1.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2001,23,51.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,14.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2001,23,20.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,43.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,20.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2001,23,6.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,22.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2001,23,77.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2001,23,217.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,41.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2001,23,2.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,0.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,32.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,1.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2001,23,0.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2001,23,2.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2001,23,1.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2001,23,20.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2001,23,100.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2001,23,1.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2001,23,5.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2001,23,23.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2001,23,4.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2001,23,4.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2001,23,526.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2001,23,56.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2001,23,23.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2001,23,11.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2001,23,2.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2001,23,58.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2001,23,2.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2001,23,10.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2001,23,3.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2001,23,40.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2001,24,7.0,426640.0,6.50323368156543,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2001,24,0.0,61321.0,1.50457719668665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2001,24,2.0,143809.0,5.90373428116021,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2001,24,18.0,306896.0,12.24138643909,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2001,24,32.0,74460.0,4.65825035866105,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2001,24,8.0,227135.0,9.25129287623346,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2001,24,39.0,107857.0,4.03745825899881,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2001,24,11.0,59768.0,4.07887076504912,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2001,24,0.0,103208.0,3.23125927009643,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2001,24,0.0,58662.0,1.0965165922561,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2001,24,1.0,39073.0,0.963539342711856,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2001,24,195.0,328893.0,14.7745625202313,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2001,24,0.0,44519.0,2.80313652361949,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2001,24,0.0,75584.0,0.227460718549273,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2001,24,0.0,27909.0,0.384280206355101,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2001,24,0.0,206778.0,0.969593476600173,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2001,24,0.0,115109.0,1.02202962006324,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2001,24,1.0,89176.0,2.23513795006489,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2001,24,0.0,127317.0,1.13578058360487,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2001,24,317.0,1643417.0,39.795508352197,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2001,24,0.0,40307.0,1.2931878823111,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2001,24,5.0,125492.0,4.93065168219343,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2001,24,0.0,211402.0,1.97567825364027,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2001,24,0.0,44363.0,0.698116791020925,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2001,24,0.0,60596.0,0.324182214215929,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2001,24,1.0,132790.0,0.600793301214571,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2001,24,432.0,239904.0,3.53316146546926,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2001,24,0.0,30751.0,1.00054694721817,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2001,24,10.0,31208.0,0.42087260820343,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2001,24,0.0,35374.0,0.687491930982256,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2001,24,4.0,154251.0,0.9790153334479,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2001,24,115.0,435025.0,4.70473894366559,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2001,24,0.0,57383.0,0.635004289339515,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2001,24,0.0,98110.0,2.17480936800752,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2001,24,4.0,169473.0,5.63287667635734,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2001,24,0.0,119646.0,4.13711538338626,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2001,24,203.0,1908700.0,609.585815682021,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2001,24,9.0,232385.0,61.730362292473,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2001,24,1.0,220543.0,37.1525107179252,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2001,24,3.0,334713.0,38.0190527678986,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2001,24,29.0,360154.0,21.6030380434817,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2001,24,0.0,218379.0,9.21310903121407,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2001,24,1.0,370738.0,13.0966019844103,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2001,24,2.0,204574.0,1.07881712493256,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2001,24,0.0,229706.0,1.01569964464595,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2001,24,16.0,261385.0,7.95728721441346,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2001,24,24.0,224216.0,4.63169582539471,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2001,24,5.0,90906.0,0.749831095674914,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2001,24,29.0,160550.0,7.1426152088598,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2001,24,42.0,222211.0,11.0629072814866,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2001,24,71.0,166141.0,7.86365005053452,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2001,24,3.0,102547.0,3.28677881998827,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2001,24,0.0,20467.0,0.554859912744617,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2001,24,0.0,16966.0,0.817155968854073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2001,24,10.0,410258.0,10.6279404874154,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2001,24,0.0,51044.0,1.09522031121707,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2001,24,6.0,178024.0,11.2862955253769,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2001,24,51.0,234422.0,8.86450129679328,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2001,24,15.0,137622.0,3.95779402521649,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2001,24,77.0,104041.0,2.02166397593684,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2001,24,335.0,122789.0,4.47824780028115,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2001,24,86.0,232417.0,10.9735773017717,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2001,24,9.0,62759.0,1.17240613128587,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2001,24,8.0,112821.0,2.39054249683897,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2001,24,0.0,175196.0,18.5674872395052,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2001,24,4.0,1098926.0,769.281126966813,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2001,24,4.0,134356.0,20.8825969595443,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2001,24,0.0,132829.0,12.3181999590703,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2001,24,0.0,489270.0,28.411451841013,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2001,24,0.0,153479.0,21.765565123073,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2001,24,24.0,185869.0,8.61549795774339,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2001,24,6.0,558471.0,15.5163166817517,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2001,24,29.0,516307.0,17.6675942828453,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2001,24,5.0,396052.0,36.0544886881779,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2001,24,27.0,269347.0,7.31114391600298,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2001,24,7.0,178535.0,27.3022662186388,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2001,24,1.0,122989.0,20.3866694104658,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2001,24,4.0,181117.0,16.7845490718164,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2001,24,1.0,243953.0,24.5518960709303,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2001,24,2.0,75470.0,20.9639762591805,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2001,24,9.0,368259.0,24.0036504801687,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2001,24,54.0,190210.0,7.60988865790256,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2001,24,30.0,90782.0,6.38315727737789,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2001,24,8.0,107571.0,2.94766531141035,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2001,24,1.0,61479.0,3.62159628454547,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2001,24,27.0,306030.0,24.5477464701101,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2001,24,3.0,276211.0,28.3865203319114,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2001,24,76.0,893917.0,97.396939572803,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2001,24,3.0,211108.0,8.66802689733211,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2001,24,33.0,125950.0,15.1548390885825,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2001,24,0.0,103869.0,7.7326451609301,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2001,24,1.0,37005.0,1.45288738535666,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2001,24,1.0,38442.0,3.45887859387998,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2001,24,16.0,119667.0,6.4897961672139,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2001,24,0.0,78125.0,2.82863679851901,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2001,24,1.0,122355.0,4.44648910149907,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2001,24,0.0,77298.0,4.33361217798571,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2001,24,1.0,187050.0,18.1615946264618,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2001,24,2.0,52767.0,12.2355495382427,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2001,24,20.0,243216.0,7.7128012797225,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2001,24,21.0,321656.0,37.2156004776861,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,262973.0,51.9336552760171,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,51074.0,24.653834577137,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,21114.0,78.2095592823965,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2001,24,3.0,332412.0,40.3338868333729,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2001,24,1.0,137061.0,32.4453756361646,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2001,24,0.0,69579.0,11.5929420845079,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2001,24,10.0,175206.0,47.2049124128097,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2001,24,5.0,90619.0,63.220066800972,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,88013.0,83.854425369658,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,75543.0,25.0044434729996,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2001,24,0.0,113282.0,21.3286277763271,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2001,24,8.0,173783.0,64.5958406131034,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,58065.0,44.7740288451226,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2001,24,5.0,116676.0,45.8920619548021,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2001,24,175.0,2909748.0,862.494690706132,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,81000.0,204.002832535594,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2001,24,223.0,234374.0,18.2851559963439,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2001,24,14.0,236443.0,19.7731892974083,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2001,24,32.0,138970.0,11.8590484114362,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2001,24,53.0,208016.0,21.2650155963017,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2001,24,23.0,97795.0,45.4176956507479,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2001,24,45.0,291040.0,29.3110138871229,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2001,24,0.0,62335.0,14.5277099977383,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,40267.0,19.6224053232349,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2001,24,46.0,211442.0,44.4723728364866,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2001,24,1.0,92399.0,26.076135155106,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,55847.0,34.5307060910201,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2001,24,0.0,90032.0,20.2605911061646,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2001,24,1.0,58087.0,45.0905145153116,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2001,24,0.0,88689.0,33.3192308077233,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2001,24,55.0,474939.0,104.250895958324,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2001,24,17.0,89141.0,45.9565787169828,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,1.0,277382.0,66.4002469613095,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,0.0,70490.0,17.2268713868201,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,10.0,37369.0,13.0656925454743,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,1.0,126202.0,26.3660320057548,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2001,24,7.0,59028.0,59.5285487060447,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2001,24,2.0,112813.0,42.4396072827548,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2001,24,12.0,63691.0,39.0379616315404,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,0.0,45144.0,23.6936905193301,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,16.0,50644.0,12.4186665256729,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,11.0,61240.0,20.3405364986652,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,85.0,90480.0,29.5114711716989,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,25.0,115072.0,30.506396038951,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,2.0,57457.0,30.0565422699028,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2001,24,16.0,126275.0,32.1415021700092,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2001,24,16.0,208486.0,59.5296603934524,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2001,24,3.0,76690.0,30.0810616065417,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2001,24,34.0,247304.0,119.193591762537,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2001,24,200.0,874487.0,1998.06761762646,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2001,24,27.0,114990.0,82.8642476477814,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2001,24,28.0,107311.0,35.201216440947,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2001,24,37.0,157828.0,46.5337310615681,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2001,24,7.0,173879.0,36.1895684044572,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2001,24,0.0,118552.0,46.5154319508394,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2001,24,2.0,71505.0,21.7117726555325,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2001,24,0.0,83047.0,27.2575415806866,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2001,24,3.0,108396.0,41.7273527088238,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2001,24,14.0,36861.0,21.0604453086792,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2001,24,8.0,67596.0,25.8950279671773,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2001,24,8.0,113367.0,16.2432367811133,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2001,24,0.0,60172.0,14.2884779286175,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2001,24,13.0,107846.0,27.600395679726,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2001,24,2.0,93594.0,70.7922909253428,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2001,24,4.0,48398.0,180.695015776412,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2001,24,18.0,118086.0,100.086313854431,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2001,24,1.0,159345.0,123.521778388088,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2001,24,19.0,467237.0,221.784067170993,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2001,24,1.0,106487.0,63.1040251089898,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2001,24,0.0,54233.0,45.8507038822275,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2001,24,2.0,130118.0,65.4668795505753,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2001,24,1.0,123889.0,110.64933969544,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2001,24,25.0,885384.0,709.336144455144,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2001,24,2.0,75463.0,87.1543477166398,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2001,24,0.0,280201.0,24.2805289187931,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2001,24,0.0,152558.0,17.4135165932943,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2001,24,4.0,297330.0,33.6865121326388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2001,24,18.0,185784.0,21.1185693173978,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2001,24,1.0,358104.0,23.9222380654968,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2001,24,3.0,117480.0,12.3455010883372,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2001,24,3.0,162648.0,29.9491569802704,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2001,24,18.0,752329.0,95.6838807937374,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2001,24,35.0,216626.0,120.673170942244,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2001,24,9.0,252975.0,144.539058524955,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2001,24,5.0,416234.0,81.2989091464225,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2001,24,11.0,211712.0,82.6985884103971,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2001,24,34.0,506492.0,172.397134735447,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2001,24,7.0,200017.0,213.102164659426,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2001,24,10.0,508874.0,112.441781462685,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2001,24,3.0,135954.0,252.444734396313,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2001,24,265.0,3033864.0,2425.0214069557,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2001,24,22.0,216929.0,224.616925627772,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2001,24,0.0,2096.0,161.302259319657,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2001,24,1.0,87869.0,33.4573280711565,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2001,24,1.0,71060.0,52.0381750975146,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2001,24,0.0,166636.0,54.3744653955636,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2001,24,0.0,88932.0,49.252965299309,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2001,24,0.0,175830.0,73.5191151728986,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2001,24,0.0,374824.0,154.523772883919,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2001,24,0.0,35010.0,37.41428066677,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2001,24,4.0,143357.0,77.7986183047827,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2001,24,3.0,282234.0,71.5621612884659,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2001,24,2.0,59287.0,58.9019897369896,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2001,24,19.0,1000524.0,558.686211226608,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2001,24,2.0,252820.0,85.1007429313633,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2001,24,0.0,118246.0,69.0926679982079,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2001,24,0.0,137687.0,25.2835217245646,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2001,24,0.0,62108.0,33.2581278126834,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,1.0,58658.0,47.2726329074048,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,8.0,146848.0,129.798535424237,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2001,24,2.0,101416.0,50.3458446800779,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2001,24,0.0,104028.0,68.9956607928377,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,4.0,88837.0,84.2222295689935,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,0.0,40537.0,52.9454173754797,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,1.0,49729.0,34.7570362470296,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,0.0,78078.0,105.399184554519,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2001,24,8.0,692048.0,793.261519266351,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2001,24,5.0,144457.0,78.5760943474929,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2001,24,16.0,112870.0,55.7639988177919,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2001,24,2.0,210919.0,3.99054852773179,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2001,24,2.0,110650.0,4.89126385916232,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2001,24,10.0,178948.0,4.26179626777221,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2001,24,4.0,415162.0,7.58777301340869,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2001,24,4.0,151810.0,12.1843023842737,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2001,24,1.0,160628.0,4.93308338290145,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2001,24,62.0,161358.0,11.1764314818513,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2001,24,21.0,266920.0,16.0558410081323,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2001,24,0.0,350636.0,19.2278764060688,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2001,24,314.0,315375.0,16.7607356887391,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2001,24,9.0,247236.0,15.0145669890464,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2001,24,57.0,906417.0,71.1188662525042,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2001,24,0.0,106964.0,13.3434993652796,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2001,24,54.0,295783.0,15.8252134300527,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2001,24,11.0,294178.0,34.000947633513,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2001,24,5.0,384537.0,36.1121374351589,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2001,24,1.0,283973.0,49.4102157929037,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,0.0,105852.0,24.1868558752922,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,0.0,190548.0,69.3276124753516,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,8.0,510434.0,89.5331071840167,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,77.0,3082339.0,1066.38483146404,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2001,24,0.0,180205.0,11.2063891640042,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2001,24,128.0,253852.0,12.236273273288,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2001,24,57.0,517694.0,30.095261541363,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2001,24,0.0,92180.0,17.9202941692064,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2001,24,12.0,355645.0,15.1716690877785,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2001,24,5.0,264556.0,17.2453352677363,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2001,24,18.0,628202.0,33.3884519546612,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2001,24,5.0,211576.0,18.7647818815597,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,4.0,238648.0,41.4806679749447,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,32.0,1091461.0,51.3487447622572,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2001,24,4.0,649428.0,23.4329284300453,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,0.0,139528.0,5.09110145126426,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,0.0,199217.0,5.69040119369508,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,5.0,259009.0,7.79869920015013,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2001,24,1.0,240080.0,15.9651351767267,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,1.0,201399.0,11.292403970807,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,3.0,155685.0,6.76266087266144,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2001,24,42.0,545838.0,24.4332099916381,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,0.0,40815.0,4.50426961625531,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,2.0,63638.0,8.04061119390206,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2001,24,0.0,81808.0,11.072870366794,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,1.0,187758.0,15.6273924439967,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2001,24,0.0,151726.0,14.7740094675068,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2001,24,1.0,83707.0,16.5759567283628,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,172680.0,11.1716789047678,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,258160.0,22.2203964087924,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,118602.0,13.9825058397078,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,2.0,133005.0,15.233477595605,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,15.0,717876.0,38.2099146335024,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2001,24,1.0,187086.0,15.6420419128545,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,0.0,236231.0,22.0280539407872,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,14.0,155171.0,9.18948535815429,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,0.0,295303.0,31.6460347676356,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2001,24,0.0,175336.0,12.462198639909,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,38.0,89669.0,8.47310572780159,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2001,24,0.0,144074.0,10.5120821664198,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,2.0,150417.0,20.0865325292238,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,83.0,354160.0,41.456021606233,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,88334.0,12.9561566005758,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,94.0,108809.0,61.4612571305529,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,40.0,4352377.0,746.765484714878,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,354924.0,44.0678893173978,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,58274.0,24.1050016188609,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,157046.0,49.8266554859767,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,223587.0,75.4449349126951,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,128187.0,22.2543507810919,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,83915.0,18.3125667117177,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,779.0,398324.0,35.1963962493814,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,61342.0,33.1621218563482,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,16.0,481554.0,110.669937120132,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,241444.0,43.5924063377613,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,147421.0,17.6887683934182,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,0.0,77692.0,10.0974695278348,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,13.0,401149.0,79.0027855064382,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2001,24,1.0,146172.0,32.0102551716745,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,106660.0,39.6004399179175,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,120467.0,30.0349972694232,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2001,24,0.0,212920.0,30.0187935245275,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,256985.0,49.6847955843024,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,212176.0,42.4366397250159,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,413175.0,54.5354154365149,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,1.0,314362.0,67.8604932254035,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,287740.0,58.5098741357041,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,129797.0,39.621475000222,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,1.0,198611.0,51.6452481271791,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,73906.0,14.6663937968481,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,183503.0,61.5414439870276,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,136312.0,39.430719224606,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,172469.0,29.9567435360539,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,207972.0,61.967231722585,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,189573.0,38.9685035802898,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,253576.0,52.4177057599797,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,217284.0,45.0345819741531,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,263145.0,55.5660305327617,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2001,24,12.0,245256.0,68.1625997417677,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2001,24,0.0,673745.0,75.4193694965926,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,208933.0,53.4999328058457,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,86197.0,21.3283078368044,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,115960.0,31.6153132567437,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,12.0,186911.0,43.062291920671,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,50766.0,17.2162460691884,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,160770.0,34.7356243619659,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,4.0,254413.0,36.610015389199,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,126463.0,32.9756472247597,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,99446.0,30.2704422023064,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2001,24,90.0,1371048.0,960.815418730066,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,163563.0,77.7477791077224,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2001,24,3.0,154319.0,44.6417296568629,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,21.0,315537.0,76.6766648424435,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2001,24,6.0,69623.0,54.9297019152818,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,109.0,181619.0,57.9166824871737,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,51.0,118895.0,53.0465569708754,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,529467.0,73.9215101479549,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,178008.0,68.942513431597,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2001,24,5.0,145926.0,88.1260463703669,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2001,24,2.0,58982.0,46.5698089708836,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2001,24,1.0,221644.0,106.488878834335,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,28695.0,15.8229654859782,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,83506.0,50.9069055586182,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,16.0,398142.0,203.01912261485,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2001,24,9.0,631596.0,165.607516181471,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2001,24,44.0,164335.0,69.4025197342061,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2001,24,20.0,153515.0,91.8076267076713,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2001,24,3.0,152759.0,97.4039862467433,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2001,24,2.0,450044.0,252.128874556882,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,99617.0,70.2563506432808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2001,24,5.0,176842.0,201.335426072585,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2001,24,2029.0,10784953.0,2368.52116369555,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,147282.0,37.3919934614122,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,4.0,101011.0,35.9011332985521,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2001,24,5.0,127667.0,39.7995204380784,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,12.0,684117.0,65.6391865769391,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,2.0,204778.0,90.3439416425932,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,44197.0,19.2520375654572,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,1.0,58913.0,29.3232921913408,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,72624.0,29.9967915288807,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2001,24,31.0,127698.0,47.0138795740356,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2001,24,3.0,193357.0,34.8715916869314,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2001,24,0.0,90779.0,45.0266618231572,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2001,24,0.0,357501.0,103.760754378073,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2001,24,2.0,390699.0,82.3378922492537,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2001,24,2.0,881285.0,146.722838324831,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2001,24,1.0,99164.0,32.2265754661214,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,4.0,174896.0,25.4528925605464,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,3.0,235915.0,43.9355668718439,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,9.0,231717.0,51.4638050404791,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,2.0,148583.0,38.3798545210439,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2001,24,3.0,522632.0,61.5665036768966,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2001,24,2.0,315473.0,78.1176432992101,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2001,24,0.0,161284.0,27.3296596641144,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2001,24,0.0,183633.0,42.1388699580328,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2001,24,3.0,454811.0,72.395585426992,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2001,24,2.0,277636.0,87.5428816373989,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2001,24,4.0,221680.0,75.262400831527,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,519378.0,223.394128403819,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,501219.0,132.62531020998,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,168968.0,95.8125514039656,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2001,24,1.0,399885.0,73.6838735777057,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2001,24,0.0,347966.0,148.920798945885,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,2257640.0,726.159964467639,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,163928.0,102.443499895846,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,108053.0,37.6873871993755,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,151211.0,41.1997338337758,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2001,24,0.0,550832.0,31.4886709652332,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,109273.0,47.5008636606412,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,3.0,314123.0,64.2823288268915,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,2.0,249792.0,34.9832857887504,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,274456.0,49.3140568321207,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2001,24,0.0,235566.0,30.6211978016184,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,167321.0,44.9016019288818,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,215580.0,96.5808862966916,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,1.0,142484.0,21.6341425380335,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,181912.0,43.9068944827763,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,1.0,1157340.0,272.695581890104,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,540515.0,672.126462178749,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,428659.0,136.578726590902,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,65715.0,64.6260396126352,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,1257394.0,312.962180396037,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2001,24,0.0,378282.0,139.917428831481,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,25670.0,12.2504431889615,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,70874.0,16.032802143597,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,6.0,233271.0,122.407087024853,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,0.0,246320.0,22.0788821284221,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2001,24,1.0,189047.0,92.7309450931437,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,2.0,1638611.0,2415.38294907433,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,386951.0,648.851360076571,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,2.0,1212081.0,1559.22189690823,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,0.0,836486.0,569.955554808129,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,23.0,12886203.0,5460.65446867025,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2001,24,1.0,1167738.0,567.186184912171,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2001,24,89.0,1340030.0,984.046434329711,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,258537.0,25.4152450449446,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,2.0,254660.0,24.8240150181771,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,125932.0,31.0968757310633,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,126333.0,26.0081038634291,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,215084.0,30.3967184952056,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,173321.0,33.9096995762907,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,83065.0,35.1235342111778,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,1.0,33793.0,25.952019328155,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,3.0,461658.0,296.674993286242,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,255598.0,112.834284124965,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,3.0,650635.0,185.047979107185,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,47100.0,20.690303545534,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,145879.0,23.6653601975941,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,72801.0,32.2363125192251,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,182716.0,40.3682002680172,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,119527.0,43.3310312316208,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,74740.0,24.5911710728487,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,97384.0,30.8284347373869,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,146951.0,15.5358468754318,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,95702.0,16.8129689966487,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,389567.0,58.3227154040893,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,1.0,343038.0,39.260423923544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,1.0,400369.0,46.8169538024096,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,4.0,409389.0,73.7338681904256,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,93301.0,40.1509524330712,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,227330.0,42.0039749581633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,151156.0,38.7252811953343,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,84360.0,17.1458231183228,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,366937.0,22.6507167472685,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,85477.0,15.8119205435794,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,118695.0,19.5378574072714,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,92262.0,32.5050692263435,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,112745.0,20.6211379784778,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,56753.0,22.4315770604371,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,29264.0,8.47355979357534,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,46553.0,20.2526184170644,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,1.0,2742403.0,321.781728473811,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2001,24,0.0,243016.0,39.8703238767014,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2001,24,0.0,80678.0,32.9681459274286,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,169166.0,39.6899378703169,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,2.0,363410.0,60.3408702074281,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,143697.0,29.6398957149795,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,308603.0,34.1622313842536,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,137625.0,43.7566535663531,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,233832.0,24.8680146539826,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,1.0,117859.0,61.7357240514597,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,1.0,696902.0,150.107294066891,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,117269.0,17.8061105103045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,285702.0,18.1459485936968,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,183582.0,34.6687762527038,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,3.0,559927.0,118.338431513674,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,420037.0,273.512189456207,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,51163.0,33.6351381640766,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,70517.0,33.1030020787049,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,730719.0,252.203535593664,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2001,24,0.0,23246.0,9.91016856970434,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,1.0,342507.0,73.9652665641449,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,330309.0,156.283879520043,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2001,24,0.0,162664.0,54.7441002709236,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,161762.0,46.787925607869,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,148851.0,39.0466700488134,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,1.0,182754.0,35.0913140475465,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,213941.0,37.7298312008449,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2001,24,0.0,61887.0,20.1094030485752,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,69338.0,31.2357238016993,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,208471.0,19.2535498319491,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,180391.0,35.4192259521409,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,159550.0,32.6562999003921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2001,24,2.0,303649.0,42.9032734357635,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,156504.0,18.5886617403688,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,41478.0,27.675798717348,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2001,24,0.0,72061.0,19.9653228505014,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2001,24,0.0,116877.0,32.2005141025221,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2001,24,0.0,154726.0,8.97919795574795,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2001,24,1.0,667848.0,134.284383988976,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,111859.0,9.96988621632347,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,1.0,353830.0,30.1562645462749,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,66619.0,22.1829872732705,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,302141.0,54.3419834680211,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,1.0,280885.0,69.4213150766327,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,157817.0,20.8009622653921,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,180991.0,87.3732596096238,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2001,24,0.0,267374.0,102.558520837619,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,133485.0,27.3515596728548,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,2.0,3479683.0,621.127763927738,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,293115.0,33.3380417266251,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,124840.0,21.2194664072657,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,383693.0,12.3461362003203,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,195749.0,11.3185742154154,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,173811.0,12.2015971194309,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,117323.0,7.14554849716547,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,478702.0,46.3299943351911,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,56613.0,8.93367730747406,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2001,24,0.0,251201.0,27.1219129733364,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2001,24,1.0,125591.0,1.51255503214667,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2001,24,3.0,99375.0,3.58178933572072,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2001,24,16.0,105817.0,2.53970642755559,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2001,24,686.0,740422.0,26.210414433664,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2001,24,0.0,48351.0,3.00597847621535,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2001,24,0.0,71542.0,4.16276050637076,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2001,24,15.0,127501.0,2.69821114974866,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2001,24,0.0,75167.0,5.58099949170505,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2001,24,8.0,101756.0,4.50681815143341,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2001,24,4.0,413372.0,11.0549738879674,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2001,24,2.0,202142.0,8.99131215058171,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2001,24,34.0,100213.0,0.808092155706979,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2001,24,0.0,90007.0,1.75105408364386,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2001,24,24.0,128571.0,3.0063818333039,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2001,24,3.0,65418.0,1.09762511345776,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2001,24,1.0,69745.0,1.2699654430598,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,3.0,107597.0,1.97262918038534,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2001,24,46.0,138713.0,2.77190480474883,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,16.0,28656.0,0.612778281144164,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2001,24,0.0,91213.0,1.0738307003188,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,42.0,80545.0,1.33352091839088,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,26.0,61738.0,1.92997057002476,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2001,24,0.0,61201.0,1.95154680125083,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,37.0,116688.0,5.22721038096785,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2001,24,24.0,105104.0,5.56724088238353,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2001,24,47.0,31730.0,4.73487452454562,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,0.0,31437.0,3.40395534699885,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,63.0,758596.0,27.4753962676133,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2001,24,8.0,125890.0,2.3609543138733,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,3.0,61681.0,6.01577625414868,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,0.0,53302.0,1.96847930557063,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,4.0,228173.0,9.35150025002681,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2001,24,0.0,24366.0,2.27430214222703,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2001,24,4.0,74377.0,3.05081615311987,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2001,24,2.0,91753.0,4.5315872667264,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2001,24,32.0,53650.0,4.85361441212095,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2001,24,122.0,224697.0,6.39115019072749,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2001,24,5.0,56915.0,2.67224166530555,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2001,24,7.0,212620.0,16.1577166411652,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2001,24,16.0,472083.0,56.4183105568803,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2001,24,2.0,62310.0,8.81147981223406,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2001,24,4.0,102235.0,18.7234156686686,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2001,24,460.0,1742120.0,257.903506066493,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2001,24,139.0,92682.0,5.33300873480038,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2001,24,24.0,856301.0,22.4417672941741,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2001,24,7.0,351130.0,6.26376388474324,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2001,24,0.0,102543.0,7.53802857252342,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2001,24,30.0,319846.0,15.1434555363282,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2001,24,0.0,87411.0,9.17610903908515,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2001,24,3.0,119782.0,7.86547217192597,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2001,24,4.0,94007.0,5.84788041414015,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2001,24,56.0,2097447.0,362.61333391997,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2002,25,53.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2002,25,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2002,25,1.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2002,25,63.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2002,25,1.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2002,25,40.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2002,25,23.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2002,25,28.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2002,25,1.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2002,25,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2002,25,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2002,25,75.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2002,25,2.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2002,25,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2002,25,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2002,25,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2002,25,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2002,25,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2002,25,5.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2002,25,85.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2002,25,0.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2002,25,37.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2002,25,1.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2002,25,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2002,25,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2002,25,4.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2002,25,332.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2002,25,1.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2002,25,9.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2002,25,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2002,25,38.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2002,25,503.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2002,25,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2002,25,0.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2002,25,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2002,25,1.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2002,25,615.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2002,25,54.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2002,25,15.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2002,25,27.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2002,25,263.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2002,25,4.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2002,25,13.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2002,25,176.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2002,25,4.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2002,25,55.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2002,25,66.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2002,25,28.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2002,25,30.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2002,25,147.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2002,25,63.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2002,25,3.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2002,25,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2002,25,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2002,25,33.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2002,25,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2002,25,107.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2002,25,92.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2002,25,8.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2002,25,137.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2002,25,198.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2002,25,128.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2002,25,22.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2002,25,5.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2002,25,0.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2002,25,22.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2002,25,44.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2002,25,9.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2002,25,15.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2002,25,11.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2002,25,32.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2002,25,67.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2002,25,47.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2002,25,40.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2002,25,134.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2002,25,21.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2002,25,20.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2002,25,24.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2002,25,20.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2002,25,8.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2002,25,117.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2002,25,98.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2002,25,19.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2002,25,15.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2002,25,7.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2002,25,83.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2002,25,20.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2002,25,336.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2002,25,29.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2002,25,82.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2002,25,4.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2002,25,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2002,25,13.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2002,25,78.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2002,25,2.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2002,25,6.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2002,25,71.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2002,25,18.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2002,25,43.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2002,25,126.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2002,25,122.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2002,25,19.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2002,25,6.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2002,25,3.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2002,25,116.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2002,25,4.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2002,25,1.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2002,25,15.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2002,25,4.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2002,25,0.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2002,25,3.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2002,25,43.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2002,25,57.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2002,25,3.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2002,25,8.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2002,25,390.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2002,25,8.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2002,25,154.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2002,25,54.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2002,25,151.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2002,25,34.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2002,25,50.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2002,25,122.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2002,25,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2002,25,4.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2002,25,42.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2002,25,2.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2002,25,0.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2002,25,3.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2002,25,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2002,25,17.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2002,25,154.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2002,25,90.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,19.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,6.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,47.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,54.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2002,25,33.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2002,25,21.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2002,25,37.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,12.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,84.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,35.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,117.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,89.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,7.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2002,25,98.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2002,25,203.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2002,25,33.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2002,25,180.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2002,25,629.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2002,25,64.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2002,25,127.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2002,25,50.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2002,25,73.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2002,25,43.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2002,25,20.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2002,25,16.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2002,25,42.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2002,25,34.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2002,25,16.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2002,25,45.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2002,25,32.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2002,25,50.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2002,25,29.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2002,25,15.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2002,25,81.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2002,25,17.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2002,25,66.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2002,25,28.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2002,25,1.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2002,25,50.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2002,25,3.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2002,25,39.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2002,25,18.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2002,25,140.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2002,25,7.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2002,25,80.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2002,25,38.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2002,25,29.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2002,25,51.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2002,25,14.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2002,25,262.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2002,25,188.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2002,25,351.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2002,25,70.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2002,25,89.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2002,25,1181.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2002,25,144.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2002,25,123.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2002,25,52.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2002,25,5589.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2002,25,781.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2002,25,1.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2002,25,5.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2002,25,8.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2002,25,4.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2002,25,5.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2002,25,8.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2002,25,22.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2002,25,6.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2002,25,2.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2002,25,26.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2002,25,19.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2002,25,149.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2002,25,17.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2002,25,9.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2002,25,3.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2002,25,5.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,5.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,11.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2002,25,21.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2002,25,7.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,4.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,1.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,5.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2002,25,136.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2002,25,18.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2002,25,36.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2002,25,239.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2002,25,5.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2002,25,94.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2002,25,14.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2002,25,36.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2002,25,13.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2002,25,186.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2002,25,65.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2002,25,8.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2002,25,878.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2002,25,305.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2002,25,356.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2002,25,6.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2002,25,165.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2002,25,86.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2002,25,80.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2002,25,60.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,4.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,29.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,84.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,1109.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2002,25,28.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2002,25,114.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2002,25,293.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2002,25,0.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2002,25,54.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2002,25,90.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2002,25,312.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2002,25,26.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,59.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,233.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2002,25,117.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,31.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,8.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,30.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2002,25,74.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,6.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,14.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2002,25,251.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,7.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,20.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2002,25,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,9.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2002,25,13.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2002,25,5.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,21.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,6.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,6.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,10.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,139.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2002,25,2.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,19.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,33.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,50.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2002,25,5.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,109.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2002,25,17.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,34.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,47.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,3.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,545.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,662.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,22.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,8.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,30.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,4.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,698.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,9.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,804.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,54.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,98.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,110.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,72.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2002,25,2.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,1.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,1.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2002,25,1.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,0.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,6.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,3.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,4.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2002,25,4.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,17.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,2.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,3.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,3.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,7.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,15.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,8.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,13.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,18.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,54.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2002,25,274.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2002,25,40.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2002,25,146.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,3.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,3.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,137.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,3.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,19.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,39.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2002,25,7.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2002,25,4.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2002,25,574.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,31.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2002,25,77.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,873.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2002,25,14.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,416.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,215.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,43.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,121.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2002,25,63.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2002,25,22.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2002,25,23.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2002,25,6.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,72.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,259.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2002,25,448.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2002,25,499.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2002,25,173.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2002,25,181.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2002,25,151.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,60.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2002,25,186.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2002,25,45222.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,4.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,18.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2002,25,9.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,70.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,10.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,2.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,4.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2002,25,12.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2002,25,7.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2002,25,6.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2002,25,1.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2002,25,12.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2002,25,78.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2002,25,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,4.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,19.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,59.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,35.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2002,25,30.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2002,25,7.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2002,25,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2002,25,1.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2002,25,21.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2002,25,4.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2002,25,1.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2002,25,2.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,21.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2002,25,6.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2002,25,6.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2002,25,8.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,12.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,1.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2002,25,0.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,1.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,21.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,5.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,4.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2002,25,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,2.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,2.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,1.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,37.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,1.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,6.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2002,25,5.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,1.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,25.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,6.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2002,25,4.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,32.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,3.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,19.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,19.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,434.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2002,25,19.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2002,25,1027.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,5.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,25.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,2.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,0.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,2.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,2.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,1.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,5.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,18.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,3.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,28.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,1.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,1.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,8.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,1.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,1.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,7.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,13.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,37.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,3.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,3.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,2.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,39.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2002,25,2.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2002,25,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,7.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,1.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,1.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,1.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,5.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,4.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,4.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,3.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,3.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,9.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,5.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,24.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2002,25,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,4.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,1.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2002,25,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,2.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,3.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,1.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,1.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2002,25,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,4.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,2.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,1.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2002,25,3.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2002,25,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2002,25,1.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2002,25,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2002,25,11.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,2.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2002,25,3.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,35.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,1.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,4.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,2.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2002,25,5.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2002,25,32.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2002,25,24.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2002,25,244.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2002,25,3784.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2002,25,7.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2002,25,26.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2002,25,58.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2002,25,5.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2002,25,44.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2002,25,151.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2002,25,18.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2002,25,167.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2002,25,9.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2002,25,164.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2002,25,191.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2002,25,6.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,73.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2002,25,158.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,92.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2002,25,14.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,88.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,112.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2002,25,33.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,453.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2002,25,207.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2002,25,20.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,46.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,425.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2002,25,40.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,28.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,42.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,123.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2002,25,3.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2002,25,6.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2002,25,12.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2002,25,53.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2002,25,123.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2002,25,11.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2002,25,53.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2002,25,68.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2002,25,6.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2002,25,28.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2002,25,3221.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2002,25,10.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2002,25,149.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2002,25,59.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2002,25,9.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2002,25,132.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2002,25,13.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2002,25,4.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2002,25,16.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2002,25,642.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2002,26,120.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2002,26,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2002,26,2.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2002,26,81.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2002,26,7.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2002,26,18.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2002,26,20.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2002,26,12.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2002,26,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2002,26,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2002,26,2.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2002,26,139.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2002,26,10.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2002,26,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2002,26,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2002,26,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2002,26,1.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2002,26,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2002,26,9.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2002,26,348.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2002,26,1.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2002,26,173.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2002,26,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2002,26,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2002,26,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2002,26,13.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2002,26,209.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2002,26,1.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2002,26,4.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2002,26,3.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2002,26,156.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2002,26,431.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2002,26,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2002,26,1.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2002,26,2.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2002,26,3.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2002,26,980.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2002,26,124.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2002,26,40.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2002,26,54.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2002,26,236.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2002,26,9.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2002,26,51.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2002,26,76.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2002,26,6.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2002,26,51.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2002,26,134.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2002,26,8.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2002,26,60.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2002,26,103.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2002,26,3.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2002,26,9.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2002,26,2.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2002,26,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2002,26,189.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2002,26,1.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2002,26,64.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2002,26,50.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2002,26,20.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2002,26,87.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2002,26,39.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2002,26,149.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2002,26,13.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2002,26,17.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2002,26,3.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2002,26,88.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2002,26,149.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2002,26,1.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2002,26,14.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2002,26,90.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2002,26,5.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2002,26,141.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2002,26,84.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2002,26,387.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2002,26,275.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2002,26,52.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2002,26,48.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2002,26,108.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2002,26,48.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2002,26,39.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2002,26,106.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2002,26,189.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2002,26,31.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2002,26,15.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2002,26,1.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2002,26,112.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2002,26,26.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2002,26,651.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2002,26,52.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2002,26,125.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2002,26,12.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2002,26,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2002,26,6.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2002,26,64.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2002,26,2.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2002,26,71.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2002,26,11.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2002,26,127.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2002,26,25.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2002,26,61.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2002,26,142.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2002,26,32.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2002,26,4.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2002,26,10.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2002,26,204.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2002,26,8.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2002,26,0.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2002,26,39.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2002,26,12.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2002,26,9.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2002,26,6.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2002,26,68.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2002,26,92.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2002,26,11.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2002,26,35.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2002,26,1127.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2002,26,16.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2002,26,313.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2002,26,115.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2002,26,224.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2002,26,26.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2002,26,82.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2002,26,328.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2002,26,1.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2002,26,3.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2002,26,196.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2002,26,17.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2002,26,5.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2002,26,38.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2002,26,3.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2002,26,98.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2002,26,382.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2002,26,65.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,120.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,5.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,43.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,44.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2002,26,51.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2002,26,166.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2002,26,40.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,27.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,88.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,62.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,43.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,231.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,11.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2002,26,142.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2002,26,261.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2002,26,34.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2002,26,370.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2002,26,1175.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2002,26,75.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2002,26,189.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2002,26,166.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2002,26,153.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2002,26,127.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2002,26,89.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2002,26,43.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2002,26,42.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2002,26,63.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2002,26,47.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2002,26,122.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2002,26,38.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2002,26,72.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2002,26,40.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2002,26,61.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2002,26,118.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2002,26,85.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2002,26,115.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2002,26,203.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2002,26,4.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2002,26,40.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2002,26,13.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2002,26,351.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2002,26,140.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2002,26,476.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2002,26,65.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2002,26,177.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2002,26,95.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2002,26,75.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2002,26,173.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2002,26,34.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2002,26,1026.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2002,26,922.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2002,26,1017.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2002,26,206.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2002,26,315.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2002,26,2449.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2002,26,1146.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2002,26,685.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2002,26,525.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2002,26,22144.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2002,26,2031.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2002,26,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2002,26,32.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2002,26,15.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2002,26,9.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2002,26,13.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2002,26,31.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2002,26,103.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2002,26,3.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2002,26,18.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2002,26,123.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2002,26,22.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2002,26,558.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2002,26,83.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2002,26,51.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2002,26,28.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2002,26,10.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,11.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,55.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2002,26,48.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2002,26,4.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,22.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,2.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,13.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2002,26,246.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2002,26,18.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2002,26,50.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2002,26,101.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2002,26,75.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2002,26,251.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2002,26,33.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2002,26,195.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2002,26,51.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2002,26,260.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2002,26,291.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2002,26,35.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2002,26,1151.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2002,26,242.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2002,26,1505.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2002,26,14.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2002,26,199.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2002,26,179.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2002,26,429.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2002,26,211.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,26.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,228.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,700.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,8944.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2002,26,127.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2002,26,173.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2002,26,580.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2002,26,7.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2002,26,99.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2002,26,83.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2002,26,384.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2002,26,87.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,142.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,773.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2002,26,197.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,87.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,57.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,141.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2002,26,191.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,18.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,32.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2002,26,715.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,72.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2002,26,2.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,18.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2002,26,13.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2002,26,9.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,32.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,23.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,26.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,35.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,424.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2002,26,5.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,25.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,35.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,151.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2002,26,9.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,166.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2002,26,80.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,113.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,123.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,1.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,308.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,2055.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,74.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,5.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,8.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,60.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,1.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,367.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,3.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,2142.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,227.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,224.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,139.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,191.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2002,26,12.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,11.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,4.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2002,26,3.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,6.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,6.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,18.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,9.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2002,26,2.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,6.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,15.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,3.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,7.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,7.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,23.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,21.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,33.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,38.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,18.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,218.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2002,26,292.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2002,26,103.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2002,26,418.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,3.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,5.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,361.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,28.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,54.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,65.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2002,26,12.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2002,26,11.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2002,26,2390.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,88.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2002,26,285.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,3204.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2002,26,23.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,531.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,314.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,141.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,371.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2002,26,207.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2002,26,37.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2002,26,58.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2002,26,15.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,148.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,1104.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2002,26,1705.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2002,26,1201.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2002,26,869.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2002,26,455.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2002,26,205.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,371.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2002,26,636.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2002,26,71521.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,4.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,38.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2002,26,26.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,196.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,16.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,1.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,4.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,5.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2002,26,14.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2002,26,29.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2002,26,31.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2002,26,2.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2002,26,61.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2002,26,152.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2002,26,1.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,26.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,56.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,161.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,148.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2002,26,22.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2002,26,11.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2002,26,1.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2002,26,6.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2002,26,55.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2002,26,15.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2002,26,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2002,26,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,4.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2002,26,1.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2002,26,6.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2002,26,15.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,30.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,1.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2002,26,2.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,43.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,26.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,7.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2002,26,3.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,7.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,2.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,1.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,2.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,65.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,1.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,2.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,6.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2002,26,18.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,1.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,220.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,25.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2002,26,43.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,106.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,16.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,38.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,62.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,1085.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2002,26,42.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2002,26,5489.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,23.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,69.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,4.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,4.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,6.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,18.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,3.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,30.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,118.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,5.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,63.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,2.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,2.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,19.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,3.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,1.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,1.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,5.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,19.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,10.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,92.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,1.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,5.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,1.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,2.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,1.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,68.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2002,26,3.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2002,26,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,3.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,2.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,1.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,1.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,7.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,5.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,2.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,12.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,2.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,6.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,1.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,12.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,19.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,1.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,2.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,16.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2002,26,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,3.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,7.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2002,26,1.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,2.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,1.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,3.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,4.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2002,26,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,2.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,4.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,1.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,2.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2002,26,3.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,1.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,1.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2002,26,1.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2002,26,4.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2002,26,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2002,26,17.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,6.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,3.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,7.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2002,26,3.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,1.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,109.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,1.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,6.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,3.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,1.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,7.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2002,26,8.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2002,26,44.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2002,26,25.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2002,26,236.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2002,26,3320.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2002,26,19.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2002,26,56.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2002,26,43.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2002,26,6.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2002,26,71.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2002,26,285.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2002,26,19.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2002,26,57.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2002,26,5.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2002,26,218.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2002,26,176.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2002,26,7.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,83.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2002,26,108.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,148.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2002,26,13.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,84.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,67.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2002,26,49.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,198.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2002,26,220.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2002,26,15.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,23.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,681.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2002,26,22.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,42.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,25.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,93.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2002,26,2.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2002,26,9.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2002,26,12.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2002,26,40.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2002,26,84.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2002,26,35.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2002,26,76.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2002,26,85.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2002,26,11.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2002,26,37.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2002,26,7305.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2002,26,36.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2002,26,325.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2002,26,78.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2002,26,15.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2002,26,161.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2002,26,16.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2002,26,9.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2002,26,35.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2002,26,1028.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2002,27,104.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2002,27,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2002,27,0.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2002,27,55.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2002,27,5.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2002,27,30.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2002,27,28.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2002,27,1.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2002,27,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2002,27,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2002,27,1.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2002,27,284.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2002,27,11.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2002,27,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2002,27,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2002,27,1.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2002,27,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2002,27,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2002,27,3.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2002,27,377.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2002,27,0.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2002,27,58.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2002,27,1.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2002,27,2.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2002,27,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2002,27,8.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2002,27,92.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2002,27,1.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2002,27,2.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2002,27,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2002,27,229.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2002,27,255.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2002,27,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2002,27,0.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2002,27,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2002,27,3.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2002,27,1115.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2002,27,195.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2002,27,63.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2002,27,100.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2002,27,263.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2002,27,12.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2002,27,86.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2002,27,86.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2002,27,6.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2002,27,65.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2002,27,86.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2002,27,2.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2002,27,55.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2002,27,59.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2002,27,6.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2002,27,5.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2002,27,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2002,27,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2002,27,154.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2002,27,1.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2002,27,30.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2002,27,15.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2002,27,6.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2002,27,51.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2002,27,8.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2002,27,75.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2002,27,5.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2002,27,9.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2002,27,4.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2002,27,98.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2002,27,284.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2002,27,9.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2002,27,18.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2002,27,220.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2002,27,13.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2002,27,143.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2002,27,59.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2002,27,255.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2002,27,252.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2002,27,44.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2002,27,24.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2002,27,89.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2002,27,31.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2002,27,42.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2002,27,41.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2002,27,123.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2002,27,23.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2002,27,14.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2002,27,2.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2002,27,90.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2002,27,19.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2002,27,744.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2002,27,101.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2002,27,66.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2002,27,55.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2002,27,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2002,27,3.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2002,27,42.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2002,27,8.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2002,27,33.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2002,27,3.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2002,27,235.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2002,27,21.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2002,27,54.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2002,27,200.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2002,27,35.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2002,27,20.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2002,27,10.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2002,27,209.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2002,27,25.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2002,27,2.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2002,27,79.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2002,27,9.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2002,27,8.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2002,27,18.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2002,27,72.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2002,27,85.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2002,27,41.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2002,27,24.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2002,27,1123.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2002,27,22.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2002,27,334.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2002,27,117.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2002,27,218.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2002,27,27.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2002,27,53.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2002,27,268.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2002,27,1.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2002,27,0.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2002,27,320.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2002,27,25.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2002,27,40.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2002,27,84.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2002,27,13.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2002,27,22.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2002,27,321.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2002,27,29.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,51.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,9.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,32.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,110.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2002,27,73.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2002,27,186.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2002,27,29.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,38.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,347.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,45.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,71.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,331.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,17.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2002,27,281.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2002,27,266.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2002,27,104.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2002,27,741.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2002,27,2652.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2002,27,95.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2002,27,417.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2002,27,192.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2002,27,255.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2002,27,96.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2002,27,155.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2002,27,73.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2002,27,127.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2002,27,119.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2002,27,117.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2002,27,259.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2002,27,96.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2002,27,117.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2002,27,80.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2002,27,91.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2002,27,205.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2002,27,128.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2002,27,351.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2002,27,676.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2002,27,22.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2002,27,88.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2002,27,26.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2002,27,721.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2002,27,246.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2002,27,1016.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2002,27,149.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2002,27,296.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2002,27,133.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2002,27,142.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2002,27,240.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2002,27,43.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2002,27,1735.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2002,27,1282.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2002,27,1351.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2002,27,188.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2002,27,362.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2002,27,1879.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2002,27,1592.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2002,27,1318.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2002,27,815.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2002,27,20385.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2002,27,1590.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2002,27,1.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2002,27,20.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2002,27,72.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2002,27,23.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2002,27,60.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2002,27,37.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2002,27,194.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2002,27,2.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2002,27,70.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2002,27,179.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2002,27,46.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2002,27,1295.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2002,27,110.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2002,27,52.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2002,27,49.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2002,27,30.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,11.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,140.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2002,27,36.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2002,27,9.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,31.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,9.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,4.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,15.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2002,27,435.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2002,27,69.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2002,27,109.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2002,27,53.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2002,27,160.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2002,27,127.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2002,27,92.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2002,27,355.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2002,27,55.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2002,27,147.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2002,27,254.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2002,27,364.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2002,27,409.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2002,27,355.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2002,27,1945.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2002,27,27.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2002,27,421.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2002,27,388.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2002,27,715.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2002,27,503.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,33.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,648.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,1795.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,13815.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2002,27,73.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2002,27,141.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2002,27,1082.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2002,27,25.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2002,27,196.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2002,27,166.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2002,27,438.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2002,27,206.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,236.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,1794.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2002,27,329.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,39.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,66.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,146.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2002,27,159.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,51.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,21.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2002,27,529.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,1.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,40.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2002,27,1.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,34.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2002,27,28.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2002,27,6.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,56.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,65.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,14.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,31.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,556.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2002,27,6.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,41.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,45.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,137.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2002,27,10.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,181.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2002,27,120.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,227.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,152.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,1.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,350.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,2616.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,71.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,3.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,12.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,92.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,2.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,244.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,4.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,2715.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,266.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,119.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,88.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,410.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2002,27,17.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,6.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,8.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2002,27,3.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,1.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,13.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,10.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,10.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2002,27,8.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,2.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,7.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,4.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,4.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,5.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,74.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,9.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,136.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,24.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,10.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,321.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2002,27,307.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2002,27,122.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2002,27,616.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,1.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,3.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,291.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,68.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,54.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,68.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2002,27,17.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2002,27,13.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2002,27,2818.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,317.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2002,27,469.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,4642.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2002,27,51.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,400.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,293.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,259.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,336.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2002,27,435.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2002,27,22.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2002,27,57.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2002,27,18.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,178.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,1462.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2002,27,3833.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2002,27,1151.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2002,27,1422.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2002,27,415.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2002,27,114.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,417.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2002,27,931.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2002,27,76331.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,2.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,43.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2002,27,42.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,312.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,17.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,4.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,4.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,33.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2002,27,4.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2002,27,87.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2002,27,45.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2002,27,1.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2002,27,53.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2002,27,110.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2002,27,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,52.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,256.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,284.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,246.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2002,27,37.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2002,27,17.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2002,27,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2002,27,3.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2002,27,42.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2002,27,13.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2002,27,3.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2002,27,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,64.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2002,27,9.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2002,27,9.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2002,27,120.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,42.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,1.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2002,27,1.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,2.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,34.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,37.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,9.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2002,27,2.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,2.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,3.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,2.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,2.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,52.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,2.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,5.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2002,27,7.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,1.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,809.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,26.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2002,27,44.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,153.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,12.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,39.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,53.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,762.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2002,27,22.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2002,27,8943.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,52.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,36.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,3.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,10.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,1.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,42.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,5.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,85.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,428.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,6.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,198.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,1.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,127.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,11.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,16.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,2.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,33.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,23.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,595.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,1.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,1.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,2.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,1.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,44.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2002,27,6.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2002,27,2.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,2.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,4.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,1.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,3.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,2.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,6.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,1.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,1.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,2.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,6.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,1.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,9.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2002,27,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,5.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,7.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2002,27,2.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,1.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,2.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2002,27,1.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,3.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,1.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,2.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2002,27,3.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,1.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2002,27,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2002,27,1.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2002,27,2.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2002,27,14.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,1.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,1.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,5.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,1.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2002,27,3.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,36.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,3.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,2.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,1.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,2.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2002,27,1.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2002,27,22.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2002,27,43.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2002,27,69.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2002,27,1592.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2002,27,28.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2002,27,92.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2002,27,34.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2002,27,7.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2002,27,91.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2002,27,297.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2002,27,17.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2002,27,33.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2002,27,7.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2002,27,111.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2002,27,137.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2002,27,2.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,95.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2002,27,64.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,35.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2002,27,2.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,65.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,68.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2002,27,52.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,85.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2002,27,194.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2002,27,24.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,17.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,370.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2002,27,13.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,48.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,12.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,70.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2002,27,1.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2002,27,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2002,27,4.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2002,27,24.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2002,27,29.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2002,27,6.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2002,27,36.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2002,27,53.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2002,27,3.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2002,27,35.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2002,27,4958.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2002,27,50.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2002,27,201.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2002,27,107.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2002,27,5.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2002,27,92.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2002,27,2.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2002,27,19.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2002,27,12.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2002,27,891.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2002,28,29.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2002,28,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2002,28,1.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2002,28,24.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2002,28,2.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2002,28,11.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2002,28,17.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2002,28,0.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2002,28,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2002,28,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2002,28,1.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2002,28,63.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2002,28,2.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2002,28,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2002,28,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2002,28,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2002,28,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2002,28,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2002,28,0.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2002,28,232.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2002,28,1.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2002,28,13.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2002,28,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2002,28,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2002,28,1.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2002,28,6.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2002,28,77.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2002,28,3.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2002,28,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2002,28,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2002,28,93.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2002,28,87.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2002,28,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2002,28,0.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2002,28,2.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2002,28,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2002,28,401.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2002,28,99.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2002,28,24.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2002,28,96.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2002,28,88.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2002,28,9.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2002,28,67.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2002,28,88.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2002,28,5.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2002,28,51.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2002,28,16.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2002,28,0.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2002,28,17.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2002,28,18.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2002,28,0.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2002,28,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2002,28,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2002,28,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2002,28,74.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2002,28,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2002,28,23.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2002,28,1.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2002,28,3.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2002,28,18.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2002,28,4.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2002,28,73.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2002,28,12.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2002,28,1.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2002,28,3.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2002,28,86.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2002,28,46.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2002,28,10.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2002,28,7.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2002,28,82.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2002,28,29.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2002,28,26.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2002,28,35.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2002,28,42.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2002,28,163.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2002,28,37.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2002,28,45.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2002,28,115.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2002,28,31.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2002,28,7.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2002,28,32.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2002,28,60.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2002,28,18.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2002,28,3.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2002,28,2.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2002,28,45.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2002,28,20.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2002,28,895.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2002,28,50.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2002,28,17.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2002,28,66.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2002,28,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2002,28,4.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2002,28,27.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2002,28,2.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2002,28,18.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2002,28,11.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2002,28,186.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2002,28,16.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2002,28,77.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2002,28,59.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2002,28,23.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2002,28,11.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2002,28,9.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2002,28,158.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2002,28,84.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2002,28,1.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2002,28,26.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2002,28,4.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2002,28,7.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2002,28,15.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2002,28,46.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2002,28,35.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2002,28,9.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2002,28,23.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2002,28,649.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2002,28,17.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2002,28,174.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2002,28,57.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2002,28,48.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2002,28,46.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2002,28,36.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2002,28,136.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2002,28,3.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2002,28,1.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2002,28,189.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2002,28,12.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2002,28,20.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2002,28,115.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2002,28,3.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2002,28,23.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2002,28,264.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2002,28,21.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,18.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,6.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,41.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,78.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2002,28,25.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2002,28,88.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2002,28,22.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,109.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,103.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,30.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,54.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,200.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,51.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2002,28,195.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2002,28,221.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2002,28,112.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2002,28,517.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2002,28,1807.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2002,28,107.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2002,28,164.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2002,28,201.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2002,28,187.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2002,28,81.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2002,28,224.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2002,28,218.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2002,28,119.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2002,28,98.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2002,28,72.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2002,28,194.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2002,28,120.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2002,28,114.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2002,28,57.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2002,28,55.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2002,28,97.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2002,28,217.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2002,28,526.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2002,28,306.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2002,28,39.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2002,28,44.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2002,28,60.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2002,28,366.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2002,28,321.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2002,28,422.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2002,28,103.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2002,28,286.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2002,28,90.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2002,28,112.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2002,28,142.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2002,28,37.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2002,28,2137.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2002,28,1003.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2002,28,890.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2002,28,75.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2002,28,264.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2002,28,617.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2002,28,740.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2002,28,970.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2002,28,314.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2002,28,4770.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2002,28,590.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2002,28,1.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2002,28,22.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2002,28,71.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2002,28,7.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2002,28,29.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2002,28,28.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2002,28,90.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2002,28,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2002,28,72.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2002,28,87.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2002,28,9.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2002,28,977.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2002,28,71.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2002,28,34.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2002,28,58.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2002,28,42.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,3.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,191.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2002,28,13.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2002,28,20.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,20.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,1.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,1.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,25.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2002,28,394.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2002,28,30.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2002,28,117.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2002,28,4.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2002,28,55.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2002,28,30.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2002,28,52.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2002,28,123.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2002,28,18.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2002,28,42.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2002,28,143.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2002,28,230.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2002,28,237.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2002,28,159.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2002,28,701.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2002,28,7.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2002,28,601.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2002,28,316.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2002,28,268.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2002,28,175.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,14.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,502.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,1299.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,6619.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2002,28,23.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2002,28,88.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2002,28,412.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2002,28,20.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2002,28,129.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2002,28,109.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2002,28,350.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2002,28,264.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,131.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,1687.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2002,28,213.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,6.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,13.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,63.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2002,28,54.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,26.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,8.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2002,28,169.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,5.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2002,28,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,7.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2002,28,24.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2002,28,3.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,2.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,79.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,5.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,41.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,355.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2002,28,7.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,15.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,40.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,57.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2002,28,7.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,42.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2002,28,45.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,410.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,171.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,233.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,2347.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,47.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,6.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,53.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,94.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,746.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,159.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,5.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,17.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,565.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2002,28,38.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,14.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,1.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2002,28,2.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,1.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,39.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,6.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,10.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2002,28,1.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,1.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,1.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,1.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,1.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,4.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,159.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,2.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,319.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,2.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,9.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,157.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2002,28,191.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2002,28,61.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2002,28,209.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,1.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,0.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,151.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,15.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,31.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,23.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2002,28,21.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2002,28,1.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2002,28,1342.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,374.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2002,28,139.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,1488.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2002,28,15.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,134.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,91.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,194.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,100.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2002,28,173.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2002,28,8.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2002,28,52.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2002,28,17.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,110.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,894.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2002,28,3475.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2002,28,773.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2002,28,1245.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2002,28,148.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2002,28,40.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,109.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2002,28,438.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2002,28,15360.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,0.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,13.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2002,28,22.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,392.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,43.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,1.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,4.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,42.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2002,28,2.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2002,28,106.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2002,28,45.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2002,28,1.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2002,28,39.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2002,28,72.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2002,28,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,93.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,330.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,238.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,92.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2002,28,26.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2002,28,6.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2002,28,4.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2002,28,4.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2002,28,58.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2002,28,13.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2002,28,1.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2002,28,2.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,11.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2002,28,2.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2002,28,10.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2002,28,272.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,41.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,1.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2002,28,3.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,17.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,31.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,6.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2002,28,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,1.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,7.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,59.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,1.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,5.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,1.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,4.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2002,28,1.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,2.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,2.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,729.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,11.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2002,28,42.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,328.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,14.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,36.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,12.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,744.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2002,28,10.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2002,28,6629.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,75.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,26.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,6.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,20.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,2.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,95.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,9.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,130.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,695.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,6.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,332.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,121.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,14.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,12.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,6.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,1.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,1.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,2.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,45.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,18.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,1022.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,1.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,30.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2002,28,0.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2002,28,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,3.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,2.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,2.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,1.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,3.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,2.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,1.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,7.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,7.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2002,28,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,3.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,1.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2002,28,1.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,2.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2002,28,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2002,28,1.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2002,28,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2002,28,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2002,28,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2002,28,1.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,1.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,1.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2002,28,2.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,10.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,2.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,1.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2002,28,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2002,28,7.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2002,28,33.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2002,28,9.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2002,28,486.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2002,28,22.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2002,28,34.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2002,28,19.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2002,28,11.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2002,28,27.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2002,28,160.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2002,28,25.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2002,28,22.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2002,28,8.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2002,28,26.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2002,28,50.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2002,28,3.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,52.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2002,28,32.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,12.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2002,28,6.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,16.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,19.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2002,28,42.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,26.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2002,28,62.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2002,28,4.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,3.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,141.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2002,28,1.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,41.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,2.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,21.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2002,28,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2002,28,2.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2002,28,3.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2002,28,22.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2002,28,19.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2002,28,1.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2002,28,16.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2002,28,18.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2002,28,3.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2002,28,12.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2002,28,1452.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2002,28,27.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2002,28,89.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2002,28,45.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2002,28,2.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2002,28,23.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2002,28,4.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2002,28,9.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2002,28,11.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2002,28,313.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2002,29,15.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2002,29,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2002,29,0.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2002,29,35.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2002,29,3.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2002,29,2.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2002,29,10.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2002,29,1.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2002,29,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2002,29,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2002,29,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2002,29,35.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2002,29,0.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2002,29,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2002,29,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2002,29,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2002,29,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2002,29,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2002,29,0.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2002,29,110.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2002,29,1.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2002,29,10.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2002,29,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2002,29,1.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2002,29,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2002,29,0.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2002,29,67.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2002,29,0.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2002,29,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2002,29,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2002,29,20.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2002,29,49.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2002,29,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2002,29,0.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2002,29,1.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2002,29,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2002,29,162.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2002,29,40.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2002,29,6.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2002,29,31.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2002,29,46.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2002,29,1.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2002,29,47.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2002,29,37.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2002,29,1.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2002,29,32.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2002,29,20.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2002,29,2.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2002,29,11.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2002,29,15.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2002,29,0.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2002,29,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2002,29,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2002,29,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2002,29,33.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2002,29,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2002,29,35.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2002,29,3.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2002,29,0.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2002,29,1.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2002,29,0.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2002,29,30.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2002,29,2.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2002,29,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2002,29,1.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2002,29,133.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2002,29,19.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2002,29,0.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2002,29,16.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2002,29,34.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2002,29,10.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2002,29,6.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2002,29,17.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2002,29,27.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2002,29,86.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2002,29,20.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2002,29,16.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2002,29,105.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2002,29,10.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2002,29,13.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2002,29,35.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2002,29,35.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2002,29,4.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2002,29,4.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2002,29,3.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2002,29,43.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2002,29,48.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2002,29,600.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2002,29,48.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2002,29,18.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2002,29,60.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2002,29,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2002,29,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2002,29,26.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2002,29,3.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2002,29,34.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2002,29,1.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2002,29,127.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2002,29,6.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2002,29,90.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2002,29,44.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2002,29,21.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2002,29,6.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2002,29,4.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2002,29,211.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2002,29,83.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2002,29,24.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2002,29,7.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2002,29,2.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2002,29,6.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2002,29,1.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2002,29,18.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2002,29,11.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2002,29,9.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2002,29,27.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2002,29,456.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2002,29,1.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2002,29,50.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2002,29,34.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2002,29,9.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2002,29,12.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2002,29,34.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2002,29,83.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2002,29,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2002,29,1.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2002,29,139.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2002,29,36.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2002,29,0.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2002,29,102.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2002,29,3.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2002,29,11.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2002,29,165.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2002,29,7.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,74.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,5.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,19.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,79.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2002,29,8.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2002,29,32.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2002,29,9.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,83.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,130.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,7.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,28.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,66.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,72.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2002,29,121.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2002,29,129.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2002,29,70.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2002,29,214.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2002,29,736.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2002,29,62.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2002,29,83.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2002,29,106.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2002,29,284.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2002,29,80.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2002,29,338.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2002,29,112.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2002,29,55.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2002,29,25.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2002,29,71.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2002,29,175.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2002,29,50.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2002,29,84.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2002,29,44.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2002,29,47.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2002,29,71.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2002,29,151.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2002,29,315.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2002,29,68.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2002,29,17.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2002,29,20.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2002,29,42.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2002,29,230.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2002,29,83.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2002,29,126.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2002,29,103.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2002,29,158.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2002,29,57.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2002,29,73.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2002,29,26.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2002,29,15.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2002,29,1146.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2002,29,327.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2002,29,268.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2002,29,49.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2002,29,169.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2002,29,126.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2002,29,196.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2002,29,258.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2002,29,78.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2002,29,1076.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2002,29,184.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2002,29,2.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2002,29,6.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2002,29,15.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2002,29,1.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2002,29,9.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2002,29,4.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2002,29,29.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2002,29,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2002,29,34.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2002,29,40.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2002,29,9.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2002,29,680.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2002,29,54.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2002,29,15.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2002,29,9.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2002,29,11.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,1.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,125.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2002,29,14.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2002,29,8.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,6.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,1.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,9.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,19.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2002,29,311.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2002,29,8.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2002,29,83.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2002,29,1.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2002,29,19.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2002,29,15.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2002,29,41.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2002,29,73.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2002,29,5.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2002,29,20.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2002,29,57.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2002,29,62.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2002,29,33.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2002,29,52.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2002,29,230.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2002,29,12.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2002,29,37.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2002,29,367.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2002,29,114.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2002,29,64.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,19.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,161.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,479.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,1306.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2002,29,8.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2002,29,20.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2002,29,112.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2002,29,31.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2002,29,97.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2002,29,9.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2002,29,114.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2002,29,193.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,54.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,1137.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2002,29,114.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,6.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,15.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2002,29,12.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,1.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,1.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2002,29,36.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,2.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2002,29,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,4.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2002,29,3.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2002,29,0.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,3.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,23.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,15.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,135.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2002,29,3.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,5.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,15.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,26.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2002,29,5.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,15.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2002,29,15.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,535.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,55.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,47.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,1385.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,27.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,3.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,7.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,1.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,25.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,231.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,112.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,9.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,13.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,401.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2002,29,27.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,12.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2002,29,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,1.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,37.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,1.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,4.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2002,29,1.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,2.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,1.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,1.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,72.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,199.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,2.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,7.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,60.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2002,29,43.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2002,29,13.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2002,29,40.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,2.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,113.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,8.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,61.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,22.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2002,29,5.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2002,29,3.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2002,29,974.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,277.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2002,29,28.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,172.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2002,29,5.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,39.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,15.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,88.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,22.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2002,29,12.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2002,29,1.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2002,29,27.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2002,29,1.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,35.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,471.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2002,29,844.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2002,29,169.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2002,29,449.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2002,29,40.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2002,29,7.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,6.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2002,29,113.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2002,29,2464.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,2.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,2.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2002,29,1.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,135.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,51.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,1.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,8.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2002,29,4.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2002,29,22.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2002,29,29.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2002,29,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2002,29,55.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2002,29,66.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2002,29,1.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,28.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,110.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,89.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,12.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2002,29,23.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2002,29,6.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2002,29,1.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2002,29,2.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2002,29,45.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2002,29,5.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2002,29,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2002,29,1.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,1.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2002,29,3.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2002,29,4.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2002,29,250.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,16.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,2.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2002,29,4.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,7.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,10.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,3.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2002,29,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,1.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,3.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,41.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2002,29,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,326.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,14.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2002,29,38.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,390.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,2.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,4.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,3.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,313.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2002,29,4.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2002,29,4660.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,27.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,19.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,5.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,20.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,2.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,81.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,2.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,25.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,400.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,3.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,157.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,26.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,18.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,8.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,10.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,44.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,11.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,513.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,1.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,1.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,2.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,10.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2002,29,2.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2002,29,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,1.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,1.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,1.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,0.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,1.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,2.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,4.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2002,29,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2002,29,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,1.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2002,29,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,1.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2002,29,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2002,29,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2002,29,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2002,29,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2002,29,3.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,1.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2002,29,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,6.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,2.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2002,29,1.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2002,29,3.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2002,29,12.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2002,29,2.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2002,29,90.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2002,29,10.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2002,29,8.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2002,29,9.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2002,29,5.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2002,29,22.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2002,29,76.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2002,29,18.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2002,29,10.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2002,29,2.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2002,29,5.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2002,29,30.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2002,29,0.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,59.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2002,29,29.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,0.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2002,29,5.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,4.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,9.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2002,29,10.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,8.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2002,29,36.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2002,29,4.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,1.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,68.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2002,29,2.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,17.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,2.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,6.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2002,29,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2002,29,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2002,29,1.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2002,29,13.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2002,29,12.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2002,29,0.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2002,29,4.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2002,29,4.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2002,29,2.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2002,29,3.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2002,29,514.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2002,29,5.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2002,29,41.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2002,29,23.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2002,29,1.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2002,29,9.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2002,29,1.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2002,29,2.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2002,29,4.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2002,29,110.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2002,30,5.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2002,30,1.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2002,30,8.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2002,30,4.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2002,30,2.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2002,30,0.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2002,30,4.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2002,30,0.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2002,30,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2002,30,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2002,30,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2002,30,23.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2002,30,1.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2002,30,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2002,30,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2002,30,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2002,30,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2002,30,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2002,30,2.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2002,30,88.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2002,30,3.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2002,30,2.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2002,30,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2002,30,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2002,30,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2002,30,0.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2002,30,45.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2002,30,2.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2002,30,2.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2002,30,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2002,30,12.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2002,30,8.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2002,30,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2002,30,0.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2002,30,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2002,30,1.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2002,30,67.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2002,30,17.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2002,30,1.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2002,30,30.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2002,30,19.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2002,30,2.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2002,30,12.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2002,30,24.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2002,30,1.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2002,30,12.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2002,30,7.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2002,30,0.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2002,30,24.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2002,30,10.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2002,30,0.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2002,30,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2002,30,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2002,30,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2002,30,36.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2002,30,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2002,30,5.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2002,30,2.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2002,30,1.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2002,30,0.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2002,30,0.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2002,30,24.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2002,30,2.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2002,30,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2002,30,1.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2002,30,91.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2002,30,20.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2002,30,1.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2002,30,5.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2002,30,11.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2002,30,6.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2002,30,4.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2002,30,5.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2002,30,13.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2002,30,42.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2002,30,3.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2002,30,7.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2002,30,54.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2002,30,2.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2002,30,12.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2002,30,40.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2002,30,23.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2002,30,0.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2002,30,0.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2002,30,0.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2002,30,13.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2002,30,23.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2002,30,400.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2002,30,24.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2002,30,16.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2002,30,48.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2002,30,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2002,30,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2002,30,3.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2002,30,1.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2002,30,9.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2002,30,0.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2002,30,86.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2002,30,1.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2002,30,19.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2002,30,43.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2002,30,21.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2002,30,0.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2002,30,8.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2002,30,275.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2002,30,54.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2002,30,13.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2002,30,1.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2002,30,5.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2002,30,8.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2002,30,2.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2002,30,10.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2002,30,8.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2002,30,7.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2002,30,23.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2002,30,454.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2002,30,4.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2002,30,55.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2002,30,15.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2002,30,5.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2002,30,2.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2002,30,45.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2002,30,60.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2002,30,3.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2002,30,2.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2002,30,113.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2002,30,17.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2002,30,0.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2002,30,30.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2002,30,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2002,30,1.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2002,30,49.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2002,30,1.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,49.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,12.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,33.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,32.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2002,30,8.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2002,30,18.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2002,30,8.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,67.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,74.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,2.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,10.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,12.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,13.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2002,30,59.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2002,30,25.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2002,30,56.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2002,30,135.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2002,30,545.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2002,30,11.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2002,30,26.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2002,30,56.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2002,30,135.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2002,30,71.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2002,30,258.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2002,30,26.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2002,30,18.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2002,30,8.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2002,30,29.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2002,30,37.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2002,30,19.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2002,30,52.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2002,30,9.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2002,30,19.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2002,30,31.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2002,30,46.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2002,30,145.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2002,30,14.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2002,30,5.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2002,30,8.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2002,30,13.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2002,30,115.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2002,30,17.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2002,30,39.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2002,30,34.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2002,30,48.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2002,30,24.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2002,30,24.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2002,30,5.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2002,30,2.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2002,30,473.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2002,30,118.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2002,30,68.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2002,30,11.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2002,30,40.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2002,30,53.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2002,30,26.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2002,30,101.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2002,30,36.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2002,30,285.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2002,30,64.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2002,30,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2002,30,4.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2002,30,3.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2002,30,1.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2002,30,7.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2002,30,1.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2002,30,12.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2002,30,1.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2002,30,12.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2002,30,16.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2002,30,0.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2002,30,404.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2002,30,41.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2002,30,5.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2002,30,1.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2002,30,24.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,1.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,100.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2002,30,4.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2002,30,5.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,4.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,7.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,17.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2002,30,316.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2002,30,5.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2002,30,92.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2002,30,0.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2002,30,9.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2002,30,3.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2002,30,21.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2002,30,29.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2002,30,0.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2002,30,8.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2002,30,13.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2002,30,10.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2002,30,9.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2002,30,11.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2002,30,108.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2002,30,6.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2002,30,20.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2002,30,195.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2002,30,20.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2002,30,14.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,14.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,27.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,79.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,457.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2002,30,5.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2002,30,9.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2002,30,27.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2002,30,14.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2002,30,12.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2002,30,1.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2002,30,28.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2002,30,56.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,35.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,336.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2002,30,105.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,1.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,0.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,6.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2002,30,1.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,0.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2002,30,4.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,0.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2002,30,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,0.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2002,30,3.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2002,30,0.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,7.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,1.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,1.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,23.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2002,30,2.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,0.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,2.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,6.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2002,30,3.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,0.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2002,30,3.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,128.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,19.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,2.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,248.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,3.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,1.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,1.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,35.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,32.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,1.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,9.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,52.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2002,30,15.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2002,30,1.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,12.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,1.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2002,30,1.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,12.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,4.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,0.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,0.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,5.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2002,30,4.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2002,30,1.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,1.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,28.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,20.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,5.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2002,30,4.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2002,30,556.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,203.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2002,30,5.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,18.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,6.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,7.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,23.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,5.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2002,30,2.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2002,30,0.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2002,30,6.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2002,30,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,10.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,200.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2002,30,120.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2002,30,53.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2002,30,150.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2002,30,7.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2002,30,1.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,5.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2002,30,9.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2002,30,641.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,1.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2002,30,1.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,38.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,18.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,1.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2002,30,0.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2002,30,11.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2002,30,9.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2002,30,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2002,30,5.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2002,30,7.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2002,30,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,12.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,60.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,34.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,1.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2002,30,5.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2002,30,1.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2002,30,2.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2002,30,2.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2002,30,4.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2002,30,3.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2002,30,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2002,30,1.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,1.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2002,30,0.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2002,30,1.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2002,30,18.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,5.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2002,30,4.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,1.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,16.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,0.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2002,30,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,0.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,19.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,1.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2002,30,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,81.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,2.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2002,30,13.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,130.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,0.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,8.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,3.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,86.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2002,30,3.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2002,30,1448.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,2.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,2.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,1.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,14.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,4.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,1.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,44.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,2.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,46.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,6.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,1.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,2.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,4.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,89.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,1.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,2.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2002,30,1.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2002,30,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,1.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,1.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,1.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2002,30,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,1.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2002,30,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2002,30,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2002,30,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2002,30,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2002,30,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2002,30,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2002,30,0.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,1.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2002,30,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,3.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,1.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2002,30,1.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2002,30,0.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2002,30,4.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2002,30,1.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2002,30,28.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2002,30,8.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2002,30,1.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2002,30,2.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2002,30,2.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2002,30,12.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2002,30,19.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2002,30,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2002,30,12.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2002,30,1.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2002,30,1.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2002,30,13.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2002,30,0.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,9.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2002,30,25.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,0.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2002,30,8.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,1.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,6.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2002,30,1.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,6.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2002,30,13.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2002,30,2.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,2.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,64.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2002,30,1.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,3.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,0.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,1.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2002,30,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2002,30,1.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2002,30,1.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2002,30,1.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2002,30,10.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2002,30,140.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2002,30,1.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2002,30,12.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2002,30,4.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2002,30,4.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2002,30,1.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2002,30,0.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2002,30,2.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2002,30,27.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2002,31,13.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2002,31,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2002,31,1.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2002,31,6.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2002,31,0.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2002,31,0.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2002,31,3.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2002,31,0.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2002,31,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2002,31,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2002,31,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2002,31,19.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2002,31,0.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2002,31,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2002,31,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2002,31,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2002,31,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2002,31,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2002,31,1.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2002,31,90.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2002,31,1.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2002,31,0.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2002,31,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2002,31,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2002,31,1.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2002,31,2.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2002,31,60.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2002,31,0.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2002,31,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2002,31,1.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2002,31,2.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2002,31,3.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2002,31,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2002,31,1.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2002,31,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2002,31,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2002,31,49.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2002,31,15.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2002,31,1.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2002,31,22.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2002,31,29.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2002,31,1.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2002,31,9.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2002,31,13.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2002,31,0.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2002,31,14.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2002,31,7.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2002,31,0.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2002,31,11.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2002,31,7.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2002,31,1.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2002,31,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2002,31,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2002,31,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2002,31,53.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2002,31,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2002,31,2.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2002,31,1.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2002,31,1.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2002,31,1.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2002,31,0.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2002,31,10.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2002,31,0.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2002,31,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2002,31,1.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2002,31,74.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2002,31,12.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2002,31,0.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2002,31,8.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2002,31,3.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2002,31,3.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2002,31,2.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2002,31,4.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2002,31,26.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2002,31,30.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2002,31,4.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2002,31,16.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2002,31,44.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2002,31,8.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2002,31,6.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2002,31,16.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2002,31,32.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2002,31,1.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2002,31,0.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2002,31,0.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2002,31,21.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2002,31,29.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2002,31,338.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2002,31,9.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2002,31,9.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2002,31,26.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2002,31,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2002,31,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2002,31,0.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2002,31,0.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2002,31,2.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2002,31,0.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2002,31,19.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2002,31,0.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2002,31,8.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2002,31,71.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2002,31,22.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2002,31,2.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2002,31,7.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2002,31,285.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2002,31,90.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2002,31,1.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2002,31,5.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2002,31,17.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2002,31,9.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2002,31,1.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2002,31,4.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2002,31,10.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2002,31,1.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2002,31,15.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2002,31,455.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2002,31,2.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2002,31,45.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2002,31,10.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2002,31,8.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2002,31,0.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2002,31,17.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2002,31,46.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2002,31,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2002,31,0.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2002,31,37.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2002,31,14.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2002,31,0.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2002,31,4.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2002,31,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2002,31,0.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2002,31,16.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2002,31,3.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,37.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,17.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,28.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,27.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2002,31,9.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2002,31,36.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2002,31,5.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,20.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,55.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,4.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,6.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,19.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,12.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2002,31,64.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2002,31,27.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2002,31,41.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2002,31,120.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2002,31,591.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2002,31,13.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2002,31,51.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2002,31,47.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2002,31,39.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2002,31,79.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2002,31,214.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2002,31,22.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2002,31,22.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2002,31,15.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2002,31,46.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2002,31,33.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2002,31,37.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2002,31,34.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2002,31,6.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2002,31,15.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2002,31,40.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2002,31,31.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2002,31,83.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2002,31,34.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2002,31,1.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2002,31,8.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2002,31,17.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2002,31,60.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2002,31,15.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2002,31,8.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2002,31,3.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2002,31,14.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2002,31,19.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2002,31,6.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2002,31,0.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2002,31,4.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2002,31,237.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2002,31,80.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2002,31,60.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2002,31,7.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2002,31,71.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2002,31,24.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2002,31,32.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2002,31,64.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2002,31,16.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2002,31,234.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2002,31,39.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2002,31,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2002,31,2.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2002,31,1.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2002,31,0.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2002,31,9.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2002,31,1.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2002,31,15.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2002,31,1.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2002,31,10.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2002,31,34.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2002,31,0.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2002,31,270.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2002,31,19.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2002,31,9.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2002,31,0.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2002,31,12.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,1.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,67.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2002,31,3.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2002,31,8.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,1.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,14.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,22.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2002,31,231.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2002,31,6.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2002,31,81.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2002,31,2.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2002,31,0.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2002,31,2.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2002,31,28.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2002,31,24.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2002,31,1.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2002,31,3.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2002,31,16.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2002,31,3.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2002,31,3.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2002,31,4.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2002,31,58.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2002,31,3.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2002,31,3.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2002,31,102.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2002,31,11.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2002,31,15.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,13.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,7.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,40.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,263.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2002,31,12.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2002,31,2.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2002,31,13.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2002,31,8.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2002,31,9.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2002,31,1.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2002,31,38.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2002,31,14.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,21.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,222.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2002,31,55.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,0.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,2.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2002,31,2.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,0.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2002,31,1.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,0.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2002,31,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,0.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2002,31,6.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2002,31,0.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,2.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,5.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2002,31,1.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,0.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,1.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,1.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2002,31,0.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,0.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2002,31,1.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,26.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,4.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,59.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,4.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,7.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,5.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,0.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,11.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2002,31,4.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2002,31,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,1.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,2.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,1.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,1.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2002,31,0.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,14.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,5.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,9.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2002,31,270.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,94.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2002,31,4.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,26.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,7.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,10.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2002,31,3.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,4.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,58.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2002,31,12.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2002,31,14.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2002,31,29.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2002,31,4.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2002,31,2.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,3.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2002,31,317.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2002,31,1.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,4.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,1.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2002,31,0.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2002,31,5.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2002,31,6.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2002,31,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2002,31,1.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2002,31,4.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2002,31,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,2.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,18.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,5.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2002,31,2.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2002,31,1.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2002,31,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2002,31,1.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2002,31,2.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2002,31,0.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2002,31,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2002,31,0.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2002,31,0.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,1.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2002,31,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,4.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2002,31,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,22.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,4.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2002,31,3.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,12.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,2.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,25.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2002,31,1.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2002,31,198.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,2.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,1.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,1.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,5.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,2.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,6.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,15.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,1.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,1.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,1.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,13.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,4.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2002,31,1.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2002,31,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,1.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,1.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2002,31,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,1.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2002,31,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2002,31,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2002,31,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2002,31,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2002,31,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2002,31,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2002,31,1.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2002,31,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,5.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2002,31,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2002,31,0.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2002,31,1.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2002,31,1.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2002,31,10.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2002,31,3.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2002,31,0.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2002,31,0.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2002,31,0.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2002,31,3.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2002,31,8.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2002,31,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2002,31,11.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2002,31,0.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2002,31,0.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2002,31,5.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2002,31,0.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,6.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2002,31,8.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,1.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2002,31,2.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,5.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,4.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2002,31,3.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,2.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2002,31,8.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2002,31,1.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,0.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,18.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2002,31,0.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,3.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,0.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,1.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2002,31,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2002,31,4.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2002,31,1.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2002,31,4.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2002,31,130.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2002,31,4.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2002,31,1.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2002,31,4.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2002,31,1.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2002,31,0.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2002,31,30.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2002,32,3.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2002,32,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2002,32,0.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2002,32,3.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2002,32,0.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2002,32,0.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2002,32,3.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2002,32,0.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2002,32,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2002,32,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2002,32,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2002,32,12.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2002,32,0.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2002,32,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2002,32,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2002,32,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2002,32,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2002,32,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2002,32,2.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2002,32,124.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2002,32,1.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2002,32,4.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2002,32,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2002,32,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2002,32,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2002,32,0.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2002,32,38.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2002,32,1.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2002,32,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2002,32,1.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2002,32,5.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2002,32,1.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2002,32,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2002,32,2.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2002,32,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2002,32,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2002,32,51.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2002,32,6.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2002,32,0.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2002,32,14.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2002,32,69.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2002,32,5.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2002,32,4.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2002,32,12.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2002,32,3.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2002,32,9.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2002,32,9.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2002,32,2.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2002,32,8.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2002,32,0.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2002,32,0.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2002,32,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2002,32,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2002,32,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2002,32,112.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2002,32,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2002,32,0.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2002,32,0.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2002,32,0.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2002,32,1.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2002,32,2.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2002,32,7.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2002,32,0.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2002,32,1.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2002,32,2.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2002,32,59.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2002,32,29.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2002,32,7.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2002,32,8.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2002,32,11.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2002,32,12.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2002,32,3.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2002,32,19.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2002,32,12.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2002,32,56.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2002,32,2.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2002,32,46.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2002,32,40.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2002,32,1.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2002,32,1.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2002,32,20.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2002,32,15.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2002,32,1.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2002,32,1.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2002,32,0.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2002,32,69.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2002,32,38.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2002,32,170.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2002,32,48.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2002,32,8.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2002,32,8.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2002,32,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2002,32,1.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2002,32,1.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2002,32,0.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2002,32,1.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2002,32,0.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2002,32,6.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2002,32,0.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2002,32,17.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2002,32,69.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2002,32,6.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2002,32,8.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2002,32,3.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2002,32,156.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2002,32,32.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2002,32,0.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2002,32,2.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2002,32,8.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2002,32,19.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2002,32,4.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2002,32,3.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2002,32,3.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2002,32,1.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2002,32,12.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2002,32,533.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2002,32,0.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2002,32,73.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2002,32,6.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2002,32,18.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2002,32,0.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2002,32,13.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2002,32,37.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2002,32,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2002,32,0.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2002,32,17.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2002,32,3.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2002,32,3.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2002,32,9.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2002,32,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2002,32,1.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2002,32,6.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2002,32,0.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,37.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,10.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,13.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,24.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2002,32,4.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2002,32,5.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2002,32,3.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,6.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,57.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,1.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,1.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,30.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,21.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2002,32,25.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2002,32,8.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2002,32,16.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2002,32,90.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2002,32,552.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2002,32,11.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2002,32,17.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2002,32,114.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2002,32,9.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2002,32,37.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2002,32,70.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2002,32,53.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2002,32,10.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2002,32,9.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2002,32,33.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2002,32,62.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2002,32,7.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2002,32,17.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2002,32,6.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2002,32,11.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2002,32,22.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2002,32,11.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2002,32,68.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2002,32,10.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2002,32,0.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2002,32,21.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2002,32,6.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2002,32,27.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2002,32,12.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2002,32,5.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2002,32,2.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2002,32,15.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2002,32,13.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2002,32,22.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2002,32,1.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2002,32,7.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2002,32,91.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2002,32,61.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2002,32,38.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2002,32,2.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2002,32,30.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2002,32,25.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2002,32,14.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2002,32,21.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2002,32,17.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2002,32,147.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2002,32,23.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2002,32,1.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2002,32,1.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2002,32,5.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2002,32,1.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2002,32,6.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2002,32,1.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2002,32,4.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2002,32,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2002,32,4.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2002,32,24.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2002,32,2.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2002,32,145.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2002,32,12.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2002,32,9.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2002,32,7.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2002,32,12.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,2.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,37.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2002,32,2.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2002,32,2.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,1.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,4.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,6.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,10.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2002,32,156.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2002,32,7.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2002,32,42.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2002,32,5.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2002,32,0.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2002,32,0.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2002,32,20.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2002,32,16.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2002,32,0.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2002,32,3.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2002,32,7.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2002,32,0.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2002,32,1.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2002,32,7.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2002,32,47.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2002,32,1.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2002,32,5.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2002,32,85.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2002,32,7.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2002,32,14.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,3.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,5.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,11.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,276.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2002,32,14.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2002,32,1.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2002,32,9.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2002,32,0.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2002,32,8.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2002,32,1.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2002,32,42.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2002,32,38.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,7.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,171.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2002,32,34.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,4.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,2.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2002,32,0.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,1.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2002,32,1.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,1.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2002,32,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,0.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2002,32,1.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2002,32,1.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,0.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,0.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2002,32,0.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,1.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,1.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,1.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2002,32,1.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,0.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2002,32,0.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,10.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,6.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,1.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,33.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,2.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,2.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,8.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,2.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,0.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,9.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2002,32,0.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,1.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2002,32,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,1.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,1.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2002,32,1.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2002,32,0.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,7.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,2.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,2.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2002,32,1.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2002,32,2.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2002,32,203.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,49.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2002,32,1.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,28.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,6.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,5.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,3.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2002,32,1.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,3.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,28.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2002,32,16.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2002,32,4.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2002,32,5.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2002,32,1.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2002,32,2.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2002,32,220.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2002,32,1.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,3.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,7.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2002,32,0.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2002,32,0.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2002,32,1.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2002,32,2.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2002,32,1.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2002,32,0.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2002,32,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,14.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,13.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,5.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,1.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2002,32,0.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2002,32,3.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2002,32,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2002,32,0.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2002,32,0.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2002,32,1.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2002,32,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,1.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2002,32,2.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,2.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2002,32,0.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,10.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2002,32,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,1.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2002,32,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,5.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,1.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2002,32,1.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,2.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,0.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,2.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,1.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,10.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2002,32,2.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2002,32,52.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,1.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,1.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,1.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,3.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,1.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,12.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,3.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,8.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,2.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,38.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2002,32,7.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2002,32,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,1.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2002,32,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2002,32,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2002,32,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,1.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2002,32,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2002,32,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2002,32,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2002,32,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2002,32,0.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,2.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2002,32,1.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,4.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,1.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2002,32,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2002,32,0.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2002,32,1.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2002,32,1.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2002,32,24.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2002,32,0.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2002,32,0.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2002,32,2.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2002,32,0.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2002,32,0.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2002,32,14.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2002,32,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2002,32,8.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2002,32,1.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2002,32,1.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2002,32,2.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2002,32,0.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,1.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2002,32,3.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,0.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2002,32,2.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,3.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,1.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2002,32,0.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,3.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2002,32,4.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2002,32,4.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,0.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,15.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2002,32,2.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,1.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,0.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,0.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2002,32,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2002,32,2.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2002,32,7.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2002,32,5.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2002,32,1.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2002,32,2.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2002,32,237.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2002,32,7.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2002,32,2.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2002,32,0.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2002,32,3.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2002,32,29.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2002,33,7.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2002,33,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2002,33,0.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2002,33,12.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2002,33,1.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2002,33,0.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2002,33,5.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2002,33,4.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2002,33,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2002,33,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2002,33,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2002,33,14.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2002,33,0.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2002,33,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2002,33,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2002,33,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2002,33,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2002,33,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2002,33,0.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2002,33,66.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2002,33,1.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2002,33,3.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2002,33,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2002,33,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2002,33,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2002,33,3.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2002,33,38.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2002,33,0.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2002,33,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2002,33,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2002,33,3.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2002,33,2.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2002,33,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2002,33,6.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2002,33,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2002,33,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2002,33,144.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2002,33,6.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2002,33,5.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2002,33,5.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2002,33,49.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2002,33,11.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2002,33,12.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2002,33,5.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2002,33,0.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2002,33,6.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2002,33,25.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2002,33,1.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2002,33,12.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2002,33,0.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2002,33,0.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2002,33,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2002,33,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2002,33,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2002,33,90.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2002,33,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2002,33,0.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2002,33,4.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2002,33,0.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2002,33,0.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2002,33,0.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2002,33,10.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2002,33,0.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2002,33,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2002,33,10.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2002,33,11.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2002,33,9.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2002,33,28.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2002,33,6.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2002,33,1.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2002,33,36.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2002,33,2.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2002,33,6.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2002,33,20.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2002,33,54.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2002,33,22.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2002,33,1.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2002,33,13.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2002,33,2.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2002,33,0.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2002,33,6.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2002,33,4.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2002,33,0.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2002,33,0.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2002,33,0.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2002,33,21.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2002,33,21.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2002,33,118.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2002,33,38.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2002,33,17.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2002,33,35.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2002,33,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2002,33,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2002,33,0.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2002,33,0.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2002,33,4.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2002,33,1.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2002,33,0.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2002,33,0.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2002,33,18.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2002,33,16.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2002,33,3.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2002,33,47.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2002,33,32.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2002,33,4.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2002,33,4.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2002,33,8.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2002,33,8.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2002,33,4.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2002,33,2.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2002,33,5.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2002,33,3.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2002,33,271.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2002,33,4.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2002,33,87.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2002,33,1.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2002,33,2.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2002,33,0.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2002,33,19.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2002,33,45.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2002,33,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2002,33,6.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2002,33,8.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2002,33,1.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2002,33,11.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2002,33,6.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2002,33,0.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,4.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,12.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,27.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,7.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2002,33,4.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2002,33,34.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2002,33,2.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,11.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,20.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,2.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,4.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,30.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,10.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2002,33,26.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2002,33,13.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2002,33,2.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2002,33,66.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2002,33,420.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2002,33,3.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2002,33,24.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2002,33,32.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2002,33,2.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2002,33,18.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2002,33,34.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2002,33,26.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2002,33,3.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2002,33,4.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2002,33,3.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2002,33,55.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2002,33,6.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2002,33,6.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2002,33,3.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2002,33,1.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2002,33,5.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2002,33,5.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2002,33,28.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2002,33,10.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2002,33,1.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2002,33,0.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2002,33,1.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2002,33,24.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2002,33,2.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2002,33,10.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2002,33,1.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2002,33,7.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2002,33,10.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2002,33,9.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2002,33,1.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2002,33,5.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2002,33,51.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2002,33,23.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2002,33,30.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2002,33,2.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2002,33,17.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2002,33,13.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2002,33,13.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2002,33,29.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2002,33,6.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2002,33,136.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2002,33,25.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2002,33,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2002,33,2.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2002,33,22.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2002,33,0.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2002,33,2.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2002,33,1.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2002,33,2.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2002,33,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2002,33,2.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2002,33,4.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2002,33,2.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2002,33,92.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2002,33,10.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2002,33,7.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2002,33,3.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2002,33,15.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,0.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,25.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2002,33,4.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2002,33,3.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,3.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,3.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,27.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2002,33,88.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2002,33,13.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2002,33,19.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2002,33,7.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2002,33,0.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2002,33,0.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2002,33,21.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2002,33,38.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2002,33,0.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2002,33,2.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2002,33,13.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2002,33,0.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2002,33,1.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2002,33,3.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2002,33,53.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2002,33,4.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2002,33,3.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2002,33,95.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2002,33,7.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2002,33,10.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,1.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,10.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,26.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,285.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2002,33,56.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2002,33,1.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2002,33,14.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2002,33,0.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2002,33,12.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2002,33,1.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2002,33,17.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2002,33,21.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,14.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,164.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2002,33,52.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2002,33,1.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2002,33,0.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,1.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2002,33,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,0.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2002,33,4.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2002,33,0.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,3.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2002,33,0.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,0.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,1.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2002,33,2.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,0.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2002,33,3.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,2.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,3.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,2.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,15.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,1.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,11.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,4.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,3.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,3.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,1.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,4.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2002,33,1.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2002,33,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,3.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,1.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,3.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2002,33,1.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2002,33,140.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,67.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,11.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,2.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,2.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2002,33,1.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2002,33,0.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,9.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2002,33,3.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2002,33,5.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2002,33,2.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2002,33,152.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2002,33,0.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,4.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2002,33,0.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2002,33,2.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,1.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,9.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2002,33,0.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2002,33,0.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2002,33,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2002,33,0.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2002,33,0.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2002,33,0.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,4.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,1.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2002,33,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2002,33,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,4.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2002,33,0.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,2.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,1.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,10.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2002,33,0.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2002,33,28.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,4.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,1.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,6.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,1.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,1.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,3.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,2.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,17.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,1.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2002,33,0.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2002,33,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,3.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2002,33,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,1.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2002,33,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2002,33,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,2.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2002,33,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2002,33,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2002,33,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2002,33,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2002,33,0.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2002,33,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,3.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,1.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2002,33,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2002,33,0.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2002,33,1.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2002,33,1.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2002,33,3.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2002,33,0.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2002,33,0.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2002,33,1.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2002,33,0.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2002,33,7.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2002,33,8.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2002,33,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2002,33,11.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2002,33,2.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2002,33,0.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2002,33,0.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2002,33,0.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,0.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2002,33,1.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,0.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2002,33,0.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,4.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,4.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2002,33,4.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,1.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2002,33,33.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2002,33,4.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,0.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,2.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2002,33,0.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,2.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,0.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,0.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2002,33,1.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2002,33,1.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2002,33,12.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2002,33,1.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2002,33,247.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2002,33,1.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2002,33,3.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2002,33,1.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2002,33,1.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2002,33,3.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2002,33,1.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2002,33,0.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2002,33,6.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2002,34,36.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2002,34,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2002,34,0.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2002,34,15.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2002,34,2.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2002,34,2.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2002,34,8.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2002,34,1.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2002,34,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2002,34,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2002,34,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2002,34,17.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2002,34,1.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2002,34,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2002,34,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2002,34,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2002,34,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2002,34,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2002,34,1.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2002,34,56.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2002,34,0.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2002,34,2.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2002,34,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2002,34,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2002,34,1.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2002,34,2.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2002,34,103.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2002,34,2.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2002,34,2.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2002,34,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2002,34,0.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2002,34,6.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2002,34,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2002,34,3.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2002,34,1.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2002,34,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2002,34,137.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2002,34,12.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2002,34,2.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2002,34,6.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2002,34,73.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2002,34,13.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2002,34,8.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2002,34,32.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2002,34,1.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2002,34,14.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2002,34,24.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2002,34,0.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2002,34,9.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2002,34,3.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2002,34,0.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2002,34,0.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2002,34,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2002,34,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2002,34,28.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2002,34,3.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2002,34,6.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2002,34,24.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2002,34,0.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2002,34,1.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2002,34,2.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2002,34,31.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2002,34,0.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2002,34,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2002,34,0.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2002,34,9.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2002,34,18.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2002,34,5.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2002,34,1.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2002,34,8.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2002,34,20.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2002,34,5.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2002,34,10.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2002,34,79.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2002,34,98.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2002,34,68.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2002,34,26.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2002,34,24.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2002,34,10.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2002,34,0.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2002,34,39.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2002,34,11.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2002,34,0.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2002,34,0.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2002,34,0.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2002,34,32.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2002,34,33.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2002,34,106.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2002,34,5.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2002,34,18.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2002,34,8.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2002,34,4.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2002,34,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2002,34,1.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2002,34,0.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2002,34,11.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2002,34,0.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2002,34,3.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2002,34,0.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2002,34,36.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2002,34,43.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2002,34,1.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2002,34,1.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2002,34,0.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2002,34,38.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2002,34,63.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2002,34,5.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2002,34,1.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2002,34,1.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2002,34,12.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2002,34,2.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2002,34,3.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2002,34,7.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2002,34,0.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2002,34,3.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2002,34,200.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2002,34,3.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2002,34,187.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2002,34,2.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2002,34,2.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2002,34,2.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2002,34,18.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2002,34,35.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2002,34,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2002,34,0.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2002,34,0.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2002,34,24.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2002,34,0.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2002,34,66.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2002,34,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2002,34,0.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2002,34,23.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2002,34,1.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,8.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,2.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,30.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,4.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2002,34,8.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2002,34,24.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2002,34,8.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,11.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,168.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,7.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,0.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,32.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,11.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2002,34,13.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2002,34,3.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2002,34,3.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2002,34,72.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2002,34,304.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2002,34,1.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2002,34,48.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2002,34,15.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2002,34,1.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2002,34,32.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2002,34,9.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2002,34,21.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2002,34,14.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2002,34,4.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2002,34,11.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2002,34,64.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2002,34,0.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2002,34,10.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2002,34,0.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2002,34,4.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2002,34,4.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2002,34,5.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2002,34,29.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2002,34,4.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2002,34,1.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2002,34,2.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2002,34,1.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2002,34,9.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2002,34,2.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2002,34,16.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2002,34,2.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2002,34,4.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2002,34,4.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2002,34,7.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2002,34,0.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2002,34,1.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2002,34,65.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2002,34,19.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2002,34,27.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2002,34,0.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2002,34,7.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2002,34,25.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2002,34,18.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2002,34,87.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2002,34,21.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2002,34,128.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2002,34,39.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2002,34,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2002,34,0.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2002,34,21.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2002,34,1.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2002,34,4.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2002,34,1.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2002,34,5.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2002,34,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2002,34,0.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2002,34,3.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2002,34,0.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2002,34,61.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2002,34,6.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2002,34,1.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2002,34,3.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2002,34,11.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,0.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,20.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2002,34,3.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2002,34,3.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,1.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,4.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,13.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2002,34,97.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2002,34,3.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2002,34,15.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2002,34,0.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2002,34,0.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2002,34,0.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2002,34,22.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2002,34,45.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2002,34,0.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2002,34,3.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2002,34,9.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2002,34,7.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2002,34,6.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2002,34,4.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2002,34,65.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2002,34,17.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2002,34,11.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2002,34,88.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2002,34,3.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2002,34,3.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,0.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,11.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,27.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,208.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2002,34,18.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2002,34,7.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2002,34,15.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2002,34,0.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2002,34,8.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2002,34,2.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2002,34,17.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2002,34,16.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,1.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,148.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2002,34,79.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2002,34,0.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2002,34,1.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2002,34,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,0.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2002,34,17.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2002,34,0.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,1.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2002,34,0.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,0.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,2.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,8.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2002,34,0.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,4.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2002,34,0.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,4.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,4.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,3.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,10.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,1.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,4.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,13.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,0.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,2.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2002,34,0.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2002,34,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,2.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,2.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,9.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2002,34,3.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2002,34,178.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,31.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2002,34,2.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,15.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,5.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,2.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,4.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2002,34,1.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2002,34,0.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,7.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2002,34,11.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2002,34,1.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2002,34,2.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2002,34,2.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2002,34,281.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2002,34,1.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,3.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2002,34,0.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2002,34,0.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2002,34,1.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,1.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,30.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2002,34,0.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2002,34,0.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2002,34,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2002,34,0.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2002,34,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,3.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2002,34,1.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2002,34,0.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,10.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,2.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2002,34,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2002,34,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,2.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2002,34,0.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,5.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,1.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,4.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2002,34,0.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2002,34,18.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,2.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,18.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,1.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,11.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,1.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,1.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,16.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2002,34,1.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2002,34,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,1.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2002,34,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,2.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2002,34,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2002,34,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2002,34,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2002,34,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2002,34,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2002,34,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2002,34,0.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2002,34,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,1.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2002,34,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2002,34,0.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2002,34,0.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2002,34,1.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2002,34,4.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2002,34,0.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2002,34,1.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2002,34,0.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2002,34,1.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2002,34,3.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2002,34,3.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2002,34,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2002,34,10.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2002,34,2.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2002,34,8.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2002,34,2.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2002,34,1.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,3.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2002,34,6.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,0.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2002,34,3.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,3.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,1.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2002,34,2.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,2.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2002,34,156.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2002,34,1.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,0.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,23.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2002,34,1.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,2.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,0.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,0.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2002,34,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2002,34,1.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2002,34,4.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2002,34,2.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2002,34,1.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2002,34,121.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2002,34,5.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2002,34,2.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2002,34,0.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2002,34,1.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2002,34,1.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2002,34,1.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2002,34,19.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2002,35,134.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2002,35,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2002,35,10.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2002,35,73.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2002,35,21.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2002,35,8.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2002,35,54.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2002,35,7.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2002,35,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2002,35,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2002,35,1.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2002,35,88.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2002,35,1.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2002,35,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2002,35,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2002,35,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2002,35,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2002,35,0.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2002,35,0.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2002,35,158.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2002,35,0.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2002,35,7.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2002,35,1.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2002,35,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2002,35,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2002,35,1.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2002,35,84.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2002,35,0.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2002,35,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2002,35,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2002,35,7.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2002,35,9.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2002,35,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2002,35,5.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2002,35,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2002,35,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2002,35,134.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2002,35,20.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2002,35,16.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2002,35,8.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2002,35,84.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2002,35,42.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2002,35,11.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2002,35,35.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2002,35,0.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2002,35,11.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2002,35,50.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2002,35,3.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2002,35,27.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2002,35,34.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2002,35,8.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2002,35,3.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2002,35,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2002,35,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2002,35,29.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2002,35,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2002,35,33.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2002,35,30.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2002,35,2.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2002,35,1.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2002,35,1.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2002,35,77.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2002,35,1.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2002,35,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2002,35,4.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2002,35,10.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2002,35,52.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2002,35,0.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2002,35,1.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2002,35,30.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2002,35,19.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2002,35,16.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2002,35,26.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2002,35,63.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2002,35,44.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2002,35,80.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2002,35,13.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2002,35,11.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2002,35,14.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2002,35,3.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2002,35,39.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2002,35,50.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2002,35,4.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2002,35,1.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2002,35,1.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2002,35,90.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2002,35,28.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2002,35,73.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2002,35,46.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2002,35,9.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2002,35,8.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2002,35,2.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2002,35,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2002,35,1.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2002,35,3.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2002,35,27.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2002,35,0.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2002,35,2.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2002,35,1.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2002,35,63.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2002,35,29.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2002,35,16.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2002,35,1.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2002,35,4.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2002,35,28.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2002,35,26.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2002,35,4.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2002,35,3.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2002,35,1.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2002,35,7.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2002,35,3.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2002,35,18.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2002,35,10.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2002,35,0.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2002,35,4.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2002,35,253.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2002,35,1.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2002,35,349.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2002,35,11.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2002,35,8.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2002,35,2.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2002,35,11.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2002,35,31.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2002,35,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2002,35,1.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2002,35,0.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2002,35,29.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2002,35,13.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2002,35,4.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2002,35,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2002,35,0.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2002,35,18.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2002,35,4.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,3.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,5.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,26.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,2.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2002,35,28.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2002,35,28.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2002,35,52.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,4.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,9.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,3.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,2.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,31.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,9.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2002,35,28.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2002,35,4.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2002,35,7.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2002,35,43.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2002,35,358.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2002,35,2.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2002,35,69.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2002,35,11.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2002,35,4.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2002,35,92.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2002,35,17.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2002,35,42.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2002,35,21.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2002,35,6.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2002,35,12.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2002,35,209.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2002,35,7.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2002,35,9.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2002,35,2.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2002,35,1.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2002,35,7.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2002,35,8.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2002,35,35.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2002,35,3.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2002,35,0.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2002,35,0.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2002,35,7.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2002,35,13.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2002,35,6.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2002,35,11.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2002,35,0.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2002,35,4.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2002,35,14.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2002,35,7.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2002,35,0.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2002,35,0.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2002,35,83.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2002,35,20.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2002,35,19.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2002,35,3.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2002,35,8.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2002,35,61.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2002,35,15.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2002,35,48.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2002,35,19.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2002,35,125.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2002,35,58.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2002,35,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2002,35,1.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2002,35,12.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2002,35,1.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2002,35,4.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2002,35,2.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2002,35,3.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2002,35,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2002,35,5.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2002,35,7.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2002,35,2.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2002,35,77.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2002,35,10.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2002,35,7.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2002,35,10.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2002,35,35.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,2.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,35.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2002,35,16.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2002,35,1.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,3.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,0.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,0.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,17.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2002,35,76.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2002,35,3.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2002,35,18.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2002,35,7.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2002,35,3.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2002,35,5.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2002,35,46.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2002,35,16.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2002,35,10.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2002,35,3.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2002,35,6.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2002,35,4.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2002,35,8.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2002,35,3.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2002,35,120.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2002,35,10.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2002,35,20.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2002,35,83.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2002,35,9.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2002,35,8.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,0.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,11.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,26.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,70.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2002,35,4.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2002,35,4.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2002,35,23.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2002,35,1.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2002,35,14.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2002,35,7.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2002,35,41.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2002,35,15.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,3.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,155.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2002,35,103.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,0.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,1.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2002,35,3.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,0.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2002,35,9.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,0.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2002,35,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,0.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2002,35,94.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2002,35,3.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,4.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,1.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,0.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,11.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2002,35,0.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,0.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,1.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,17.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2002,35,0.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,32.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2002,35,1.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,17.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,2.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,3.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,36.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,1.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,1.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,9.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,44.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,3.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,2.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,0.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,6.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2002,35,0.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2002,35,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,1.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,1.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,1.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,4.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,2.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,2.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,14.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2002,35,4.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2002,35,1.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2002,35,2.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,8.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,2.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,9.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2002,35,1.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2002,35,2.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2002,35,322.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,51.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2002,35,2.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,25.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,5.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,6.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,1.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2002,35,0.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,6.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,20.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2002,35,18.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2002,35,4.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2002,35,29.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2002,35,7.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2002,35,5.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,6.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2002,35,5.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2002,35,1029.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,4.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2002,35,1.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,5.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,3.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2002,35,0.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2002,35,2.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2002,35,9.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,1.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,100.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,1.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2002,35,0.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2002,35,0.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2002,35,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2002,35,0.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2002,35,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,9.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2002,35,1.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2002,35,0.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,21.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2002,35,0.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,1.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2002,35,0.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,6.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,1.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2002,35,0.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,30.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,0.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,1.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,2.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,15.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2002,35,2.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2002,35,18.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,1.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,1.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,36.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,2.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,1.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,27.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,1.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,1.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,8.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,13.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,1.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2002,35,1.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2002,35,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,1.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,1.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2002,35,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2002,35,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2002,35,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2002,35,1.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2002,35,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2002,35,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2002,35,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2002,35,0.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,1.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2002,35,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,2.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,1.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2002,35,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2002,35,7.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2002,35,8.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2002,35,1.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2002,35,19.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2002,35,0.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2002,35,0.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2002,35,0.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2002,35,1.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2002,35,2.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2002,35,7.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2002,35,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2002,35,13.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2002,35,9.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2002,35,16.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2002,35,6.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2002,35,1.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,1.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2002,35,8.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,6.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2002,35,3.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,9.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,6.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2002,35,14.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,15.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2002,35,221.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2002,35,11.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,9.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,122.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2002,35,3.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,16.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,4.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,6.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2002,35,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2002,35,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2002,35,0.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2002,35,1.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2002,35,13.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2002,35,1.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2002,35,0.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2002,35,1.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2002,35,3.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2002,35,1.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2002,35,324.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2002,35,0.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2002,35,12.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2002,35,2.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2002,35,0.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2002,35,4.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2002,35,0.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2002,35,3.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2002,35,1.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2002,35,38.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2002,36,63.0,437202.0,6.66422926131579,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2002,36,0.0,62749.0,1.53961472439931,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2002,36,2.0,147865.0,6.07024365292683,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2002,36,68.0,310569.0,12.3878940911636,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2002,36,8.0,76030.0,4.75647024938221,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2002,36,11.0,228824.0,9.3200864732923,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2002,36,69.0,109525.0,4.09989723260284,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2002,36,9.0,59013.0,4.02734574450949,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2002,36,0.0,105372.0,3.29901026866717,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2002,36,0.0,59693.0,1.1157881582889,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2002,36,0.0,39832.0,0.982256266447384,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2002,36,98.0,336770.0,15.1284138608553,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2002,36,0.0,45275.0,2.85073802436875,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2002,36,0.0,76614.0,0.23056037641477,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2002,36,0.0,28363.0,0.390531351637455,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2002,36,0.0,213686.0,1.00198547060512,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2002,36,0.0,115783.0,1.02801393027289,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2002,36,1.0,90859.0,2.27732124119658,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2002,36,0.0,130933.0,1.16803851137819,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2002,36,82.0,1683838.0,40.7743069426364,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2002,36,0.0,39472.0,1.26639819610945,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2002,36,5.0,128021.0,5.03001752307785,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2002,36,0.0,217162.0,2.02950890207769,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2002,36,0.0,44474.0,0.699863538621478,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2002,36,0.0,58120.0,0.310935875144065,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2002,36,1.0,134476.0,0.608421417080583,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2002,36,79.0,246818.0,3.63498668877631,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2002,36,0.0,31528.0,1.02582823816768,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2002,36,1.0,32041.0,0.432106486780508,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2002,36,0.0,36484.0,0.709064725786075,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2002,36,3.0,157035.0,0.996685096939346,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2002,36,16.0,438273.0,4.73986564233584,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2002,36,0.0,59416.0,0.657501609455703,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2002,36,4.0,99934.0,2.21524206892736,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2002,36,0.0,171788.0,5.70982173253601,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2002,36,0.0,120563.0,4.16882337869379,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2002,36,326.0,1945403.0,621.307735414288,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2002,36,7.0,237414.0,63.0662574318703,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2002,36,9.0,222337.0,37.4547266315019,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2002,36,2.0,339311.0,38.5413258933129,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2002,36,116.0,365012.0,21.8944343873103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2002,36,44.0,224314.0,9.4634985013566,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2002,36,9.0,376799.0,13.3107114218769,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2002,36,20.0,208713.0,1.10064406325363,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2002,36,0.0,232425.0,1.02772234903239,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2002,36,14.0,268148.0,8.16317176567339,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2002,36,17.0,231003.0,4.77189687958778,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2002,36,9.0,90037.0,0.742663216523467,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2002,36,25.0,166642.0,7.41363863989295,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2002,36,42.0,227873.0,11.3447933313572,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2002,36,15.0,166815.0,7.89555126777806,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2002,36,3.0,104428.0,3.34706757500205,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2002,36,0.0,21065.0,0.571071679384637,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2002,36,0.0,17319.0,0.834157976222073,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2002,36,19.0,425115.0,11.0128185685778,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2002,36,0.0,53012.0,1.13744649984796,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2002,36,47.0,181105.0,11.4816235514503,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2002,36,40.0,238172.0,9.00630488119651,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2002,36,2.0,138796.0,3.99155643373841,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2002,36,27.0,105189.0,2.04397124176834,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2002,36,58.0,123554.0,4.50614817871256,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2002,36,70.0,242985.0,11.4725458149403,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2002,36,8.0,63277.0,1.18208293263716,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2002,36,0.0,113936.0,2.41416801765491,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2002,36,4.0,176506.0,18.7063226483259,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2002,36,8.0,1123406.0,786.417860457647,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2002,36,15.0,132732.0,20.6301829440757,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2002,36,0.0,134516.0,12.4746477478134,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2002,36,1.0,490805.0,28.5005878570695,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2002,36,25.0,160250.0,22.7257918736273,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2002,36,6.0,190605.0,8.83502352859099,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2002,36,29.0,565073.0,15.699743793872,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2002,36,30.0,521559.0,17.8473133359929,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2002,36,45.0,398748.0,36.2999183325259,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2002,36,46.0,271839.0,7.37878666174984,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2002,36,53.0,180446.0,27.5945037672641,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2002,36,7.0,124326.0,20.6082906692922,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2002,36,12.0,181640.0,16.8330167427946,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2002,36,18.0,246545.0,24.8127599037827,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2002,36,0.0,75938.0,21.0939768009758,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2002,36,29.0,371715.0,24.2289175233624,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2002,36,69.0,192540.0,7.70310689339445,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2002,36,2.0,91685.0,6.44664994135832,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2002,36,6.0,109257.0,2.99386515816308,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2002,36,5.0,63093.0,3.716673569525,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2002,36,23.0,308082.0,24.7123446328937,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2002,36,5.0,278719.0,28.6442703599423,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2002,36,81.0,906562.0,98.7746785585233,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2002,36,9.0,211754.0,8.6945514505261,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2002,36,8.0,126654.0,15.2395473594707,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2002,36,3.0,104431.0,7.77448388644438,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2002,36,0.0,37331.0,1.46568677159167,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2002,36,0.0,38440.0,3.45869864077693,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2002,36,3.0,119969.0,6.506174270137,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2002,36,1.0,78837.0,2.85441586284599,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2002,36,2.0,123192.0,4.47690642304666,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2002,36,1.0,78013.0,4.373697726218,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2002,36,3.0,188528.0,18.3051008379449,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2002,36,0.0,52836.0,12.2515491766178,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2002,36,52.0,244875.0,7.76541104767798,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2002,36,64.0,325288.0,37.6358228921131,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2002,36,9.0,266374.0,52.6053073528225,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2002,36,0.0,51722.0,24.9666294396107,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2002,36,1.0,21273.0,78.7985201579246,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2002,36,23.0,336925.0,40.8814808771469,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2002,36,10.0,138315.0,32.7422252217342,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2002,36,0.0,69791.0,11.6282645772416,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2002,36,2.0,178059.0,47.9735825217886,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2002,36,0.0,92522.0,64.5476889014393,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2002,36,1.0,89317.0,85.0968119566626,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2002,36,3.0,76132.0,25.1994002155912,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2002,36,17.0,114484.0,21.5549391990346,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2002,36,13.0,175211.0,65.1266339611036,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2002,36,0.0,58837.0,45.3693194723238,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2002,36,4.0,118352.0,46.5512814672661,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2002,36,310.0,2967292.0,879.551629823194,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2002,36,0.0,83705.0,210.815519720888,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2002,36,150.0,235392.0,18.3645773007731,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2002,36,5.0,238337.0,19.931580201471,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2002,36,20.0,139821.0,11.9316687625776,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2002,36,2.0,208504.0,21.3149027569576,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2002,36,10.0,99216.0,46.0776327182842,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2002,36,11.0,294360.0,29.6453753704422,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2002,36,0.0,62654.0,14.6020557022266,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2002,36,2.0,40329.0,19.6526183793364,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2002,36,5.0,212569.0,44.7094135577564,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2002,36,1.0,92997.0,26.2448981159903,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2002,36,8.0,56019.0,34.6370552493931,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2002,36,0.0,90805.0,20.4345452216465,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2002,36,0.0,58826.0,45.6641693817501,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2002,36,1.0,89001.0,33.4364448930327,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2002,36,6.0,482100.0,105.822762378975,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2002,36,0.0,90006.0,46.4025288475645,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,8.0,281014.0,67.2696822417656,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,2.0,70790.0,17.3001876219747,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,2.0,37607.0,13.1489068360848,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,1.0,127454.0,26.6275989545449,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2002,36,11.0,59372.0,59.8754657751454,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2002,36,20.0,113433.0,42.6728477471987,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2002,36,16.0,63589.0,38.9754430325795,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,1.0,45375.0,23.8149301638003,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,33.0,50475.0,12.3772251971278,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,7.0,61687.0,20.4890051435852,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,3.0,91421.0,29.8183930812101,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,32.0,115523.0,30.6259593090217,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,4.0,58029.0,30.355763290464,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2002,36,9.0,126849.0,32.287605692049,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2002,36,21.0,210633.0,60.1427000261603,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2002,36,12.0,78107.0,30.6368689386119,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2002,36,53.0,252801.0,121.842991585907,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2002,36,320.0,892655.0,2039.5786892342,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2002,36,2.0,115970.0,83.5704565589461,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2002,36,19.0,107524.0,35.2710868093334,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2002,36,10.0,158396.0,46.7011991866344,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2002,36,21.0,174193.0,36.2549214630727,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2002,36,27.0,119492.0,46.8842532784744,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2002,36,12.0,71246.0,21.6331299156153,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2002,36,26.0,83032.0,27.2526183068331,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2002,36,14.0,108567.0,41.7931796518218,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2002,36,8.0,36885.0,21.0741576520071,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2002,36,24.0,68120.0,26.0957646180857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2002,36,235.0,113571.0,16.2724659245443,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2002,36,2.0,60385.0,14.3390570318349,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2002,36,3.0,108409.0,27.7444809751258,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2002,36,0.0,94005.0,71.1031616175914,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2002,36,0.0,48599.0,181.445453773252,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2002,36,13.0,117629.0,99.6989737342518,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2002,36,8.0,159011.0,123.26286675621,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2002,36,21.0,471531.0,223.822306403828,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2002,36,2.0,106376.0,63.0382466873317,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2002,36,0.0,54000.0,45.6537165497075,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2002,36,0.0,130504.0,65.6610895407882,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2002,36,1.0,124305.0,111.020882974612,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2002,36,33.0,902681.0,723.193846074601,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2002,36,3.0,76432.0,88.2734731547674,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2002,36,26.0,282610.0,24.4892783314125,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2002,36,0.0,153119.0,17.477551142835,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2002,36,11.0,297593.0,33.7163091685615,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2002,36,16.0,186551.0,21.2057562800342,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2002,36,2.0,365301.0,24.4030155696782,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2002,36,3.0,118188.0,12.4199019631291,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2002,36,1.0,163729.0,30.1482066992689,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2002,36,75.0,760275.0,96.6944813644811,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2002,36,36.0,219817.0,122.450741910072,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2002,36,8.0,254761.0,145.559502278392,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2002,36,1.0,419093.0,81.857329605226,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2002,36,11.0,213093.0,83.2380323275806,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2002,36,66.0,510509.0,173.764420477832,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2002,36,12.0,201541.0,214.72586513959,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2002,36,41.0,510935.0,112.897184001614,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2002,36,8.0,138726.0,257.591893021632,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2002,36,146.0,3066066.0,2450.76103778516,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2002,36,61.0,220632.0,228.451159296851,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2002,36,0.0,2128.0,163.764889232934,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2002,36,1.0,89389.0,34.036088938677,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2002,36,3.0,71740.0,52.5361480649549,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2002,36,1.0,168446.0,54.965080762987,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2002,36,3.0,89770.0,49.7170725376577,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2002,36,2.0,175757.0,73.488591966349,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2002,36,4.0,378772.0,156.151363047157,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2002,36,0.0,35138.0,37.5510709531266,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2002,36,6.0,143427.0,77.836606706335,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2002,36,10.0,282120.0,71.5332558894463,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2002,36,1.0,59911.0,59.5219374758849,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2002,36,80.0,1019511.0,569.288430756134,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2002,36,26.0,254585.0,85.6948526191802,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2002,36,7.0,118969.0,69.5151262544086,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2002,36,3.0,139689.0,25.6511498266554,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2002,36,26.0,62692.0,33.5708531724214,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,3.0,59281.0,47.7747102080512,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,12.0,149031.0,131.728083002898,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2002,36,9.0,102591.0,50.9291487691673,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2002,36,0.0,105355.0,69.8757819320703,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,2.0,89702.0,85.0422958541808,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,1.0,40900.0,53.4195320486746,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,2.0,50328.0,35.1756946699211,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,22.0,79085.0,106.758555681423,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2002,36,24.0,706277.0,809.571541342335,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2002,36,10.0,147594.0,80.2824374666777,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2002,36,17.0,113514.0,56.0821703003706,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2002,36,0.0,215151.0,4.0706171861711,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2002,36,1.0,110827.0,4.89908811314399,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2002,36,14.0,179311.0,4.27044141633605,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2002,36,10.0,421168.0,7.69754260869567,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2002,36,1.0,153579.0,12.3262826946471,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2002,36,36.0,162630.0,4.99456726449475,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2002,36,19.0,162714.0,11.2703545664792,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2002,36,7.0,265138.0,15.948649682355,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2002,36,15.0,354084.0,19.4169548744751,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2002,36,57.0,314289.0,16.7030197665577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2002,36,3.0,247215.0,15.0132916654415,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2002,36,109.0,914307.0,71.7379277382578,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2002,36,4.0,107519.0,13.4127342681229,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2002,36,10.0,297814.0,15.9338775807187,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2002,36,60.0,295656.0,34.1717741419614,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2002,36,11.0,383682.0,36.0318437897956,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2002,36,10.0,287859.0,50.0863649288117,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,0.0,107761.0,24.6230564937589,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,12.0,191972.0,69.8457103833061,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,14.0,514565.0,90.2577087304991,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,87.0,3132047.0,1083.58211482658,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2002,36,1.0,180693.0,11.2367363680886,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2002,36,19.0,255018.0,12.2924772607952,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2002,36,44.0,520488.0,30.2576859865885,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2002,36,4.0,92635.0,18.008748647911,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2002,36,30.0,357049.0,15.2315631489891,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2002,36,28.0,266927.0,17.3998911648613,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2002,36,80.0,624430.0,33.1879730628828,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2002,36,4.0,216657.0,19.2154183277549,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,7.0,239044.0,41.549498824221,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,163.0,1089177.0,51.2412919691322,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2002,36,152.0,661806.0,23.879556521392,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,0.0,139909.0,5.10500338960589,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,0.0,200749.0,5.73416098642733,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,1.0,261132.0,7.86262222368181,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2002,36,1.0,241970.0,16.0908187217284,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,0.0,203035.0,11.3841341824577,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,4.0,156509.0,6.79845386851251,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2002,36,40.0,553077.0,24.7572475396459,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,0.0,40965.0,4.52082334509124,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,2.0,64154.0,8.10580738762364,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2002,36,0.0,81896.0,11.0847813362869,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,7.0,189949.0,15.8097528059775,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2002,36,138.0,152365.0,14.8362307878456,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2002,36,7.0,85677.0,16.9660631084131,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,5.0,173328.0,11.213601813792,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,258851.0,22.2798722916499,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,118886.0,14.0159878354455,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,1.0,133664.0,15.3089549215364,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,36.0,730981.0,38.9074458662947,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2002,36,1.0,189573.0,15.8499770776305,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,3.0,239370.0,22.3207592221438,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,2.0,156223.0,9.25178655229996,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,11.0,300841.0,32.23951245172,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2002,36,1.0,176935.0,12.5758493198904,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,60.0,90698.0,8.57033917295998,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2002,36,0.0,145290.0,10.6008052664543,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,16.0,151879.0,20.2817665157927,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,11.0,359882.0,42.1258074533949,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,0.0,88363.0,12.9604100991314,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,68.0,110290.0,62.2978066973199,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,62.0,4432345.0,760.48611192196,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,4.0,357990.0,44.448568416718,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,58452.0,24.1786312013189,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,158629.0,50.3289006602206,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,3.0,225358.0,76.0425232328138,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,0.0,128112.0,22.241330144767,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,83722.0,18.2704487903048,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,108.0,400123.0,35.355358091632,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,2.0,61041.0,32.9993981323294,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,48.0,487349.0,112.001734354941,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,8.0,242366.0,43.7588722621305,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,4.0,146885.0,17.6244547619894,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,2.0,78120.0,10.1530958079913,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,8.0,408352.0,80.4213533303711,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2002,36,1.0,147261.0,32.2487356459237,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,107560.0,39.9345895140747,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,121595.0,30.3162317728135,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2002,36,0.0,215441.0,30.3742198746841,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,259981.0,50.2640342463666,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,214892.0,42.9798581544949,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,418252.0,55.2055341614406,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,1.0,318350.0,68.7213722342624,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,292625.0,59.5032040000015,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,131243.0,40.0628769806246,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,1.0,200915.0,52.2443622330696,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,74158.0,14.7164023379247,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,185078.0,62.0696521050397,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,137633.0,39.812842442633,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,174087.0,30.237779612342,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,0.0,209655.0,62.4686975496632,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,5.0,189265.0,38.9051912989906,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,1.0,256290.0,52.9787275184765,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,1.0,218714.0,45.3309657494105,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,14.0,265471.0,56.0571916303284,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2002,36,13.0,248116.0,68.9574632120252,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2002,36,2.0,681359.0,76.2716846593724,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2002,36,5.0,210291.0,53.8476658530443,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,86470.0,21.3958580768295,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,116697.0,31.8162488023647,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,8.0,188294.0,43.3809203038388,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,2.0,50741.0,17.2077678327363,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,163550.0,35.3362652509767,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,6.0,258002.0,37.1264722732098,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2002,36,2.0,128014.0,33.380075625522,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2002,36,3.0,100412.0,30.5644836636767,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2002,36,485.0,1394472.0,977.230701322895,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,68.0,167353.0,79.5493117454111,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2002,36,1.0,155978.0,45.1216487173852,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,25.0,320439.0,77.8678690785796,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2002,36,3.0,71300.0,56.2527863861021,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,30.0,183079.0,58.382263491536,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,18.0,119802.0,53.4512268659305,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,6.0,534026.0,74.5580147172,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,11.0,183106.0,70.9169692620894,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2002,36,3.0,147263.0,88.9334729016031,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2002,36,2.0,59325.0,46.8406279406882,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2002,36,2.0,222686.0,106.98950782382,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2002,36,0.0,28826.0,15.8952013625651,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,21.0,85696.0,52.2419727774213,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,37.0,409909.0,209.019308517892,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2002,36,60.0,638527.0,167.42485779645,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2002,36,29.0,165799.0,70.0208012256162,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2002,36,23.0,157059.0,93.927069296682,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2002,36,2.0,153566.0,97.9185550570989,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2002,36,9.0,454889.0,254.84319670589,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,2.0,100941.0,71.1901210665189,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,180829.0,205.87464381357,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2002,36,2028.0,10899147.0,2393.59970652898,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,147904.0,37.5499069873895,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,101485.0,36.0696014573023,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2002,36,2.0,128838.0,40.1645735718796,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,8.0,696277.0,66.8059058790111,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,2.0,207094.0,91.3657143371417,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,44240.0,19.2707681945794,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,59334.0,29.5328402709252,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,73139.0,30.2095083668044,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2002,36,1.0,128619.0,47.3529591452715,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2002,36,6.0,195510.0,35.2598814147507,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2002,36,2.0,91649.0,45.4581844857349,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2002,36,0.0,363360.0,105.461265033711,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2002,36,1.0,394172.0,83.0698099142123,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2002,36,19.0,893432.0,148.745160635016,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2002,36,0.0,100311.0,32.5993305189596,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,175586.0,25.5533093560521,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,135.0,237710.0,44.2698582163322,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,8.0,234432.0,52.066800205637,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,3.0,149885.0,38.7161687062898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2002,36,6.0,529143.0,62.3335051338305,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2002,36,0.0,320309.0,79.3151369769416,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2002,36,0.0,163834.0,27.7617585216793,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2002,36,0.0,186555.0,42.8093909320265,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2002,36,3.0,460576.0,73.3132425416762,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2002,36,0.0,281898.0,88.8867554921533,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2002,36,0.0,225528.0,76.5688322570038,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2002,36,0.0,527781.0,227.008414840629,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,11.0,509843.0,134.907268147031,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2002,36,1.0,171445.0,97.2171232153596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2002,36,0.0,403448.0,74.3404014333576,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2002,36,1.0,354016.0,151.51004856689,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,0.0,2300788.0,740.038328665141,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,166242.0,103.889587560912,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,108126.0,37.7128485865239,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,0.0,151165.0,41.1872004350392,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2002,36,1.0,555825.0,31.7740990705891,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,1.0,109916.0,47.7803751166623,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,1.0,317750.0,65.0245603943193,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,16.0,252202.0,35.3208054801372,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,0.0,277579.0,49.8751952276621,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2002,36,1.0,237815.0,30.9135450582507,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,0.0,170052.0,45.6344822897915,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,1.0,220193.0,98.6475326854411,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,142938.0,21.7030758969529,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,185082.0,44.6720163851818,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,4.0,1178512.0,277.684185809244,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,549349.0,683.11147677943,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,437486.0,139.391172893482,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,1.0,66650.0,65.5455457685785,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,0.0,1276721.0,317.772621721917,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2002,36,2.0,382397.0,141.439468525787,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,25862.0,12.3420709681699,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,0.0,71280.0,16.1246456640742,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,3.0,240848.0,126.383057027071,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,1.0,250524.0,22.455707479461,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2002,36,1.0,194816.0,95.560743091749,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,74.0,1674468.0,2468.23770618566,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,1.0,399443.0,669.798330597584,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,1.0,1241326.0,1596.84268658737,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,2.0,859251.0,585.466918064905,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,27.0,13019177.0,5517.00350083411,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2002,36,2.0,1197112.0,581.453535118818,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2002,36,59.0,1359494.0,998.339755970117,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,1.0,259362.0,25.4963459208814,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,4.0,252114.0,24.5758333554256,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,126571.0,31.2546664720358,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,124234.0,25.575983910532,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,3.0,213832.0,30.2197797570568,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,1.0,174541.0,34.1483886761867,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,82907.0,35.0567248642162,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,33804.0,25.9604670011231,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,4.0,469821.0,301.920776897044,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,258849.0,114.269445032681,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,46.0,659158.0,187.472017048474,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,46548.0,20.4478184593953,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,143453.0,23.2718000289655,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,72365.0,32.0432515412388,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,182352.0,40.2877802451536,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,119577.0,43.3491572747874,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,75021.0,24.6836265059698,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,97371.0,30.8243193832057,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,147637.0,15.6083716691151,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,97020.0,17.0445158100651,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,394648.0,59.0834002592444,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,21.0,342655.0,39.216589880777,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,404841.0,47.3398849419443,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,10.0,416776.0,75.0643193855546,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,92919.0,39.9865633715453,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,226914.0,41.9271102523058,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,151638.0,38.8487667700793,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,84060.0,17.0848493518992,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,369952.0,22.8368301972422,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,86058.0,15.9193965410503,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,119459.0,19.663616058092,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,92800.0,32.6946134291981,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,113977.0,20.8464716251094,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,57068.0,22.556080554068,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,0.0,29226.0,8.46255667465257,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,47014.0,20.4531738504471,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,1.0,2801204.0,328.681183957192,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2002,36,1.0,248649.0,40.79449979268,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2002,36,0.0,81611.0,33.3494057522915,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,1.0,167873.0,39.3865725979435,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,365675.0,60.7169525139684,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,144916.0,29.8913347351161,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,312791.0,34.6258413460403,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,139336.0,44.3006509087838,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,1.0,234924.0,24.9841487673723,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,120231.0,62.9782013968475,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,1.0,711092.0,153.163710181078,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,118176.0,17.9438292785455,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,288236.0,18.3068919323379,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,184542.0,34.8500686735435,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,2.0,569751.0,120.414696368182,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,431758.0,281.144460833767,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,51180.0,33.6463141574466,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,71106.0,33.3794980757603,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,2.0,747474.0,257.986429207861,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2002,36,0.0,23259.0,9.91571069271072,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,346182.0,74.7588922553665,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,334591.0,158.309884176606,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2002,36,0.0,164614.0,55.4003671494481,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,1.0,161861.0,46.8165602973212,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,147687.0,38.7413289766216,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,181617.0,34.8729942073676,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,214695.0,37.8628038088323,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2002,36,0.0,61418.0,19.957007391494,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,68905.0,31.0406638287243,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,208306.0,19.2383110902427,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,180900.0,35.5191665589874,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,1.0,160031.0,32.7547497922886,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2002,36,0.0,306876.0,43.3592237711087,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,157048.0,18.6532749897858,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,41626.0,27.7745503015654,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2002,36,0.0,72060.0,19.9650457890833,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2002,36,0.0,117621.0,32.4054918354574,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2002,36,0.0,155467.0,9.02220033211139,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2002,36,2.0,679014.0,136.529534729296,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,112405.0,10.0185506767076,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,357377.0,30.4585686763533,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,66923.0,22.284214072398,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,305019.0,54.8596101006892,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,283947.0,70.1780947792322,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,158286.0,20.8627784911629,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,183721.0,88.6911649128393,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2002,36,0.0,272662.0,104.586876093512,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,134716.0,27.6037960286797,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,4.0,3523369.0,628.925769520473,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,299002.0,34.0076118668248,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,126228.0,21.4553893436105,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,386847.0,12.4476228408788,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,197239.0,11.4047288092114,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,174811.0,12.2717974929368,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,118078.0,7.19153171542072,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,482769.0,46.7236089157887,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,57021.0,8.99806075900374,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2002,36,0.0,252988.0,27.3148535208795,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2002,36,0.0,126672.0,1.52557405412875,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2002,36,18.0,100374.0,3.61779645568435,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2002,36,13.0,106904.0,2.56579543864788,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2002,36,99.0,755259.0,26.7356337261111,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2002,36,3.0,49218.0,3.05987980894639,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2002,36,0.0,72086.0,4.19441382491743,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2002,36,1.0,129891.0,2.74878898559229,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2002,36,1.0,76297.0,5.66489973284314,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2002,36,6.0,103398.0,4.57954305615307,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2002,36,8.0,418291.0,11.1865246861707,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2002,36,0.0,202234.0,8.99540432696194,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2002,36,56.0,102650.0,0.827743504169333,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2002,36,8.0,90029.0,1.75148208579747,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2002,36,22.0,128291.0,2.99983457993164,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2002,36,26.0,68142.0,1.14333013056405,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2002,36,1.0,71395.0,1.30000979005311,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,5.0,112264.0,2.05819160670631,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2002,36,73.0,144224.0,2.88203123398741,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,13.0,28730.0,0.614360692953372,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2002,36,2.0,94203.0,1.10903131639275,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,17.0,81652.0,1.35184865638403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,20.0,62253.0,1.94606980944882,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2002,36,7.0,62280.0,1.98595341223022,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,16.0,119965.0,5.37400841005766,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2002,36,75.0,103654.0,5.49043601026205,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2002,36,4.0,30966.0,4.62086746067065,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,9.0,31923.0,3.45657876203977,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,571.0,771123.0,27.9291085058065,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2002,36,8.0,126955.0,2.38092743599798,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,20.0,65195.0,6.35849828779078,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,21.0,52702.0,1.94632089531693,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,10.0,231476.0,9.48687124188754,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2002,36,0.0,24670.0,2.30267724898386,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2002,36,0.0,74690.0,3.06365487283062,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2002,36,0.0,92054.0,4.5464533503126,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2002,36,10.0,53664.0,4.85488096574201,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2002,36,28.0,223577.0,6.35929356507777,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2002,36,2.0,57333.0,2.69186737058707,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2002,36,5.0,213304.0,16.2096961265502,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2002,36,7.0,478501.0,57.1853212671877,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2002,36,1.0,62316.0,8.81232829367963,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2002,36,10.0,102555.0,18.7820207746888,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2002,36,368.0,1782736.0,263.916300134867,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2002,36,2.0,93305.0,5.36885673594171,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2002,36,14.0,887279.0,23.2536325929872,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2002,36,4.0,356414.0,6.35802449581887,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2002,36,1.0,104006.0,7.64557502427148,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2002,36,16.0,324372.0,15.3577439118508,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2002,36,0.0,88565.0,9.29725202830967,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2002,36,1.0,121174.0,7.95687770250085,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2002,36,1.0,94490.0,5.87792632816815,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2002,36,82.0,2145839.0,370.979497382053,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2003,37,272.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2003,37,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2003,37,28.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2003,37,89.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2003,37,5.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2003,37,18.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2003,37,283.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2003,37,24.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2003,37,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2003,37,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2003,37,1.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2003,37,223.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2003,37,6.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2003,37,0.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2003,37,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2003,37,1.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2003,37,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2003,37,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2003,37,0.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2003,37,337.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2003,37,0.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2003,37,6.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2003,37,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2003,37,1.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2003,37,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2003,37,2.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2003,37,123.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2003,37,2.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2003,37,3.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2003,37,1.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2003,37,12.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2003,37,15.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2003,37,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2003,37,9.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2003,37,0.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2003,37,1.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2003,37,813.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2003,37,36.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2003,37,9.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2003,37,6.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2003,37,182.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2003,37,30.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2003,37,14.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2003,37,12.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2003,37,16.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2003,37,126.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2003,37,74.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2003,37,11.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2003,37,72.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2003,37,445.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2003,37,7.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2003,37,6.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2003,37,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2003,37,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2003,37,58.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2003,37,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2003,37,66.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2003,37,85.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2003,37,6.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2003,37,0.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2003,37,4.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2003,37,107.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2003,37,0.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2003,37,0.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2003,37,1.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2003,37,2.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2003,37,19.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2003,37,2.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2003,37,90.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2003,37,69.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2003,37,11.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2003,37,86.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2003,37,163.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2003,37,67.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2003,37,230.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2003,37,57.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2003,37,3.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2003,37,9.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2003,37,40.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2003,37,14.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2003,37,112.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2003,37,210.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2003,37,74.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2003,37,27.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2003,37,2.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2003,37,20.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2003,37,13.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2003,37,165.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2003,37,80.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2003,37,53.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2003,37,5.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2003,37,0.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2003,37,9.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2003,37,6.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2003,37,5.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2003,37,2.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2003,37,0.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2003,37,10.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2003,37,10.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2003,37,100.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2003,37,39.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2003,37,14.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2003,37,6.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2003,37,2.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2003,37,32.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2003,37,8.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2003,37,54.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2003,37,59.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2003,37,1.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2003,37,17.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2003,37,9.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2003,37,28.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2003,37,195.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2003,37,3.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2003,37,8.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2003,37,552.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2003,37,19.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2003,37,290.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2003,37,23.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2003,37,671.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2003,37,4.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2003,37,3.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2003,37,48.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2003,37,2.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2003,37,0.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2003,37,13.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2003,37,1.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2003,37,23.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2003,37,2.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2003,37,1.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2003,37,1.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2003,37,94.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2003,37,2.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,4.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,20.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,9.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,0.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2003,37,2.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2003,37,59.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2003,37,24.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,1.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,40.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,35.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,10.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,15.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,6.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2003,37,42.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2003,37,41.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2003,37,38.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2003,37,124.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2003,37,539.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2003,37,4.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2003,37,39.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2003,37,76.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2003,37,118.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2003,37,27.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2003,37,5.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2003,37,9.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2003,37,35.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2003,37,7.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2003,37,9.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2003,37,623.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2003,37,3.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2003,37,5.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2003,37,4.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2003,37,11.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2003,37,14.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2003,37,0.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2003,37,39.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2003,37,0.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2003,37,3.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2003,37,0.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2003,37,3.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2003,37,25.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2003,37,0.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2003,37,71.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2003,37,6.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2003,37,32.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2003,37,84.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2003,37,21.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2003,37,1.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2003,37,7.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2003,37,233.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2003,37,54.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2003,37,18.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2003,37,14.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2003,37,11.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2003,37,7.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2003,37,7.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2003,37,26.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2003,37,8.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2003,37,61.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2003,37,28.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2003,37,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2003,37,0.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2003,37,10.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2003,37,2.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2003,37,1.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2003,37,7.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2003,37,8.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2003,37,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2003,37,9.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2003,37,3.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2003,37,1.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2003,37,73.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2003,37,42.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2003,37,1.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2003,37,16.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2003,37,79.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,1.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,46.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2003,37,68.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2003,37,10.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,9.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,0.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,4.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,6.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2003,37,73.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2003,37,62.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2003,37,34.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2003,37,10.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2003,37,2.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2003,37,1.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2003,37,205.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2003,37,5.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2003,37,13.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2003,37,21.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2003,37,73.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2003,37,9.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2003,37,31.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2003,37,24.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2003,37,290.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2003,37,23.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2003,37,30.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2003,37,181.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2003,37,56.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2003,37,16.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,0.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,11.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,20.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,114.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2003,37,26.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2003,37,53.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2003,37,308.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2003,37,51.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2003,37,311.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2003,37,223.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2003,37,213.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2003,37,5.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,23.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,549.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2003,37,391.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,1.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,2.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,13.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2003,37,8.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,0.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2003,37,4.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2003,37,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,116.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2003,37,203.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2003,37,7.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,1.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,9.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,2.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,3.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,46.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2003,37,1.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,4.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,9.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,28.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2003,37,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,61.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2003,37,2.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,14.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,13.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,313.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,7.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,3.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,49.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,1.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,101.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,9.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,8.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,96.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2003,37,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2003,37,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,2.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2003,37,2.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,3.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,5.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,1.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,26.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2003,37,4.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2003,37,1.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2003,37,3.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,6.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,1.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,69.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,7.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,5.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,22.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2003,37,5.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2003,37,5.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2003,37,2570.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,156.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2003,37,3.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,12.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2003,37,2.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,14.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,3.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,17.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,47.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2003,37,6.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2003,37,2.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2003,37,2.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2003,37,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,9.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,25.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2003,37,139.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2003,37,71.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2003,37,46.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2003,37,3.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2003,37,6.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,6.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2003,37,0.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2003,37,620.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,10.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,3.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2003,37,5.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,41.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,5.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,5.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,2.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2003,37,1.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2003,37,16.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2003,37,3.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2003,37,0.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2003,37,14.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2003,37,79.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2003,37,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,14.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,501.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,5.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2003,37,5.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2003,37,5.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2003,37,1.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2003,37,1.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2003,37,4.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2003,37,14.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2003,37,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,1.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2003,37,1.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2003,37,2.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,1.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,10.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2003,37,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,1.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,96.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,1.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2003,37,1.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,4.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,3.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,3.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,17.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,1.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2003,37,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,2.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,5.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,1.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2003,37,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,1198.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,11.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,11.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,26.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,267.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2003,37,5.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2003,37,50.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,5.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,3.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,1.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,1.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,2.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,1.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,2.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,24.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,462.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,2.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,6.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,3.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,1.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,170.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,9.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,30.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,1.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,10.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2003,37,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2003,37,1.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,2.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,1.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,2.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,2.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,2.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,4.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2003,37,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2003,37,3.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2003,37,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,1.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,2.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2003,37,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2003,37,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2003,37,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2003,37,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2003,37,1.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,1.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2003,37,1.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,3.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,1.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2003,37,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2003,37,1.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2003,37,62.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2003,37,9.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2003,37,89.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2003,37,2.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2003,37,4.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2003,37,5.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2003,37,5.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2003,37,4.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2003,37,6.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2003,37,3.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2003,37,22.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2003,37,8.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2003,37,62.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2003,37,52.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2003,37,10.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,12.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2003,37,10.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,20.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2003,37,14.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,18.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,13.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2003,37,19.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,44.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2003,37,401.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2003,37,8.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,23.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,1456.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2003,37,118.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,59.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,31.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,107.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2003,37,1.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2003,37,2.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2003,37,2.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2003,37,3.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2003,37,6.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2003,37,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2003,37,4.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2003,37,13.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2003,37,0.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2003,37,4.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2003,37,1092.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2003,37,1.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2003,37,26.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2003,37,9.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2003,37,5.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2003,37,6.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2003,37,0.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2003,37,2.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2003,37,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2003,37,189.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2003,38,156.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2003,38,4.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2003,38,22.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2003,38,46.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2003,38,6.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2003,38,40.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2003,38,319.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2003,38,44.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2003,38,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2003,38,1.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2003,38,2.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2003,38,231.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2003,38,4.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2003,38,0.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2003,38,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2003,38,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2003,38,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2003,38,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2003,38,1.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2003,38,487.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2003,38,5.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2003,38,1.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2003,38,2.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2003,38,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2003,38,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2003,38,0.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2003,38,106.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2003,38,1.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2003,38,1.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2003,38,1.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2003,38,10.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2003,38,60.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2003,38,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2003,38,15.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2003,38,0.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2003,38,3.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2003,38,802.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2003,38,46.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2003,38,23.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2003,38,16.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2003,38,114.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2003,38,26.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2003,38,14.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2003,38,16.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2003,38,44.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2003,38,218.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2003,38,183.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2003,38,17.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2003,38,154.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2003,38,261.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2003,38,50.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2003,38,15.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2003,38,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2003,38,1.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2003,38,85.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2003,38,1.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2003,38,53.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2003,38,38.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2003,38,2.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2003,38,5.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2003,38,7.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2003,38,125.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2003,38,1.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2003,38,2.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2003,38,2.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2003,38,33.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2003,38,13.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2003,38,21.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2003,38,5.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2003,38,166.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2003,38,59.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2003,38,70.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2003,38,142.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2003,38,69.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2003,38,226.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2003,38,38.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2003,38,13.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2003,38,23.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2003,38,65.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2003,38,7.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2003,38,95.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2003,38,215.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2003,38,60.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2003,38,60.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2003,38,11.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2003,38,43.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2003,38,31.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2003,38,224.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2003,38,70.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2003,38,50.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2003,38,7.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2003,38,6.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2003,38,4.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2003,38,16.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2003,38,12.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2003,38,9.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2003,38,4.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2003,38,23.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2003,38,138.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2003,38,185.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2003,38,127.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2003,38,6.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2003,38,8.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2003,38,1.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2003,38,48.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2003,38,12.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2003,38,69.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2003,38,184.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2003,38,7.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2003,38,24.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2003,38,38.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2003,38,60.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2003,38,275.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2003,38,19.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2003,38,8.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2003,38,1338.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2003,38,29.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2003,38,356.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2003,38,72.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2003,38,1495.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2003,38,8.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2003,38,40.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2003,38,171.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2003,38,2.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2003,38,0.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2003,38,52.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2003,38,2.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2003,38,4.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2003,38,41.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2003,38,8.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2003,38,0.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2003,38,258.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2003,38,3.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,5.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,7.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,16.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,9.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2003,38,25.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2003,38,248.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2003,38,45.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,5.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,82.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,17.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,29.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,74.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,6.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2003,38,175.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2003,38,90.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2003,38,55.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2003,38,143.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2003,38,903.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2003,38,15.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2003,38,110.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2003,38,410.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2003,38,150.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2003,38,46.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2003,38,14.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2003,38,13.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2003,38,100.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2003,38,8.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2003,38,26.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2003,38,301.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2003,38,3.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2003,38,22.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2003,38,13.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2003,38,41.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2003,38,5.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2003,38,3.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2003,38,114.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2003,38,3.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2003,38,0.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2003,38,16.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2003,38,11.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2003,38,28.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2003,38,1.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2003,38,164.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2003,38,43.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2003,38,101.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2003,38,368.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2003,38,37.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2003,38,18.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2003,38,76.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2003,38,377.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2003,38,139.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2003,38,24.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2003,38,61.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2003,38,40.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2003,38,21.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2003,38,6.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2003,38,4.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2003,38,4.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2003,38,85.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2003,38,55.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2003,38,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2003,38,6.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2003,38,68.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2003,38,10.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2003,38,3.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2003,38,15.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2003,38,15.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2003,38,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2003,38,10.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2003,38,6.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2003,38,1.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2003,38,89.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2003,38,48.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2003,38,0.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2003,38,16.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2003,38,155.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,8.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,111.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2003,38,80.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2003,38,14.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,3.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,4.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,0.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,8.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2003,38,97.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2003,38,83.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2003,38,25.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2003,38,19.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2003,38,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2003,38,14.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2003,38,463.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2003,38,3.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2003,38,2.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2003,38,32.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2003,38,93.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2003,38,21.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2003,38,253.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2003,38,121.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2003,38,433.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2003,38,59.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2003,38,224.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2003,38,303.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2003,38,224.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2003,38,10.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,1.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,21.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,19.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,125.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2003,38,75.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2003,38,228.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2003,38,814.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2003,38,142.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2003,38,612.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2003,38,191.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2003,38,335.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2003,38,36.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,41.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,1207.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2003,38,587.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,0.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,1.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,13.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2003,38,37.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,2.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,0.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2003,38,18.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2003,38,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,323.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2003,38,208.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2003,38,12.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,11.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,36.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,38.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,11.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,104.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2003,38,1.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,21.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,21.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,52.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2003,38,1.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,90.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2003,38,1.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,74.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,12.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,2.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,1.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,741.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,1.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,3.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,3.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,1.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,37.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,14.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,194.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,15.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,23.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,1.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,418.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2003,38,16.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,2.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,3.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2003,38,2.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,1.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,2.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,1.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2003,38,2.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,1.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,1.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,1.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,1.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,4.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,3.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,16.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2003,38,4.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2003,38,3.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2003,38,13.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,5.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,11.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,504.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,4.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,16.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,37.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2003,38,32.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2003,38,22.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2003,38,8695.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,821.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2003,38,18.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,19.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2003,38,14.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,21.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,4.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,20.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,67.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2003,38,3.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2003,38,3.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2003,38,6.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2003,38,4.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,20.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,27.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2003,38,282.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2003,38,172.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2003,38,18.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2003,38,2.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2003,38,7.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,4.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2003,38,11.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2003,38,638.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,16.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,13.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2003,38,10.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,135.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,3.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,6.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,3.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,2.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2003,38,3.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2003,38,11.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2003,38,7.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2003,38,1.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2003,38,32.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2003,38,96.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2003,38,3.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,73.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,1069.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,28.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,2.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2003,38,33.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2003,38,5.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2003,38,4.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2003,38,1.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2003,38,11.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2003,38,10.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2003,38,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2003,38,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2003,38,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2003,38,2.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2003,38,10.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,25.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,1.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2003,38,1.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,4.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,107.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,2.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2003,38,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,2.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,17.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,1.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,30.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,1.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2003,38,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,11.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,5.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2003,38,1.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,827.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,8.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,22.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,56.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,431.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2003,38,4.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2003,38,95.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,32.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,3.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,2.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,6.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,2.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,3.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,1.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,4.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,105.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,1680.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,2.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,4.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,11.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,2.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,1.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,135.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,21.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,130.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,2.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,1.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,6.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2003,38,4.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2003,38,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,1.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,3.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,1.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,1.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,1.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,1.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,3.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2003,38,1.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,1.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2003,38,2.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2003,38,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2003,38,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2003,38,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2003,38,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2003,38,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2003,38,2.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,1.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,2.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,2.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,1.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2003,38,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,5.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2003,38,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2003,38,1.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2003,38,47.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2003,38,36.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2003,38,244.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2003,38,2.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2003,38,36.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2003,38,2.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2003,38,4.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2003,38,7.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2003,38,23.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2003,38,2.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2003,38,40.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2003,38,15.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2003,38,73.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2003,38,28.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2003,38,23.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,11.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2003,38,12.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,47.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2003,38,52.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,9.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,21.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2003,38,22.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,33.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2003,38,248.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2003,38,2.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,66.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,2040.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2003,38,256.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,81.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,12.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,202.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2003,38,3.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2003,38,2.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2003,38,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2003,38,7.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2003,38,7.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2003,38,4.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2003,38,12.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2003,38,23.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2003,38,2.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2003,38,3.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2003,38,1741.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2003,38,0.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2003,38,38.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2003,38,20.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2003,38,7.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2003,38,6.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2003,38,5.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2003,38,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2003,38,1.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2003,38,189.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2003,39,90.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2003,39,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2003,39,18.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2003,39,42.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2003,39,5.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2003,39,15.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2003,39,281.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2003,39,20.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2003,39,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2003,39,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2003,39,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2003,39,148.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2003,39,4.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2003,39,0.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2003,39,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2003,39,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2003,39,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2003,39,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2003,39,2.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2003,39,780.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2003,39,31.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2003,39,1.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2003,39,3.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2003,39,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2003,39,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2003,39,0.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2003,39,36.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2003,39,1.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2003,39,1.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2003,39,0.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2003,39,14.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2003,39,76.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2003,39,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2003,39,2.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2003,39,0.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2003,39,0.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2003,39,395.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2003,39,54.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2003,39,14.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2003,39,23.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2003,39,68.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2003,39,21.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2003,39,42.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2003,39,26.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2003,39,10.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2003,39,128.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2003,39,98.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2003,39,61.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2003,39,150.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2003,39,202.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2003,39,22.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2003,39,30.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2003,39,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2003,39,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2003,39,112.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2003,39,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2003,39,23.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2003,39,30.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2003,39,15.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2003,39,17.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2003,39,11.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2003,39,90.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2003,39,16.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2003,39,1.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2003,39,2.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2003,39,50.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2003,39,22.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2003,39,37.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2003,39,9.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2003,39,103.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2003,39,39.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2003,39,31.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2003,39,66.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2003,39,212.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2003,39,173.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2003,39,8.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2003,39,9.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2003,39,36.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2003,39,64.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2003,39,10.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2003,39,211.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2003,39,59.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2003,39,9.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2003,39,26.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2003,39,15.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2003,39,115.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2003,39,60.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2003,39,594.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2003,39,171.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2003,39,23.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2003,39,10.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2003,39,13.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2003,39,3.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2003,39,67.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2003,39,13.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2003,39,13.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2003,39,44.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2003,39,216.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2003,39,300.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2003,39,205.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2003,39,247.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2003,39,42.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2003,39,12.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2003,39,1.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2003,39,101.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2003,39,16.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2003,39,62.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2003,39,129.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2003,39,7.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2003,39,38.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2003,39,36.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2003,39,79.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2003,39,136.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2003,39,24.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2003,39,37.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2003,39,2005.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2003,39,35.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2003,39,445.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2003,39,287.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2003,39,367.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2003,39,29.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2003,39,94.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2003,39,335.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2003,39,3.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2003,39,0.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2003,39,481.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2003,39,2.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2003,39,12.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2003,39,90.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2003,39,10.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2003,39,15.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2003,39,452.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2003,39,6.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,9.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,10.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,23.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,16.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2003,39,24.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2003,39,613.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2003,39,52.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,9.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,198.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,35.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,64.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,212.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,43.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2003,39,220.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2003,39,250.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2003,39,41.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2003,39,387.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2003,39,1094.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2003,39,95.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2003,39,246.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2003,39,616.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2003,39,183.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2003,39,157.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2003,39,29.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2003,39,54.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2003,39,329.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2003,39,18.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2003,39,28.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2003,39,287.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2003,39,3.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2003,39,30.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2003,39,31.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2003,39,102.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2003,39,15.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2003,39,5.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2003,39,172.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2003,39,5.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2003,39,5.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2003,39,1.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2003,39,21.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2003,39,35.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2003,39,7.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2003,39,253.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2003,39,92.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2003,39,279.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2003,39,535.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2003,39,102.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2003,39,78.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2003,39,274.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2003,39,966.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2003,39,236.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2003,39,46.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2003,39,96.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2003,39,192.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2003,39,47.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2003,39,8.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2003,39,10.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2003,39,12.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2003,39,270.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2003,39,133.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2003,39,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2003,39,8.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2003,39,35.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2003,39,9.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2003,39,15.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2003,39,16.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2003,39,41.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2003,39,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2003,39,21.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2003,39,10.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2003,39,3.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2003,39,157.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2003,39,28.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2003,39,0.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2003,39,23.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2003,39,143.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,9.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,168.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2003,39,45.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2003,39,42.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,2.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,23.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,0.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,21.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2003,39,179.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2003,39,94.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2003,39,78.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2003,39,16.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2003,39,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2003,39,224.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2003,39,1058.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2003,39,95.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2003,39,2.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2003,39,66.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2003,39,338.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2003,39,30.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2003,39,727.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2003,39,153.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2003,39,600.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2003,39,25.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2003,39,426.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2003,39,592.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2003,39,489.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2003,39,12.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,3.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,16.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,63.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,518.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2003,39,118.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2003,39,329.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2003,39,1405.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2003,39,110.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2003,39,735.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2003,39,118.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2003,39,696.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2003,39,117.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,212.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,2422.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2003,39,766.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,33.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,2.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,8.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2003,39,122.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,5.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,20.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2003,39,12.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2003,39,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,160.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2003,39,146.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2003,39,32.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,6.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,103.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,104.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,89.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,111.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2003,39,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,40.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,116.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,61.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2003,39,3.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,97.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2003,39,2.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,287.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,27.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,4.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,1083.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,5.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,1.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,2.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,106.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,42.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,315.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,13.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,355.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,1.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,1098.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2003,39,73.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,12.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,9.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2003,39,2.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,3.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,2.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,1.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,1.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2003,39,1.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,1.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,1.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,2.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,2.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,3.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,7.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,5.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,3.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2003,39,11.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2003,39,4.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2003,39,95.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,8.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,21.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,406.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,84.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,39.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,153.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2003,39,64.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2003,39,21.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2003,39,8251.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,911.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2003,39,16.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,17.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2003,39,14.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,59.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,3.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,22.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,150.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2003,39,8.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2003,39,3.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2003,39,1.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2003,39,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,10.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,30.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2003,39,350.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2003,39,155.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2003,39,8.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2003,39,2.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2003,39,6.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,2.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2003,39,9.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2003,39,394.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,54.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,7.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2003,39,17.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,277.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,24.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,16.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,1.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,3.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2003,39,3.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2003,39,27.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2003,39,10.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2003,39,1.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2003,39,34.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2003,39,450.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2003,39,4.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,237.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,1721.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,302.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,8.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2003,39,64.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2003,39,9.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2003,39,1.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2003,39,8.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2003,39,22.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2003,39,5.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2003,39,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2003,39,1.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2003,39,3.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2003,39,6.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2003,39,46.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,37.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2003,39,1.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,3.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,72.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,52.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2003,39,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,1.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,50.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,39.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,2.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2003,39,1.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,4.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,6.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2003,39,1.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,1197.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,6.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,27.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,36.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,720.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2003,39,6.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2003,39,267.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,64.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,13.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,2.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,2.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,14.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,83.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,7.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,271.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,5.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,4471.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,1.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,14.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,73.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,2.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,105.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,21.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,321.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,1.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,1.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,6.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2003,39,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2003,39,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,3.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,1.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,2.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,1.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,1.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,3.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2003,39,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,1.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2003,39,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,1.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,1.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2003,39,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2003,39,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2003,39,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2003,39,1.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2003,39,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2003,39,1.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2003,39,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,6.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2003,39,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2003,39,2.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2003,39,61.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2003,39,33.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2003,39,345.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2003,39,13.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2003,39,44.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2003,39,1.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2003,39,28.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2003,39,22.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2003,39,77.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2003,39,10.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2003,39,25.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2003,39,6.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2003,39,43.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2003,39,22.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2003,39,5.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,23.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2003,39,7.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,24.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2003,39,104.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,19.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,26.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2003,39,26.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,29.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2003,39,113.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2003,39,3.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,33.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,536.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2003,39,75.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,81.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,4.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,93.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2003,39,1.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2003,39,2.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2003,39,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2003,39,10.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2003,39,4.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2003,39,22.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2003,39,14.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2003,39,6.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2003,39,2.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2003,39,1.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2003,39,1537.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2003,39,1.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2003,39,23.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2003,39,14.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2003,39,2.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2003,39,7.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2003,39,20.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2003,39,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2003,39,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2003,39,152.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2003,40,31.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2003,40,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2003,40,8.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2003,40,22.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2003,40,2.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2003,40,5.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2003,40,152.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2003,40,7.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2003,40,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2003,40,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2003,40,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2003,40,88.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2003,40,5.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2003,40,0.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2003,40,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2003,40,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2003,40,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2003,40,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2003,40,2.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2003,40,666.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2003,40,15.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2003,40,2.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2003,40,4.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2003,40,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2003,40,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2003,40,1.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2003,40,8.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2003,40,1.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2003,40,0.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2003,40,0.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2003,40,3.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2003,40,58.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2003,40,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2003,40,0.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2003,40,0.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2003,40,2.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2003,40,173.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2003,40,25.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2003,40,5.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2003,40,10.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2003,40,23.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2003,40,16.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2003,40,11.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2003,40,10.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2003,40,5.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2003,40,67.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2003,40,75.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2003,40,36.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2003,40,104.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2003,40,52.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2003,40,11.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2003,40,7.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2003,40,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2003,40,2.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2003,40,95.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2003,40,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2003,40,14.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2003,40,40.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2003,40,20.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2003,40,8.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2003,40,6.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2003,40,197.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2003,40,9.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2003,40,5.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2003,40,2.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2003,40,57.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2003,40,22.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2003,40,7.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2003,40,2.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2003,40,8.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2003,40,21.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2003,40,13.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2003,40,29.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2003,40,186.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2003,40,57.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2003,40,17.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2003,40,4.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2003,40,15.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2003,40,45.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2003,40,29.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2003,40,62.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2003,40,22.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2003,40,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2003,40,8.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2003,40,6.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2003,40,73.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2003,40,37.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2003,40,1081.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2003,40,171.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2003,40,13.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2003,40,37.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2003,40,7.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2003,40,9.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2003,40,69.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2003,40,15.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2003,40,29.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2003,40,14.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2003,40,351.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2003,40,105.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2003,40,78.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2003,40,50.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2003,40,28.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2003,40,5.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2003,40,3.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2003,40,102.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2003,40,46.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2003,40,73.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2003,40,41.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2003,40,12.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2003,40,21.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2003,40,15.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2003,40,120.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2003,40,47.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2003,40,13.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2003,40,42.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2003,40,3068.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2003,40,34.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2003,40,528.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2003,40,269.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2003,40,29.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2003,40,76.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2003,40,71.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2003,40,328.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2003,40,5.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2003,40,14.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2003,40,346.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2003,40,7.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2003,40,15.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2003,40,239.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2003,40,7.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2003,40,13.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2003,40,369.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2003,40,9.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,22.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,11.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,11.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,12.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2003,40,45.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2003,40,356.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2003,40,25.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,19.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,147.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,32.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,34.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,174.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,112.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2003,40,112.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2003,40,291.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2003,40,79.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2003,40,386.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2003,40,2366.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2003,40,74.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2003,40,429.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2003,40,479.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2003,40,171.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2003,40,229.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2003,40,103.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2003,40,50.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2003,40,363.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2003,40,36.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2003,40,49.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2003,40,160.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2003,40,7.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2003,40,31.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2003,40,34.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2003,40,52.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2003,40,33.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2003,40,5.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2003,40,343.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2003,40,25.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2003,40,3.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2003,40,23.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2003,40,4.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2003,40,39.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2003,40,5.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2003,40,326.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2003,40,76.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2003,40,297.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2003,40,358.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2003,40,183.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2003,40,125.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2003,40,351.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2003,40,1224.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2003,40,122.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2003,40,20.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2003,40,90.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2003,40,143.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2003,40,48.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2003,40,27.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2003,40,37.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2003,40,4.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2003,40,123.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2003,40,88.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2003,40,1.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2003,40,22.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2003,40,39.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2003,40,6.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2003,40,12.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2003,40,27.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2003,40,74.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2003,40,14.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2003,40,14.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2003,40,40.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2003,40,2.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2003,40,271.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2003,40,75.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2003,40,8.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2003,40,28.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2003,40,70.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,9.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,146.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2003,40,15.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2003,40,68.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,4.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,16.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,2.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,22.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2003,40,266.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2003,40,68.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2003,40,136.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2003,40,79.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2003,40,6.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2003,40,53.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2003,40,393.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2003,40,215.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2003,40,2.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2003,40,18.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2003,40,289.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2003,40,46.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2003,40,805.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2003,40,238.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2003,40,383.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2003,40,29.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2003,40,290.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2003,40,493.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2003,40,573.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2003,40,7.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,6.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,14.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,55.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,140.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2003,40,49.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2003,40,101.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2003,40,708.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2003,40,9.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2003,40,247.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2003,40,53.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2003,40,261.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2003,40,142.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,124.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,3859.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2003,40,388.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,15.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,1.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,3.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2003,40,46.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,44.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2003,40,3.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2003,40,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,21.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2003,40,28.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2003,40,26.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,15.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,86.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,24.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,96.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,36.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2003,40,2.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,16.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,33.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,17.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2003,40,4.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,20.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2003,40,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,140.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,15.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,1.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,1069.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,3.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,1.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,2.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,1.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,1.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,74.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,5.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,221.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,31.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,136.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,427.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2003,40,103.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,37.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,15.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2003,40,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,3.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,1.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,2.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,3.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,3.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,3.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,1.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2003,40,16.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2003,40,0.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2003,40,68.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,16.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,356.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,164.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,54.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,141.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2003,40,60.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2003,40,2.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2003,40,1895.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,521.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2003,40,1.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,7.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2003,40,3.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,15.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,37.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,66.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2003,40,1.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2003,40,0.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2003,40,2.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2003,40,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,7.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,19.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2003,40,161.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2003,40,65.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2003,40,9.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2003,40,1.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2003,40,1.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2003,40,198.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,74.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,3.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2003,40,13.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,151.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,39.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,55.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,5.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2003,40,6.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2003,40,40.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2003,40,4.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2003,40,1.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2003,40,16.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2003,40,406.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2003,40,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,89.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,532.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,220.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,34.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2003,40,32.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2003,40,5.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2003,40,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2003,40,1.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2003,40,5.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2003,40,2.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2003,40,1.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2003,40,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,1.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2003,40,3.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2003,40,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2003,40,11.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,17.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2003,40,1.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,2.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,21.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,5.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2003,40,1.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,14.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,1.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,21.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2003,40,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,8.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,1.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2003,40,2.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,445.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,3.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,30.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,10.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,280.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2003,40,6.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2003,40,411.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,30.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,4.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,1.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,5.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,33.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,44.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,21.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,226.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,4.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,1547.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,3.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,8.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,14.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,40.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,8.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,196.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,1.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,4.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2003,40,1.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2003,40,1.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,1.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2003,40,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,1.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2003,40,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,1.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2003,40,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,1.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2003,40,1.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,1.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2003,40,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2003,40,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2003,40,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2003,40,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2003,40,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,3.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2003,40,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2003,40,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2003,40,16.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2003,40,16.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2003,40,329.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2003,40,23.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2003,40,30.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2003,40,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2003,40,16.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2003,40,38.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2003,40,70.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2003,40,6.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2003,40,8.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2003,40,5.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2003,40,6.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2003,40,8.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2003,40,4.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,14.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2003,40,9.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,12.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2003,40,54.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,22.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,14.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2003,40,37.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,7.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2003,40,28.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2003,40,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,9.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,74.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2003,40,10.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,33.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,7.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,42.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2003,40,3.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2003,40,0.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2003,40,1.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2003,40,3.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2003,40,5.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2003,40,16.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2003,40,9.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2003,40,9.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2003,40,1.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2003,40,5.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2003,40,1248.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2003,40,8.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2003,40,27.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2003,40,18.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2003,40,2.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2003,40,10.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2003,40,6.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2003,40,2.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2003,40,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2003,40,119.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2003,41,26.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2003,41,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2003,41,5.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2003,41,12.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2003,41,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2003,41,1.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2003,41,81.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2003,41,13.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2003,41,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2003,41,1.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2003,41,1.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2003,41,44.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2003,41,1.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2003,41,5.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2003,41,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2003,41,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2003,41,1.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2003,41,1.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2003,41,3.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2003,41,721.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2003,41,7.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2003,41,19.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2003,41,1.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2003,41,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2003,41,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2003,41,17.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2003,41,48.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2003,41,1.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2003,41,3.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2003,41,0.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2003,41,2.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2003,41,36.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2003,41,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2003,41,8.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2003,41,3.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2003,41,10.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2003,41,65.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2003,41,24.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2003,41,1.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2003,41,8.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2003,41,15.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2003,41,1.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2003,41,4.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2003,41,7.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2003,41,0.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2003,41,27.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2003,41,40.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2003,41,9.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2003,41,80.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2003,41,28.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2003,41,4.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2003,41,2.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2003,41,1.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2003,41,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2003,41,193.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2003,41,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2003,41,28.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2003,41,46.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2003,41,37.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2003,41,5.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2003,41,6.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2003,41,148.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2003,41,14.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2003,41,1.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2003,41,6.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2003,41,120.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2003,41,9.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2003,41,2.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2003,41,2.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2003,41,3.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2003,41,18.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2003,41,13.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2003,41,28.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2003,41,69.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2003,41,65.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2003,41,6.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2003,41,5.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2003,41,14.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2003,41,16.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2003,41,43.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2003,41,48.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2003,41,26.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2003,41,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2003,41,9.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2003,41,2.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2003,41,72.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2003,41,69.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2003,41,1072.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2003,41,117.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2003,41,66.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2003,41,78.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2003,41,1.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2003,41,20.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2003,41,20.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2003,41,23.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2003,41,105.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2003,41,19.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2003,41,303.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2003,41,38.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2003,41,126.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2003,41,60.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2003,41,24.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2003,41,10.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2003,41,3.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2003,41,115.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2003,41,29.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2003,41,41.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2003,41,33.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2003,41,14.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2003,41,8.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2003,41,11.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2003,41,169.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2003,41,44.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2003,41,10.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2003,41,61.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2003,41,3514.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2003,41,25.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2003,41,518.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2003,41,331.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2003,41,34.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2003,41,33.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2003,41,80.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2003,41,231.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2003,41,11.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2003,41,3.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2003,41,464.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2003,41,8.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2003,41,17.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2003,41,179.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2003,41,22.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2003,41,7.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2003,41,453.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2003,41,8.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,69.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,42.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,12.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,14.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2003,41,41.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2003,41,154.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2003,41,8.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,13.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,101.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,30.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,47.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,215.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,52.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2003,41,148.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2003,41,115.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2003,41,33.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2003,41,297.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2003,41,3710.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2003,41,30.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2003,41,297.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2003,41,228.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2003,41,230.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2003,41,231.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2003,41,78.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2003,41,65.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2003,41,231.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2003,41,65.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2003,41,79.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2003,41,252.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2003,41,29.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2003,41,25.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2003,41,19.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2003,41,48.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2003,41,45.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2003,41,16.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2003,41,438.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2003,41,10.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2003,41,7.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2003,41,36.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2003,41,18.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2003,41,76.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2003,41,1.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2003,41,114.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2003,41,63.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2003,41,192.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2003,41,137.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2003,41,255.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2003,41,71.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2003,41,97.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2003,41,1181.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2003,41,79.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2003,41,25.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2003,41,267.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2003,41,129.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2003,41,18.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2003,41,1.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2003,41,79.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2003,41,3.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2003,41,85.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2003,41,16.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2003,41,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2003,41,16.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2003,41,98.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2003,41,13.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2003,41,23.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2003,41,197.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2003,41,169.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2003,41,1.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2003,41,39.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2003,41,57.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2003,41,6.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2003,41,634.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2003,41,73.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2003,41,9.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2003,41,58.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2003,41,20.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,18.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,75.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2003,41,4.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2003,41,36.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,14.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,17.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,9.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,17.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2003,41,357.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2003,41,21.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2003,41,105.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2003,41,98.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2003,41,3.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2003,41,72.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2003,41,266.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2003,41,181.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2003,41,3.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2003,41,82.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2003,41,157.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2003,41,59.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2003,41,323.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2003,41,171.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2003,41,270.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2003,41,21.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2003,41,247.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2003,41,161.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2003,41,253.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2003,41,11.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,7.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,8.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,22.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,135.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2003,41,58.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2003,41,51.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2003,41,294.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2003,41,0.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2003,41,175.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2003,41,25.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2003,41,96.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2003,41,99.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,43.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,1833.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2003,41,246.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,3.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,1.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2003,41,15.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,1.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,21.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2003,41,2.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2003,41,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,9.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2003,41,7.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2003,41,9.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,19.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,35.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,14.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,115.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,24.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2003,41,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,3.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,46.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,32.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2003,41,7.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,3.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2003,41,1.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,75.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,42.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,1.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,632.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,3.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,1.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,45.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,3.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,161.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,23.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,28.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,1.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,71.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2003,41,21.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,26.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2003,41,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,1.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,1.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,1.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,2.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2003,41,8.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2003,41,1.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2003,41,13.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,5.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,178.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,131.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,42.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,92.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2003,41,14.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2003,41,3.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2003,41,829.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,219.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,4.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2003,41,1.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,17.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,7.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,53.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2003,41,3.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2003,41,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2003,41,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,2.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,12.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2003,41,79.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2003,41,17.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2003,41,5.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2003,41,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,1.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2003,41,1.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2003,41,128.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,51.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,1.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2003,41,2.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,59.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,9.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,30.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,5.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2003,41,3.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2003,41,8.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2003,41,2.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2003,41,0.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2003,41,4.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2003,41,140.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2003,41,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,23.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,210.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,101.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,6.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2003,41,17.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2003,41,2.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2003,41,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2003,41,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2003,41,11.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2003,41,1.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2003,41,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2003,41,2.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2003,41,3.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,4.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2003,41,1.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,2.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,3.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2003,41,1.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,2.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,1.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,15.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,2.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2003,41,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,6.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,1.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2003,41,4.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,132.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,11.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,4.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,133.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2003,41,5.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2003,41,505.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,7.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,1.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,2.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,14.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,5.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,3.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,38.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,244.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,2.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,11.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,9.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,60.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,1.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,6.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2003,41,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2003,41,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,1.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,1.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,1.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2003,41,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2003,41,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2003,41,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2003,41,1.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2003,41,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2003,41,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2003,41,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2003,41,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2003,41,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,4.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2003,41,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2003,41,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2003,41,5.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2003,41,12.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2003,41,105.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2003,41,15.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2003,41,2.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2003,41,1.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2003,41,7.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2003,41,15.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2003,41,11.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2003,41,3.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2003,41,8.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2003,41,2.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2003,41,2.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2003,41,14.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2003,41,0.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,6.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2003,41,5.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,4.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2003,41,44.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,24.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,6.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2003,41,25.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,5.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2003,41,11.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2003,41,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,0.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,7.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2003,41,7.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,10.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,0.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,20.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2003,41,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2003,41,2.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2003,41,5.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2003,41,3.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2003,41,4.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2003,41,3.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2003,41,761.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2003,41,10.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2003,41,6.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2003,41,19.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2003,41,3.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2003,41,1.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2003,41,79.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2003,42,11.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2003,42,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2003,42,2.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2003,42,3.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2003,42,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2003,42,2.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2003,42,101.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2003,42,1.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2003,42,1.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2003,42,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2003,42,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2003,42,35.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2003,42,3.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2003,42,4.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2003,42,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2003,42,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2003,42,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2003,42,1.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2003,42,2.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2003,42,361.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2003,42,4.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2003,42,4.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2003,42,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2003,42,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2003,42,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2003,42,23.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2003,42,117.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2003,42,4.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2003,42,3.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2003,42,1.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2003,42,2.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2003,42,24.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2003,42,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2003,42,5.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2003,42,1.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2003,42,54.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2003,42,69.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2003,42,9.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2003,42,3.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2003,42,15.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2003,42,7.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2003,42,1.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2003,42,8.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2003,42,11.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2003,42,1.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2003,42,9.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2003,42,16.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2003,42,2.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2003,42,54.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2003,42,27.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2003,42,0.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2003,42,1.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2003,42,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2003,42,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2003,42,279.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2003,42,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2003,42,14.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2003,42,25.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2003,42,8.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2003,42,3.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2003,42,2.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2003,42,29.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2003,42,6.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2003,42,2.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2003,42,1.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2003,42,113.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2003,42,6.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2003,42,0.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2003,42,2.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2003,42,1.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2003,42,1.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2003,42,0.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2003,42,11.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2003,42,21.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2003,42,28.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2003,42,4.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2003,42,4.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2003,42,7.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2003,42,6.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2003,42,9.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2003,42,20.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2003,42,15.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2003,42,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2003,42,9.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2003,42,3.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2003,42,47.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2003,42,52.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2003,42,633.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2003,42,67.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2003,42,60.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2003,42,11.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2003,42,1.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2003,42,14.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2003,42,5.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2003,42,7.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2003,42,89.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2003,42,1.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2003,42,106.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2003,42,22.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2003,42,59.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2003,42,24.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2003,42,20.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2003,42,5.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2003,42,0.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2003,42,67.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2003,42,26.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2003,42,41.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2003,42,2.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2003,42,4.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2003,42,2.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2003,42,6.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2003,42,103.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2003,42,30.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2003,42,20.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2003,42,18.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2003,42,2286.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2003,42,14.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2003,42,231.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2003,42,174.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2003,42,19.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2003,42,19.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2003,42,41.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2003,42,136.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2003,42,7.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2003,42,7.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2003,42,316.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2003,42,13.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2003,42,3.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2003,42,142.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2003,42,10.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2003,42,31.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2003,42,242.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2003,42,15.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,28.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,14.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,6.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,9.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2003,42,6.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2003,42,70.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2003,42,3.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,7.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,42.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,12.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,54.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,73.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,10.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2003,42,73.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2003,42,63.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2003,42,41.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2003,42,205.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2003,42,2290.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2003,42,12.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2003,42,154.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2003,42,55.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2003,42,93.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2003,42,77.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2003,42,108.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2003,42,9.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2003,42,88.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2003,42,35.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2003,42,39.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2003,42,74.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2003,42,12.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2003,42,13.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2003,42,13.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2003,42,28.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2003,42,19.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2003,42,1.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2003,42,106.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2003,42,7.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2003,42,1.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2003,42,5.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2003,42,12.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2003,42,33.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2003,42,1.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2003,42,127.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2003,42,81.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2003,42,51.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2003,42,31.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2003,42,78.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2003,42,22.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2003,42,28.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2003,42,500.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2003,42,55.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2003,42,15.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2003,42,162.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2003,42,52.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2003,42,5.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2003,42,5.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2003,42,24.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2003,42,2.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2003,42,48.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2003,42,7.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2003,42,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2003,42,14.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2003,42,27.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2003,42,27.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2003,42,19.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2003,42,75.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2003,42,98.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2003,42,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2003,42,16.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2003,42,62.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2003,42,12.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2003,42,828.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2003,42,129.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2003,42,27.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2003,42,25.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2003,42,9.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,6.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,64.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2003,42,2.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2003,42,8.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,26.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,4.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,11.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,9.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2003,42,294.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2003,42,15.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2003,42,86.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2003,42,41.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2003,42,5.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2003,42,9.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2003,42,117.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2003,42,89.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2003,42,0.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2003,42,28.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2003,42,62.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2003,42,51.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2003,42,33.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2003,42,31.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2003,42,139.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2003,42,4.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2003,42,151.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2003,42,63.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2003,42,125.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2003,42,15.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,0.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,12.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,8.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,81.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2003,42,29.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2003,42,23.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2003,42,72.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2003,42,2.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2003,42,38.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2003,42,0.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2003,42,17.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2003,42,41.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,20.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,322.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2003,42,154.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,2.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,0.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2003,42,8.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,3.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2003,42,0.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2003,42,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,2.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2003,42,1.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2003,42,1.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,10.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,9.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,6.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,60.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,9.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2003,42,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,1.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,20.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,9.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2003,42,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,3.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2003,42,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,34.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,5.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,131.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,1.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,23.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,4.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,61.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,4.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,11.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,1.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,11.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2003,42,3.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,1.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,1.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2003,42,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,1.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,1.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2003,42,1.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2003,42,2.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,1.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,54.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,74.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,13.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,61.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2003,42,3.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2003,42,433.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,104.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,2.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,9.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,2.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,39.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2003,42,2.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2003,42,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,7.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,2.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2003,42,22.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2003,42,6.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2003,42,2.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2003,42,2.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2003,42,1.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2003,42,48.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,6.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2003,42,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,10.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,1.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,2.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2003,42,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2003,42,2.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2003,42,1.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2003,42,1.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2003,42,0.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2003,42,37.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2003,42,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,4.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,35.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,28.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,1.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2003,42,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2003,42,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2003,42,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2003,42,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2003,42,2.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2003,42,0.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2003,42,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2003,42,1.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,2.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2003,42,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2003,42,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,2.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2003,42,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,11.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2003,42,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,10.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,6.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,2.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,43.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2003,42,0.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2003,42,179.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,1.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,1.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,1.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,3.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,12.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,11.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,4.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,2.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,1.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2003,42,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2003,42,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,1.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,1.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,2.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2003,42,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2003,42,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,1.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2003,42,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2003,42,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2003,42,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2003,42,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2003,42,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2003,42,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2003,42,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,1.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,1.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2003,42,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2003,42,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2003,42,1.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2003,42,4.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2003,42,43.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2003,42,5.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2003,42,0.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2003,42,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2003,42,3.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2003,42,8.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2003,42,0.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2003,42,1.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2003,42,2.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2003,42,2.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2003,42,2.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2003,42,2.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2003,42,2.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,3.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2003,42,5.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,0.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2003,42,19.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,13.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,8.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2003,42,11.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,8.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2003,42,2.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2003,42,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,0.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,4.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2003,42,0.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,6.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,3.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,4.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2003,42,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2003,42,1.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2003,42,2.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2003,42,1.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2003,42,3.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2003,42,1.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2003,42,1.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2003,42,327.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2003,42,5.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2003,42,5.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2003,42,1.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2003,42,1.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2003,42,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2003,42,36.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2003,43,17.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2003,43,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2003,43,0.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2003,43,5.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2003,43,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2003,43,0.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2003,43,67.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2003,43,1.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2003,43,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2003,43,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2003,43,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2003,43,17.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2003,43,0.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2003,43,34.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2003,43,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2003,43,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2003,43,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2003,43,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2003,43,2.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2003,43,154.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2003,43,4.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2003,43,2.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2003,43,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2003,43,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2003,43,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2003,43,20.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2003,43,686.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2003,43,9.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2003,43,49.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2003,43,4.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2003,43,3.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2003,43,30.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2003,43,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2003,43,0.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2003,43,2.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2003,43,49.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2003,43,73.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2003,43,13.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2003,43,8.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2003,43,18.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2003,43,2.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2003,43,1.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2003,43,1.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2003,43,6.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2003,43,1.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2003,43,10.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2003,43,13.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2003,43,2.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2003,43,17.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2003,43,12.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2003,43,0.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2003,43,0.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2003,43,2.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2003,43,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2003,43,644.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2003,43,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2003,43,6.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2003,43,15.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2003,43,1.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2003,43,1.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2003,43,0.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2003,43,8.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2003,43,0.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2003,43,2.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2003,43,0.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2003,43,89.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2003,43,2.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2003,43,1.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2003,43,3.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2003,43,1.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2003,43,3.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2003,43,2.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2003,43,11.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2003,43,7.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2003,43,8.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2003,43,1.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2003,43,40.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2003,43,7.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2003,43,5.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2003,43,2.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2003,43,13.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2003,43,4.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2003,43,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2003,43,6.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2003,43,3.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2003,43,28.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2003,43,29.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2003,43,333.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2003,43,45.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2003,43,10.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2003,43,20.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2003,43,0.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2003,43,10.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2003,43,1.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2003,43,5.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2003,43,12.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2003,43,1.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2003,43,9.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2003,43,0.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2003,43,20.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2003,43,14.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2003,43,19.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2003,43,2.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2003,43,4.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2003,43,47.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2003,43,11.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2003,43,11.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2003,43,2.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2003,43,2.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2003,43,0.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2003,43,6.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2003,43,26.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2003,43,13.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2003,43,19.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2003,43,17.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2003,43,818.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2003,43,3.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2003,43,67.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2003,43,45.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2003,43,7.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2003,43,15.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2003,43,44.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2003,43,150.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2003,43,1.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2003,43,6.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2003,43,99.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2003,43,4.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2003,43,2.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2003,43,76.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2003,43,5.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2003,43,13.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2003,43,87.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2003,43,12.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,16.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,8.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,5.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,2.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2003,43,8.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2003,43,60.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2003,43,1.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,15.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,32.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,1.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,19.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,33.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,5.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2003,43,45.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2003,43,32.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2003,43,16.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2003,43,117.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2003,43,479.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2003,43,40.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2003,43,67.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2003,43,76.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2003,43,35.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2003,43,20.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2003,43,46.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2003,43,9.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2003,43,46.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2003,43,23.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2003,43,22.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2003,43,45.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2003,43,13.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2003,43,15.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2003,43,4.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2003,43,12.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2003,43,29.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2003,43,8.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2003,43,104.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2003,43,3.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2003,43,1.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2003,43,1.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2003,43,9.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2003,43,36.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2003,43,0.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2003,43,21.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2003,43,41.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2003,43,15.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2003,43,10.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2003,43,34.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2003,43,6.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2003,43,16.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2003,43,216.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2003,43,30.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2003,43,25.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2003,43,43.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2003,43,27.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2003,43,3.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2003,43,0.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2003,43,16.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2003,43,0.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2003,43,40.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2003,43,25.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2003,43,1.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2003,43,5.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2003,43,7.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2003,43,15.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2003,43,3.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2003,43,20.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2003,43,54.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2003,43,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2003,43,10.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2003,43,87.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2003,43,10.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2003,43,560.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2003,43,81.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2003,43,31.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2003,43,4.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2003,43,5.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,1.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,36.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2003,43,0.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2003,43,6.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,15.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,1.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,3.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,13.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2003,43,153.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2003,43,9.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2003,43,45.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2003,43,7.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2003,43,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2003,43,2.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2003,43,42.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2003,43,11.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2003,43,2.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2003,43,3.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2003,43,34.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2003,43,17.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2003,43,21.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2003,43,36.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2003,43,123.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2003,43,3.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2003,43,61.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2003,43,63.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2003,43,42.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2003,43,12.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,0.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,4.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,14.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,75.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2003,43,4.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2003,43,3.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2003,43,33.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2003,43,1.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2003,43,8.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2003,43,0.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2003,43,7.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2003,43,48.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,6.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,139.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2003,43,69.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2003,43,0.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2003,43,0.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2003,43,1.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,0.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2003,43,0.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2003,43,0.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,1.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,3.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,1.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,10.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,1.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2003,43,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,0.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,5.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,6.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2003,43,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2003,43,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,1.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,5.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,23.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,6.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,14.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,5.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,3.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2003,43,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2003,43,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,16.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,10.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,5.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,6.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2003,43,1.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2003,43,173.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,21.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,2.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,2.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,9.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2003,43,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,2.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,2.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2003,43,2.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2003,43,1.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2003,43,1.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2003,43,1.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2003,43,45.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2003,43,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,2.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,1.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2003,43,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2003,43,1.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2003,43,1.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2003,43,0.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2003,43,1.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2003,43,11.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2003,43,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,1.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,10.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,1.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2003,43,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2003,43,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2003,43,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2003,43,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2003,43,3.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2003,43,2.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2003,43,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2003,43,0.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2003,43,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,1.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2003,43,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,3.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2003,43,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,11.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,1.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2003,43,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,4.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,1.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,1.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,0.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,32.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2003,43,1.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2003,43,42.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,1.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,2.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,3.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,1.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,2.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2003,43,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2003,43,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,1.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2003,43,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2003,43,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2003,43,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2003,43,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2003,43,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2003,43,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2003,43,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2003,43,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,1.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2003,43,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,1.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2003,43,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2003,43,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2003,43,2.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2003,43,1.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2003,43,11.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2003,43,1.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2003,43,0.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2003,43,2.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2003,43,1.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2003,43,1.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2003,43,2.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2003,43,0.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2003,43,0.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2003,43,5.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2003,43,0.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2003,43,2.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2003,43,2.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,0.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2003,43,2.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,0.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2003,43,18.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,11.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,2.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2003,43,7.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,0.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2003,43,3.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2003,43,1.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,1.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,6.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2003,43,0.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,3.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,0.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,4.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2003,43,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2003,43,1.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2003,43,1.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2003,43,3.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2003,43,2.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2003,43,191.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2003,43,3.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2003,43,2.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2003,43,1.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2003,43,1.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2003,43,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2003,43,39.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2003,44,32.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2003,44,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2003,44,0.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2003,44,3.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2003,44,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2003,44,0.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2003,44,13.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2003,44,0.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2003,44,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2003,44,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2003,44,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2003,44,7.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2003,44,0.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2003,44,1.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2003,44,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2003,44,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2003,44,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2003,44,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2003,44,0.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2003,44,76.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2003,44,0.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2003,44,1.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2003,44,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2003,44,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2003,44,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2003,44,1.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2003,44,1458.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2003,44,18.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2003,44,110.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2003,44,7.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2003,44,1.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2003,44,50.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2003,44,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2003,44,0.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2003,44,3.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2003,44,14.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2003,44,138.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2003,44,1.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2003,44,10.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2003,44,30.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2003,44,12.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2003,44,3.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2003,44,7.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2003,44,1.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2003,44,1.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2003,44,1.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2003,44,13.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2003,44,5.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2003,44,3.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2003,44,4.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2003,44,0.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2003,44,0.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2003,44,2.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2003,44,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2003,44,1119.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2003,44,2.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2003,44,8.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2003,44,7.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2003,44,2.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2003,44,0.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2003,44,0.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2003,44,0.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2003,44,4.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2003,44,0.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2003,44,0.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2003,44,50.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2003,44,4.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2003,44,2.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2003,44,0.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2003,44,1.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2003,44,0.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2003,44,2.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2003,44,4.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2003,44,4.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2003,44,4.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2003,44,1.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2003,44,30.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2003,44,4.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2003,44,2.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2003,44,7.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2003,44,3.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2003,44,13.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2003,44,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2003,44,4.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2003,44,2.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2003,44,3.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2003,44,5.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2003,44,133.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2003,44,73.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2003,44,8.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2003,44,9.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2003,44,0.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2003,44,0.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2003,44,2.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2003,44,0.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2003,44,1.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2003,44,0.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2003,44,7.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2003,44,0.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2003,44,8.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2003,44,12.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2003,44,8.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2003,44,1.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2003,44,1.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2003,44,24.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2003,44,2.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2003,44,0.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2003,44,4.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2003,44,1.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2003,44,0.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2003,44,3.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2003,44,2.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2003,44,3.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2003,44,5.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2003,44,4.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2003,44,425.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2003,44,4.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2003,44,35.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2003,44,20.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2003,44,26.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2003,44,1.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2003,44,11.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2003,44,86.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2003,44,0.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2003,44,3.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2003,44,20.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2003,44,1.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2003,44,2.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2003,44,3.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2003,44,0.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2003,44,0.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2003,44,35.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2003,44,2.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,3.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,2.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,0.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,4.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2003,44,4.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2003,44,24.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2003,44,1.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,4.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,4.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,0.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,6.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,81.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,0.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2003,44,10.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2003,44,13.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2003,44,4.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2003,44,54.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2003,44,124.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2003,44,7.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2003,44,14.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2003,44,6.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2003,44,34.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2003,44,8.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2003,44,16.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2003,44,4.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2003,44,10.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2003,44,19.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2003,44,8.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2003,44,11.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2003,44,15.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2003,44,6.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2003,44,10.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2003,44,16.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2003,44,20.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2003,44,7.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2003,44,138.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2003,44,5.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2003,44,0.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2003,44,0.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2003,44,8.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2003,44,27.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2003,44,2.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2003,44,8.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2003,44,20.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2003,44,8.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2003,44,2.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2003,44,13.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2003,44,2.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2003,44,1.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2003,44,148.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2003,44,30.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2003,44,31.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2003,44,29.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2003,44,10.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2003,44,4.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2003,44,2.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2003,44,7.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2003,44,0.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2003,44,12.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2003,44,14.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2003,44,1.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2003,44,1.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2003,44,1.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2003,44,1.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2003,44,9.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2003,44,11.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2003,44,27.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2003,44,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2003,44,0.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2003,44,10.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2003,44,7.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2003,44,225.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2003,44,29.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2003,44,11.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2003,44,1.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2003,44,0.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,0.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,19.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2003,44,1.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2003,44,2.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,20.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,1.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,2.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,3.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2003,44,109.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2003,44,1.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2003,44,19.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2003,44,6.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2003,44,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2003,44,7.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2003,44,29.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2003,44,4.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2003,44,0.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2003,44,5.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2003,44,7.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2003,44,4.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2003,44,16.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2003,44,11.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2003,44,53.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2003,44,4.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2003,44,13.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2003,44,33.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2003,44,23.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2003,44,10.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,0.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,3.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,11.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,34.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2003,44,1.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2003,44,2.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2003,44,16.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2003,44,0.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2003,44,13.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2003,44,0.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2003,44,15.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2003,44,16.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,20.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,44.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2003,44,39.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2003,44,2.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2003,44,2.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2003,44,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,0.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2003,44,0.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2003,44,1.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,4.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,2.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,7.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,3.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2003,44,1.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,0.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,1.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,2.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2003,44,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2003,44,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,2.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,0.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,7.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,1.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,1.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,3.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,6.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,3.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,17.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,5.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2003,44,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,1.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2003,44,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,1.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2003,44,1.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2003,44,1.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,1.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,5.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,4.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,2.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2003,44,1.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2003,44,1.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2003,44,54.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,8.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,3.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,2.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,17.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2003,44,1.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2003,44,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,3.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,1.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2003,44,2.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2003,44,1.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2003,44,1.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2003,44,28.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2003,44,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,1.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2003,44,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2003,44,1.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2003,44,2.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,5.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2003,44,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2003,44,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2003,44,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2003,44,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2003,44,1.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2003,44,0.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2003,44,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2003,44,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,1.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2003,44,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,5.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2003,44,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,0.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,5.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2003,44,1.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2003,44,12.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,1.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,1.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,1.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,1.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2003,44,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2003,44,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2003,44,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2003,44,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2003,44,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2003,44,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2003,44,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2003,44,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2003,44,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2003,44,1.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2003,44,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,3.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2003,44,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2003,44,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2003,44,0.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2003,44,2.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2003,44,0.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2003,44,3.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2003,44,0.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2003,44,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2003,44,0.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2003,44,0.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2003,44,1.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2003,44,0.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2003,44,0.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2003,44,2.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2003,44,0.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2003,44,0.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2003,44,0.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,0.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2003,44,13.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,0.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2003,44,18.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,1.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,1.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2003,44,3.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,2.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2003,44,0.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2003,44,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,0.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,2.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2003,44,0.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,1.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,0.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,0.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2003,44,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2003,44,143.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2003,44,4.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2003,44,1.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2003,44,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2003,44,20.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2003,45,20.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2003,45,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2003,45,0.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2003,45,3.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2003,45,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2003,45,0.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2003,45,14.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2003,45,1.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2003,45,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2003,45,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2003,45,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2003,45,8.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2003,45,0.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2003,45,0.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2003,45,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2003,45,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2003,45,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2003,45,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2003,45,0.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2003,45,39.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2003,45,0.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2003,45,2.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2003,45,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2003,45,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2003,45,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2003,45,1.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2003,45,1275.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2003,45,18.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2003,45,51.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2003,45,3.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2003,45,0.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2003,45,20.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2003,45,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2003,45,0.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2003,45,1.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2003,45,14.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2003,45,157.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2003,45,13.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2003,45,5.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2003,45,30.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2003,45,8.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2003,45,3.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2003,45,6.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2003,45,15.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2003,45,0.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2003,45,0.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2003,45,9.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2003,45,11.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2003,45,3.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2003,45,8.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2003,45,1.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2003,45,0.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2003,45,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2003,45,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2003,45,898.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2003,45,1.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2003,45,6.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2003,45,9.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2003,45,3.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2003,45,1.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2003,45,2.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2003,45,0.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2003,45,0.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2003,45,8.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2003,45,4.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2003,45,25.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2003,45,10.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2003,45,0.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2003,45,1.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2003,45,2.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2003,45,0.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2003,45,3.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2003,45,5.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2003,45,3.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2003,45,0.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2003,45,2.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2003,45,11.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2003,45,6.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2003,45,0.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2003,45,2.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2003,45,5.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2003,45,6.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2003,45,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2003,45,2.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2003,45,0.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2003,45,2.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2003,45,2.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2003,45,32.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2003,45,34.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2003,45,7.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2003,45,6.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2003,45,0.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2003,45,0.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2003,45,0.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2003,45,0.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2003,45,0.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2003,45,0.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2003,45,3.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2003,45,0.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2003,45,0.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2003,45,14.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2003,45,2.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2003,45,6.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2003,45,1.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2003,45,12.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2003,45,1.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2003,45,0.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2003,45,1.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2003,45,0.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2003,45,1.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2003,45,4.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2003,45,3.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2003,45,3.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2003,45,0.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2003,45,1.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2003,45,206.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2003,45,2.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2003,45,32.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2003,45,6.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2003,45,16.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2003,45,1.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2003,45,5.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2003,45,37.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2003,45,0.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2003,45,0.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2003,45,55.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2003,45,0.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2003,45,17.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2003,45,0.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2003,45,0.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2003,45,1.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2003,45,15.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2003,45,0.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,1.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,0.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,0.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,2.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2003,45,5.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2003,45,12.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2003,45,1.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,0.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,6.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,0.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,22.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,26.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,1.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2003,45,15.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2003,45,2.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2003,45,1.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2003,45,15.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2003,45,77.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2003,45,6.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2003,45,15.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2003,45,2.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2003,45,4.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2003,45,3.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2003,45,2.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2003,45,5.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2003,45,7.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2003,45,4.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2003,45,18.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2003,45,16.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2003,45,4.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2003,45,7.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2003,45,5.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2003,45,0.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2003,45,9.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2003,45,5.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2003,45,68.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2003,45,3.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2003,45,1.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2003,45,0.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2003,45,6.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2003,45,22.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2003,45,0.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2003,45,2.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2003,45,4.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2003,45,3.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2003,45,1.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2003,45,2.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2003,45,1.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2003,45,4.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2003,45,64.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2003,45,10.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2003,45,20.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2003,45,4.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2003,45,11.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2003,45,5.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2003,45,1.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2003,45,2.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2003,45,0.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2003,45,22.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2003,45,7.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2003,45,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2003,45,2.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2003,45,2.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2003,45,0.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2003,45,26.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2003,45,13.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2003,45,6.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2003,45,1.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2003,45,1.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2003,45,20.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2003,45,4.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2003,45,155.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2003,45,9.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2003,45,11.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2003,45,0.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2003,45,5.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,2.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,3.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2003,45,3.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2003,45,2.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,24.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,0.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,5.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,1.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2003,45,45.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2003,45,2.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2003,45,9.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2003,45,26.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2003,45,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2003,45,14.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2003,45,9.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2003,45,1.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2003,45,0.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2003,45,0.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2003,45,2.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2003,45,6.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2003,45,20.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2003,45,17.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2003,45,49.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2003,45,5.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2003,45,13.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2003,45,21.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2003,45,14.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2003,45,11.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,0.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,9.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,1.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,23.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2003,45,0.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2003,45,2.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2003,45,10.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2003,45,0.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2003,45,8.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2003,45,0.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2003,45,8.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2003,45,6.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,28.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,30.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2003,45,20.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2003,45,0.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2003,45,0.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2003,45,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,0.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2003,45,0.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2003,45,0.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,4.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,1.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2003,45,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,0.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,1.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2003,45,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,1.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2003,45,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,3.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,1.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,1.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,3.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,1.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,4.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,8.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,15.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,1.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2003,45,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2003,45,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,1.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,1.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2003,45,1.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,4.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,1.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2003,45,3.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2003,45,64.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,2.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,1.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,2.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,3.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,5.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2003,45,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,4.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,1.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2003,45,1.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,1.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2003,45,47.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2003,45,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,1.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2003,45,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2003,45,3.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2003,45,2.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2003,45,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2003,45,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2003,45,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2003,45,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2003,45,0.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2003,45,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,1.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2003,45,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,1.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,1.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2003,45,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,4.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,0.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2003,45,1.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,4.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2003,45,0.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2003,45,2.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,1.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,1.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,1.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2003,45,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2003,45,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2003,45,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2003,45,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2003,45,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2003,45,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2003,45,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2003,45,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2003,45,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2003,45,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2003,45,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2003,45,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2003,45,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2003,45,0.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2003,45,0.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2003,45,0.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2003,45,2.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2003,45,1.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2003,45,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2003,45,0.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2003,45,0.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2003,45,0.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2003,45,0.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2003,45,0.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2003,45,13.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2003,45,0.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2003,45,0.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2003,45,0.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2003,45,7.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2003,45,31.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,2.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2003,45,0.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2003,45,1.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2003,45,4.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,1.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2003,45,1.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2003,45,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2003,45,1.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2003,45,1.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2003,45,15.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2003,45,1.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2003,45,108.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2003,45,1.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2003,45,3.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2003,45,2.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2003,45,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2003,45,6.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2003,46,41.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2003,46,0.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2003,46,0.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2003,46,6.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2003,46,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2003,46,1.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2003,46,12.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2003,46,7.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2003,46,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2003,46,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2003,46,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2003,46,27.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2003,46,0.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2003,46,1.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2003,46,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2003,46,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2003,46,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2003,46,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2003,46,0.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2003,46,40.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2003,46,0.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2003,46,1.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2003,46,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2003,46,1.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2003,46,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2003,46,0.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2003,46,475.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2003,46,9.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2003,46,33.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2003,46,3.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2003,46,0.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2003,46,10.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2003,46,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2003,46,0.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2003,46,1.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2003,46,1.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2003,46,228.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2003,46,15.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2003,46,4.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2003,46,26.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2003,46,17.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2003,46,13.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2003,46,5.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2003,46,118.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2003,46,1.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2003,46,3.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2003,46,23.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2003,46,62.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2003,46,5.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2003,46,27.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2003,46,0.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2003,46,0.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2003,46,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2003,46,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2003,46,249.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2003,46,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2003,46,13.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2003,46,16.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2003,46,11.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2003,46,2.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2003,46,4.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2003,46,2.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2003,46,1.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2003,46,39.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2003,46,7.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2003,46,16.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2003,46,1.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2003,46,2.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2003,46,1.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2003,46,0.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2003,46,2.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2003,46,4.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2003,46,3.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2003,46,7.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2003,46,1.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2003,46,1.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2003,46,5.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2003,46,0.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2003,46,1.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2003,46,0.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2003,46,16.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2003,46,28.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2003,46,4.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2003,46,4.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2003,46,0.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2003,46,0.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2003,46,0.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2003,46,0.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2003,46,0.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2003,46,0.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2003,46,1.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2003,46,0.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2003,46,0.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2003,46,14.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2003,46,1.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2003,46,5.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2003,46,2.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2003,46,0.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2003,46,1.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2003,46,2.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2003,46,4.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2003,46,1.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2003,46,2.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2003,46,1.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2003,46,205.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2003,46,2.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2003,46,43.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2003,46,2.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2003,46,33.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2003,46,4.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2003,46,5.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2003,46,52.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2003,46,0.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2003,46,66.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2003,46,6.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2003,46,0.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2003,46,15.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2003,46,0.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,1.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2003,46,3.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2003,46,7.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2003,46,0.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,4.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,21.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,0.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2003,46,12.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2003,46,4.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2003,46,6.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2003,46,19.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2003,46,57.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2003,46,2.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2003,46,16.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2003,46,0.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2003,46,16.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2003,46,6.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2003,46,9.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2003,46,15.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2003,46,2.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2003,46,1.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2003,46,10.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2003,46,21.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2003,46,4.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2003,46,4.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2003,46,6.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2003,46,0.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2003,46,9.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2003,46,3.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2003,46,54.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2003,46,0.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2003,46,0.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2003,46,1.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2003,46,8.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2003,46,20.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2003,46,1.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2003,46,3.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2003,46,0.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2003,46,0.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2003,46,0.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2003,46,1.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2003,46,1.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2003,46,1.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2003,46,73.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2003,46,3.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2003,46,14.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2003,46,10.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2003,46,10.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2003,46,3.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2003,46,0.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2003,46,0.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2003,46,0.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2003,46,10.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2003,46,4.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2003,46,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2003,46,2.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2003,46,0.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2003,46,2.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2003,46,7.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2003,46,20.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2003,46,8.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2003,46,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2003,46,4.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2003,46,17.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2003,46,1.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2003,46,173.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2003,46,5.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2003,46,15.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2003,46,0.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2003,46,0.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,0.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,8.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2003,46,0.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2003,46,0.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,32.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,0.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,6.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,1.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2003,46,35.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2003,46,1.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2003,46,7.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2003,46,72.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2003,46,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2003,46,57.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2003,46,5.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2003,46,2.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2003,46,2.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2003,46,0.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2003,46,3.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2003,46,0.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2003,46,13.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2003,46,10.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2003,46,49.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2003,46,1.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2003,46,8.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2003,46,9.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2003,46,11.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2003,46,6.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,0.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,0.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,9.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,18.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2003,46,0.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2003,46,2.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2003,46,17.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2003,46,0.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2003,46,16.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2003,46,0.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2003,46,9.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2003,46,6.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,23.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,22.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2003,46,9.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,1.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2003,46,0.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2003,46,1.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2003,46,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,0.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2003,46,0.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2003,46,0.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,2.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2003,46,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,0.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,2.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,3.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2003,46,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2003,46,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,2.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,1.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,9.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,1.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,7.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,6.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,12.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,5.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2003,46,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,1.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2003,46,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,1.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,3.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,11.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,1.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,2.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2003,46,70.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,4.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,1.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,1.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,6.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2003,46,1.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2003,46,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,4.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,6.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2003,46,2.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2003,46,1.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2003,46,102.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2003,46,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,2.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,1.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2003,46,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2003,46,2.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2003,46,1.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2003,46,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2003,46,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2003,46,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2003,46,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2003,46,0.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2003,46,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,1.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2003,46,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2003,46,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,2.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2003,46,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,1.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,7.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2003,46,0.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2003,46,2.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,1.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,1.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,2.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2003,46,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2003,46,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2003,46,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2003,46,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2003,46,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2003,46,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2003,46,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2003,46,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2003,46,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2003,46,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2003,46,1.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2003,46,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2003,46,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2003,46,0.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2003,46,3.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2003,46,0.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2003,46,1.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2003,46,1.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2003,46,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2003,46,0.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2003,46,0.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2003,46,5.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2003,46,0.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2003,46,1.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2003,46,11.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2003,46,1.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2003,46,0.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2003,46,0.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,1.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2003,46,8.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,0.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2003,46,102.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,10.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,2.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2003,46,0.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,1.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2003,46,0.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2003,46,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,0.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,3.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2003,46,0.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,0.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,0.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,4.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2003,46,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2003,46,8.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2003,46,17.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2003,46,1.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2003,46,2.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2003,46,167.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2003,46,3.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2003,46,5.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2003,46,2.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2003,46,1.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2003,46,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2003,46,13.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2003,47,185.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2003,47,1.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2003,47,0.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2003,47,8.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2003,47,0.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2003,47,0.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2003,47,12.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2003,47,14.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2003,47,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2003,47,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2003,47,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2003,47,18.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2003,47,30.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2003,47,2.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2003,47,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2003,47,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2003,47,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2003,47,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2003,47,0.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2003,47,31.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2003,47,0.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2003,47,13.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2003,47,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2003,47,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2003,47,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2003,47,3.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2003,47,189.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2003,47,5.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2003,47,16.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2003,47,2.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2003,47,0.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2003,47,11.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2003,47,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2003,47,0.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2003,47,2.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2003,47,2.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2003,47,396.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2003,47,17.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2003,47,6.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2003,47,19.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2003,47,46.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2003,47,7.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2003,47,12.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2003,47,40.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2003,47,2.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2003,47,7.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2003,47,45.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2003,47,26.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2003,47,3.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2003,47,31.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2003,47,2.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2003,47,1.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2003,47,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2003,47,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2003,47,152.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2003,47,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2003,47,44.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2003,47,71.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2003,47,47.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2003,47,11.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2003,47,4.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2003,47,5.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2003,47,0.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2003,47,15.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2003,47,0.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2003,47,11.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2003,47,2.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2003,47,0.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2003,47,0.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2003,47,0.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2003,47,0.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2003,47,1.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2003,47,15.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2003,47,2.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2003,47,16.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2003,47,2.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2003,47,0.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2003,47,3.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2003,47,0.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2003,47,0.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2003,47,3.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2003,47,11.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2003,47,0.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2003,47,0.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2003,47,7.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2003,47,1.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2003,47,2.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2003,47,14.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2003,47,16.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2003,47,0.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2003,47,1.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2003,47,0.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2003,47,0.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2003,47,0.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2003,47,0.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2003,47,1.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2003,47,1.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2003,47,0.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2003,47,3.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2003,47,0.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2003,47,6.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2003,47,6.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2003,47,0.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2003,47,4.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2003,47,164.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2003,47,14.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2003,47,7.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2003,47,40.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2003,47,5.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2003,47,1.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2003,47,24.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2003,47,0.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2003,47,2.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2003,47,210.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2003,47,8.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2003,47,5.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2003,47,0.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,1.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,0.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,0.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,2.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2003,47,8.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2003,47,4.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2003,47,3.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,0.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,4.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,0.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,5.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,7.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,2.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2003,47,2.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2003,47,0.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2003,47,2.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2003,47,15.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2003,47,78.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2003,47,9.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2003,47,4.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2003,47,0.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2003,47,8.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2003,47,4.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2003,47,5.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2003,47,19.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2003,47,5.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2003,47,1.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2003,47,1.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2003,47,22.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2003,47,5.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2003,47,2.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2003,47,1.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2003,47,2.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2003,47,6.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2003,47,3.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2003,47,43.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2003,47,0.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2003,47,0.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2003,47,0.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2003,47,5.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2003,47,21.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2003,47,0.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2003,47,9.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2003,47,1.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2003,47,1.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2003,47,1.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2003,47,0.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2003,47,3.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2003,47,0.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2003,47,80.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2003,47,3.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2003,47,15.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2003,47,6.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2003,47,15.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2003,47,6.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2003,47,0.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2003,47,3.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2003,47,1.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2003,47,20.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2003,47,8.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2003,47,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2003,47,19.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2003,47,1.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2003,47,7.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2003,47,6.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2003,47,21.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2003,47,18.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2003,47,0.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2003,47,1.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2003,47,7.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2003,47,0.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2003,47,116.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2003,47,9.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2003,47,12.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2003,47,0.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2003,47,1.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,1.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,5.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2003,47,0.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2003,47,2.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,17.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,0.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,3.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,0.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2003,47,44.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2003,47,0.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2003,47,9.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2003,47,4.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2003,47,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2003,47,1.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2003,47,9.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2003,47,5.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2003,47,2.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2003,47,4.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2003,47,5.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2003,47,0.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2003,47,14.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2003,47,12.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2003,47,52.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2003,47,0.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2003,47,14.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2003,47,4.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2003,47,27.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2003,47,7.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,1.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,7.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,1.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,15.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2003,47,0.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2003,47,2.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2003,47,25.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2003,47,0.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2003,47,10.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2003,47,0.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2003,47,29.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2003,47,6.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,41.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,21.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2003,47,8.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,0.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,1.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,10.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2003,47,0.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,7.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2003,47,2.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2003,47,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,0.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2003,47,0.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2003,47,0.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,7.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,2.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,0.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,6.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2003,47,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,0.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,0.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,6.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2003,47,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,1.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2003,47,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,1.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,0.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,13.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,65.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,3.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,15.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,29.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,6.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2003,47,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2003,47,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,1.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,1.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,1.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2003,47,1.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,7.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,9.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,1.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2003,47,100.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,2.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2003,47,0.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,1.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,3.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,10.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2003,47,3.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2003,47,1.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2003,47,1.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,5.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2003,47,2.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2003,47,3.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2003,47,6.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2003,47,1.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,1.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2003,47,2.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2003,47,350.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2003,47,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,3.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,1.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2003,47,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2003,47,0.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2003,47,3.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2003,47,1.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,2.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2003,47,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2003,47,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2003,47,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2003,47,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2003,47,1.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2003,47,0.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,1.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2003,47,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2003,47,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,1.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,2.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2003,47,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,2.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2003,47,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,3.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,1.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,0.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,8.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2003,47,1.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2003,47,0.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,4.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,1.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,5.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2003,47,0.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2003,47,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,1.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2003,47,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,1.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2003,47,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2003,47,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2003,47,1.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2003,47,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2003,47,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2003,47,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2003,47,0.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2003,47,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,1.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2003,47,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2003,47,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2003,47,2.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2003,47,10.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2003,47,0.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2003,47,3.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2003,47,1.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2003,47,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2003,47,2.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2003,47,0.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2003,47,3.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2003,47,0.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2003,47,2.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2003,47,14.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2003,47,2.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2003,47,0.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2003,47,0.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,2.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2003,47,31.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,0.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2003,47,513.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,2.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,4.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2003,47,0.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,2.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2003,47,12.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2003,47,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,4.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,66.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2003,47,3.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,3.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,1.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,18.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2003,47,1.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2003,47,0.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2003,47,0.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2003,47,7.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2003,47,8.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2003,47,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2003,47,2.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2003,47,4.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2003,47,1.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2003,47,2.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2003,47,211.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2003,47,1.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2003,47,9.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2003,47,6.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2003,47,1.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2003,47,1.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2003,47,3.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2003,47,1.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2003,47,1.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2003,47,9.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2003,48,208.0,448419.0,6.8352089449041,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2003,48,1.0,64353.0,1.57897060286648,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2003,48,1.0,151964.0,6.23851828677086,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2003,48,19.0,313536.0,12.5062410020545,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2003,48,1.0,77680.0,4.85969497529936,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2003,48,1.0,230452.0,9.38639551770425,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2003,48,20.0,111226.0,4.16357150964148,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2003,48,5.0,58277.0,3.9771173801159,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2003,48,0.0,107676.0,3.37114441871661,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2003,48,0.0,60843.0,1.13728408548358,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2003,48,0.0,40663.0,1.00274870864004,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2003,48,24.0,345308.0,15.5119587061325,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2003,48,29.0,46105.0,2.90299893127601,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2003,48,2.0,77664.0,0.233720221811637,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2003,48,0.0,28827.0,0.396920187344531,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2003,48,0.0,220342.0,1.03319582267473,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2003,48,0.0,117758.0,1.0455495573709,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2003,48,0.0,92713.0,2.32379053517052,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2003,48,6.0,134928.0,1.20367745536447,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2003,48,86.0,1725671.0,41.7872972554404,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2003,48,0.0,41559.0,1.3333563698853,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2003,48,5.0,130264.0,5.11814626214615,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2003,48,0.0,223206.0,2.08599370054224,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2003,48,0.0,44670.0,0.702947885735968,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2003,48,0.0,57114.0,0.305553881159294,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2003,48,4.0,136352.0,0.616909166407178,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2003,48,110.0,254273.0,3.74477943389549,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2003,48,2.0,32314.0,1.0514023626031,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2003,48,3.0,32842.0,0.442908811798803,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2003,48,1.0,37873.0,0.73605987171626,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2003,48,0.0,159999.0,1.01549730203584,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2003,48,4.0,442035.0,4.78055118433014,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2003,48,0.0,60305.0,0.667339345600952,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2003,48,1.0,101800.0,2.25660578598681,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2003,48,0.0,174630.0,5.8042830066871,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2003,48,2.0,121929.0,4.21605688097306,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2003,48,525.0,1985586.0,634.141070580396,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2003,48,26.0,242585.0,64.4398732135015,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2003,48,2.0,225385.0,37.9681904579133,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2003,48,8.0,344012.0,39.0752984819541,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2003,48,74.0,370189.0,22.2049652378662,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2003,48,10.0,230155.0,9.70992224105374,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2003,48,4.0,383338.0,13.5417065731052,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2003,48,10.0,213714.0,1.12701674229294,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2003,48,4.0,235237.0,1.04015627501057,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2003,48,30.0,276509.0,8.41770388649024,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2003,48,74.0,237573.0,4.90761530098877,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2003,48,27.0,90444.0,0.746020324480474,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2003,48,6.0,172663.0,7.68150339338124,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2003,48,29.0,233717.0,11.6357403598706,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2003,48,9.0,166632.0,7.88688966131579,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2003,48,9.0,106556.0,3.41527303521966,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2003,48,0.0,21736.0,0.589262474393756,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2003,48,0.0,17687.0,0.851882448492396,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2003,48,67.0,440566.0,11.4130845194454,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2003,48,0.0,54846.0,1.17679753132613,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2003,48,14.0,184295.0,11.6838619166479,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2003,48,74.0,242294.0,9.16217538117255,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2003,48,35.0,140043.0,4.02741820837797,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2003,48,9.0,106451.0,2.06849368905001,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2003,48,2.0,124341.0,4.53485092096815,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2003,48,13.0,254275.0,12.0056035849701,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2003,48,2.0,63723.0,1.1904146959628,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2003,48,4.0,114759.0,2.43160640656211,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2003,48,0.0,177768.0,18.8400709581974,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2003,48,1.0,1147874.0,803.546193588926,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2003,48,4.0,134205.0,20.8591274297809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2003,48,1.0,139610.0,12.9470514442314,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2003,48,0.0,495873.0,28.7948818827205,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2003,48,6.0,161033.0,22.8368327162922,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2003,48,7.0,194387.0,9.0103287880812,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2003,48,0.0,571615.0,15.8815038919469,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2003,48,12.0,526832.0,18.0277509915998,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2003,48,7.0,401242.0,36.5269589604948,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2003,48,26.0,274078.0,7.43956198587794,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2003,48,1.0,181461.0,27.7497215128709,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2003,48,0.0,120477.0,19.9702800296343,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2003,48,1.0,185379.0,17.1795188877038,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2003,48,1.0,248996.0,25.0594332272092,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2003,48,1.0,76313.0,21.1981439017734,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2003,48,35.0,375003.0,24.4432340852897,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2003,48,42.0,194214.0,7.77007999477361,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2003,48,1.0,92619.0,6.51232230919634,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2003,48,0.0,111114.0,3.04475075449749,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2003,48,0.0,63562.0,3.74430135555684,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2003,48,6.0,310262.0,24.8872101274689,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2003,48,0.0,281392.0,28.9189776266594,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2003,48,30.0,919590.0,100.194147400434,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2003,48,17.0,212058.0,8.70703359320562,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2003,48,2.0,127365.0,15.3250979000978,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2003,48,2.0,104975.0,7.81498258160411,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2003,48,4.0,37697.0,1.48005663466532,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2003,48,0.0,38421.0,3.45698908629787,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2003,48,0.0,120266.0,6.52228121241568,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2003,48,0.0,79559.0,2.88055699268319,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2003,48,2.0,124096.0,4.50975858395349,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2003,48,0.0,78787.0,4.41709103297576,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2003,48,1.0,190009.0,18.448898334025,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2003,48,0.0,52876.0,12.260824329299,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2003,48,11.0,246372.0,7.81288351460345,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2003,48,3.0,329359.0,38.106837608284,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2003,48,2.0,269810.0,53.2838714621736,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2003,48,7.0,52364.0,25.2765280533579,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,21452.0,79.46156416245,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2003,48,6.0,341649.0,41.4546770355313,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2003,48,1.0,139624.0,33.0520945259691,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2003,48,7.0,69996.0,11.6624207612529,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,181229.0,48.827660420654,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2003,48,1.0,94339.0,65.8153133662576,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,90680.0,86.3954108202264,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,76648.0,25.3701942379635,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2003,48,8.0,115769.0,21.7968777832102,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2003,48,7.0,176836.0,65.7306530020701,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,59544.0,45.914488479359,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,120175.0,47.2683203522433,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2003,48,145.0,3020555.0,895.339613769254,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,86417.0,217.645836780598,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2003,48,18.0,236246.0,18.4312038174553,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2003,48,1.0,240025.0,20.0727437949545,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2003,48,24.0,140662.0,12.0034357605917,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2003,48,6.0,208786.0,21.3437309932383,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2003,48,4.0,100762.0,46.7956219557305,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2003,48,20.0,297928.0,30.0047132537203,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2003,48,0.0,63063.0,14.6973766838432,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,40271.0,19.6243545526608,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2003,48,82.0,213846.0,44.9780036208101,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2003,48,2.0,93626.0,26.422409658459,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,56073.0,34.6704439386498,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2003,48,3.0,91589.0,20.6109747514496,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,59660.0,46.3115687844697,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,87459.0,32.857136817561,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2003,48,3.0,488926.0,107.321095040246,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2003,48,0.0,93073.0,47.9837185013152,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,283818.0,67.940909258946,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,71023.0,17.3571298979447,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,37860.0,13.237365724843,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,128713.0,26.8906283383522,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2003,48,2.0,59742.0,60.2486033203991,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2003,48,141.0,113937.0,42.8624496731337,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2003,48,1.0,63376.0,38.8448894876906,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,45625.0,23.94614190024,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,1.0,50260.0,12.3245039803396,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,62154.0,20.6441166808954,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,4.0,92285.0,30.1002002329823,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,5.0,115981.0,30.7473783282952,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,58660.0,30.6858480176915,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2003,48,0.0,127350.0,32.4151281041431,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2003,48,1.0,212918.0,60.7951432309752,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2003,48,6.0,79465.0,31.1695339752749,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2003,48,10.0,258420.0,124.551191987493,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2003,48,105.0,909391.0,2077.81786219914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2003,48,2.0,117080.0,84.3703462440408,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2003,48,9.0,107645.0,35.3107784270553,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2003,48,0.0,158967.0,46.8695518264458,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2003,48,14.0,174380.0,36.2938419151781,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2003,48,5.0,120390.0,47.2365953553002,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2003,48,11.0,70931.0,21.5374833400402,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2003,48,13.0,82996.0,27.2408024495847,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2003,48,1.0,108726.0,41.8543871602234,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2003,48,2.0,36937.0,21.1038677292174,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2003,48,5.0,68634.0,26.2926704168775,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2003,48,62.0,113680.0,16.2880834570639,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2003,48,3.0,60572.0,14.3834621600116,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2003,48,2.0,108821.0,27.8499217241573,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2003,48,3.0,94446.0,71.436723601245,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2003,48,2.0,48786.0,182.143622456879,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2003,48,5.0,117004.0,99.1692416224094,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2003,48,2.0,159211.0,123.417903661526,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2003,48,17.0,475315.0,225.618463194012,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2003,48,1.0,106225.0,62.9487643299411,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2003,48,0.0,53693.0,45.3941667167304,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2003,48,0.0,131421.0,66.1224640512162,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2003,48,4.0,124640.0,111.320082490291,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2003,48,11.0,917680.0,735.210477085193,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2003,48,0.0,77495.0,89.5011618448909,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2003,48,3.0,285047.0,24.700454055179,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2003,48,1.0,153694.0,17.5431837025247,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2003,48,1.0,297639.0,33.7215208174301,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2003,48,7.0,187187.0,21.2780521186741,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2003,48,5.0,372821.0,24.9053702773959,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2003,48,0.0,118938.0,12.4987164491373,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2003,48,0.0,164477.0,30.2859395298063,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2003,48,117.0,768058.0,97.6843510148836,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2003,48,11.0,223217.0,124.344737927188,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2003,48,21.0,256376.0,146.482243970329,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2003,48,5.0,421816.0,82.3891865164964,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2003,48,12.0,213944.0,83.5704485285388,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2003,48,9.0,514098.0,174.986025787621,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2003,48,8.0,203174.0,216.465696428374,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2003,48,2.0,512999.0,113.353249426334,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2003,48,2.0,141217.0,262.217279794961,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2003,48,28.0,3100479.0,2478.26796020408,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2003,48,3.0,224518.0,232.474878453762,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2003,48,0.0,2163.0,166.458390700581,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2003,48,6.0,89626.0,34.1263299423628,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2003,48,0.0,72518.0,53.1058877247616,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2003,48,0.0,170260.0,55.5570013577418,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2003,48,10.0,90690.0,50.2265936107851,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2003,48,7.0,175618.0,73.4304724360695,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2003,48,10.0,382928.0,157.864702641488,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2003,48,1.0,35356.0,37.7840419095778,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2003,48,2.0,143498.0,77.8751377993381,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2003,48,13.0,281587.0,71.3981104712233,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2003,48,1.0,60541.0,60.147846250731,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2003,48,59.0,1039147.0,580.25304774048,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2003,48,7.0,256202.0,86.2391446107948,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2003,48,11.0,119693.0,69.93816882355,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2003,48,4.0,141839.0,26.0459552309987,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2003,48,14.0,63322.0,33.908211009125,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,1.0,59904.0,48.2767875086975,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,9.0,151316.0,133.74778809554,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2003,48,5.0,103815.0,51.5367778798443,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2003,48,1.0,106664.0,70.7439647287964,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,6.0,90640.0,85.9315700455168,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,2.0,41180.0,53.7852403365384,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,1.0,50989.0,35.6376866858331,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,3.0,80112.0,108.14492524183,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2003,48,33.0,720477.0,825.848322105493,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2003,48,6.0,149325.0,81.2239994492435,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2003,48,14.0,115030.0,56.8311578276832,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2003,48,14.0,219245.0,4.14807491009609,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2003,48,0.0,110820.0,4.89877867937071,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2003,48,3.0,179667.0,4.27891985404604,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2003,48,32.0,427510.0,7.81345316036234,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2003,48,1.0,155353.0,12.4686643060673,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2003,48,0.0,163934.0,5.03461470785023,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2003,48,2.0,163995.0,11.3590827902317,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2003,48,8.0,262738.0,15.8042842604326,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2003,48,3.0,354945.0,19.4641696544339,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2003,48,14.0,312829.0,16.6254274586526,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2003,48,25.0,246992.0,14.9997489433519,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2003,48,41.0,923359.0,72.448161523941,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2003,48,1.0,108470.0,13.5313692097517,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2003,48,8.0,299644.0,16.0317876721607,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2003,48,13.0,297294.0,34.3610933712161,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2003,48,24.0,382455.0,35.9166153653971,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2003,48,13.0,291225.0,50.6720360537388,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,1.0,109863.0,25.1033570176022,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,6.0,193435.0,70.3779977704812,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,3.0,518604.0,90.9661729392239,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,30.0,3183327.0,1101.32325691299,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2003,48,22.0,181606.0,11.2935130019597,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2003,48,2.0,256861.0,12.3813142667777,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2003,48,17.0,522703.0,30.3864512500725,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2003,48,0.0,93142.0,18.1073122098961,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2003,48,17.0,358536.0,15.2949979559835,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2003,48,8.0,264283.0,17.2275395022723,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2003,48,59.0,632375.0,33.6102436872676,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2003,48,3.0,219642.0,19.4801594794756,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,4.0,239985.0,41.71305899889,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,27.0,1085921.0,51.0881105792833,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2003,48,12.0,674854.0,24.3503598285411,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,1.0,140968.0,5.14364421035075,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,0.0,202547.0,5.78551875883764,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,2.0,263013.0,7.91925868494564,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2003,48,1.0,243730.0,16.2078573668094,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,204537.0,11.4683510393644,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,9.0,157302.0,6.83290028320898,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2003,48,5.0,559585.0,25.0485635173271,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,0.0,41096.0,4.53528026827461,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,0.0,64627.0,8.16557056520174,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2003,48,0.0,81926.0,11.0888418940686,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,4.0,191172.0,15.9115450116839,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2003,48,8.0,152603.0,14.8594055519155,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2003,48,1.0,85877.0,17.0056678170477,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,23.0,173650.0,11.2344338766095,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,1.0,257890.0,22.1971569176614,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,12.0,118454.0,13.9650574757319,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,0.0,133938.0,15.3403369963546,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,10.0,744396.0,39.621477265601,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2003,48,0.0,192290.0,16.0771422737286,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,1.0,242585.0,22.6205513468845,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,3.0,157157.0,9.30709958968785,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,5.0,305564.0,32.7456509677782,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2003,48,0.0,178438.0,12.682676694507,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,6.0,91659.0,8.66114708432753,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2003,48,0.0,146025.0,10.6544331270837,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,2.0,153375.0,20.4815408276306,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,1.0,365806.0,42.8192383094919,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,88376.0,12.9623168398633,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,111755.0,63.1253185915222,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,26.0,4512743.0,774.280517011433,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,360367.0,44.7437002559497,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,58620.0,24.2481242903803,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,160379.0,50.8841306380644,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,1.0,227723.0,76.8405449025376,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,128080.0,22.2357746732684,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,83369.0,18.1934144573579,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,94.0,401544.0,35.4809193911529,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,3.0,60654.0,32.7901819157338,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,18.0,493563.0,113.42982547092,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,1.0,243244.0,43.9173940426037,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,64.0,146255.0,17.5488622474368,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,0.0,78526.0,10.2058627933733,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,8.0,415992.0,81.9259844805652,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2003,48,0.0,148319.0,32.480427419804,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,1.0,108499.0,40.2832189260653,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,122589.0,30.5640572128577,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2003,48,0.0,217855.0,30.7145606955004,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,263079.0,50.8629933168189,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,217759.0,43.5532776085878,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,423544.0,55.9040309690646,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,322027.0,69.515116495941,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,297759.0,60.547166236092,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,132650.0,40.4923739283608,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,203280.0,52.859338300965,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,74430.0,14.7703798108327,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,186752.0,62.6310618761839,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,139009.0,40.2108754085719,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,1.0,175431.0,30.4712236707667,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,211483.0,63.0133675032574,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,188810.0,38.8116617925259,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,259038.0,53.5467775525034,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,220280.0,45.6555370725246,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,267295.0,56.4423497739061,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,251099.0,69.7865113699895,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2003,48,4.0,689284.0,77.1588133256489,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2003,48,3.0,211641.0,54.1933503992284,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,86442.0,21.3889298470834,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,117444.0,32.0199107461625,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,10.0,189651.0,43.6935585655588,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,19.0,50738.0,17.206750444362,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,1.0,165916.0,35.8474581802571,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,3.0,261576.0,37.6407706581233,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,129564.0,33.7842432729634,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,101451.0,30.8807456495604,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2003,48,206.0,1421063.0,995.865382821611,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,9.0,171261.0,81.4069343174657,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2003,48,1.0,157459.0,45.5500755580322,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,324953.0,78.9647878713005,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,72701.0,57.3581181354279,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,3.0,184583.0,58.8618757042489,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,120704.0,53.8536659456877,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,4.0,538123.0,75.1300171783094,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,5.0,187524.0,72.6280610351602,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2003,48,5.0,148607.0,89.7451267968773,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2003,48,1.0,59656.0,47.101972194348,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2003,48,0.0,223664.0,107.459388007809,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,28785.0,15.8725931874501,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,2.0,88415.0,53.8995288358349,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,1.0,422635.0,215.50850421791,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2003,48,9.0,645850.0,169.344983701295,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2003,48,5.0,167359.0,70.6796257656434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2003,48,26.0,160895.0,96.221138645284,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2003,48,1.0,155122.0,98.9107100371651,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2003,48,2.0,459991.0,257.701498378591,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,1.0,102198.0,72.0766387568589,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2003,48,3.0,184851.0,210.453709214685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2003,48,391.0,11000156.0,2415.7826455018,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,148495.0,37.6999502250947,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,101990.0,36.2490875758019,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2003,48,0.0,130071.0,40.5489548818512,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,5.0,708159.0,67.9459518286179,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,2.0,209528.0,92.4395462622414,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,44223.0,19.2633630621357,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,59538.0,29.6343790078259,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,73689.0,30.4366816888589,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2003,48,0.0,129589.0,47.710078780558,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2003,48,2.0,197799.0,35.6726985011318,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2003,48,3.0,92625.0,45.9422834727187,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2003,48,1.0,369430.0,107.22301613112,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2003,48,4.0,398040.0,83.8849718860119,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2003,48,5.0,907182.0,151.034362229241,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2003,48,0.0,101478.0,32.9785852239832,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,176325.0,25.6608571993547,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,33.0,239684.0,44.6374855779032,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,237376.0,52.7206557364749,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,151336.0,39.0909704595862,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2003,48,0.0,536341.0,63.1814357876487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2003,48,0.0,324667.0,80.3942679627881,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2003,48,0.0,166563.0,28.2241890245399,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2003,48,0.0,189444.0,43.4723392872173,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2003,48,0.0,466639.0,74.278334490736,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2003,48,1.0,286578.0,90.3624311468343,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2003,48,0.0,229528.0,77.9268690818239,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,536377.0,230.705714163587,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,517761.0,137.002414592483,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,173949.0,98.6370052564297,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2003,48,1.0,407173.0,75.0267798398419,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2003,48,0.0,360887.0,154.450665781092,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,1.0,2343134.0,753.658733094256,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,168492.0,105.295679715795,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,108161.0,37.7250561009102,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,150998.0,41.1416987483217,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2003,48,0.0,561212.0,32.0820504432212,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,110585.0,48.0711887466438,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,321512.0,65.7944184468871,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,11.0,254702.0,35.6709296413268,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,280780.0,50.4503486071459,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2003,48,0.0,240107.0,31.2114818800387,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,172903.0,46.3995653761898,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,1.0,224923.0,100.766595642039,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,143392.0,21.7720092558723,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,188447.0,45.4842041459373,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,6.0,1203409.0,283.550484306071,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,558335.0,694.285502272041,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,446580.0,142.288690359854,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,67625.0,66.5043890862734,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,1296990.0,322.817524460794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2003,48,0.0,386328.0,142.893451038137,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,26054.0,12.4336987473783,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,71650.0,16.208345424115,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,3.0,248362.0,130.325968284384,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,254038.0,22.7706847115139,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2003,48,0.0,201068.0,98.6274612556043,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,157.0,1710100.0,2520.76080363919,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,411628.0,690.230514058882,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,1.0,1271812.0,1636.05989958646,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,2.0,881070.0,600.333706331963,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,24.0,13126022.0,5562.28011386784,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2003,48,0.0,1227812.0,596.364941510324,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2003,48,3.0,1378625.0,1012.38854020268,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,1.0,260050.0,25.5639791362081,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,1.0,249390.0,24.3103004216727,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,127198.0,31.409494006605,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,121787.0,25.0722213927907,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,3.0,212291.0,30.0019981312682,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,4.0,175071.0,34.2520814818792,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,82707.0,34.9721560705939,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,33749.0,25.9182286362828,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,2.0,478585.0,307.55278076389,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,2.0,262439.0,115.854258215916,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,10.0,668538.0,190.13979551724,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,45923.0,20.1732655991838,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,140649.0,22.8169184490667,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,1.0,71877.0,31.8271649420248,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,181904.0,40.1888017554752,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,119568.0,43.3458945870174,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,75294.0,24.7734497559416,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,97345.0,30.8160886748432,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,148227.0,15.6707472205336,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,98380.0,17.2834412017543,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,400098.0,59.8993287104537,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,11.0,342183.0,39.1625698594035,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,4.0,409213.0,47.8511226302372,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,2.0,424801.0,76.5096789145799,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,92494.0,39.8036697821512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,226353.0,41.8234537619546,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,152084.0,38.9630293558392,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,83690.0,17.0096483733101,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,372877.0,23.0173880218436,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,86633.0,16.0257626314905,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,120255.0,19.7946420869575,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,93338.0,32.8841576320528,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,115130.0,21.0573561174522,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,57381.0,22.6797935493267,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,0.0,29163.0,8.44431466170167,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,47450.0,20.6428531757288,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,5.0,2865613.0,336.238657949625,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2003,48,1.0,254592.0,41.7695357359892,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2003,48,0.0,82546.0,33.7314828543781,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,166342.0,39.0273674687837,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,367683.0,61.0503623468748,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,146119.0,30.1394734891967,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,316797.0,35.0693039790196,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,140057.0,44.5298864925901,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,236043.0,25.1031543286206,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,122762.0,64.3039645339371,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,725838.0,156.339884389662,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,119186.0,18.0971875540949,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,289758.0,18.4035595572044,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,1.0,185469.0,35.0251291674169,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,580037.0,122.588603157013,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,2.0,444243.0,289.274220082026,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,51159.0,33.6325085185778,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,71676.0,33.6470748471043,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,764907.0,264.003330692569,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2003,48,0.0,23223.0,9.90036327515461,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,350096.0,75.6041306105887,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,339163.0,160.47310073191,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2003,48,0.0,166675.0,56.0939907579808,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,161997.0,46.8558968404072,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,146266.0,38.3685715336796,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,180155.0,34.592269839433,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,215446.0,37.9952473480877,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2003,48,0.0,60898.0,19.7880399252207,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,68409.0,30.8172233054089,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,208067.0,19.216238003771,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,181424.0,35.6220523703578,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,160534.0,32.8577025898436,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2003,48,0.0,310117.0,43.8171521990149,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,157606.0,18.7195510801805,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,41791.0,27.884644973159,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2003,48,0.0,72021.0,19.9542403937769,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2003,48,0.0,118553.0,32.6622650170376,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2003,48,0.0,156275.0,9.06909091254547,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2003,48,2.0,690778.0,138.894925496725,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,112976.0,10.0694433632999,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,361070.0,30.7733161114758,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,67203.0,22.3774492821207,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,307997.0,55.3952223703506,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,287077.0,70.9516808240187,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,158757.0,20.9248583255724,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,186592.0,90.0771378525945,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2003,48,0.0,278615.0,106.870310064453,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,136049.0,27.8769325537118,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,1.0,3569023.0,637.075065572544,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,305131.0,34.704706378339,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,127415.0,21.6571476472425,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,389878.0,12.5451516955183,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,198670.0,11.4874719123805,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,175816.0,12.3423488683102,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,118881.0,7.24043837006835,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,487127.0,47.1453872148407,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,57451.0,9.06591586723354,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2003,48,0.0,254927.0,27.5242053517054,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2003,48,0.0,127758.0,1.5386532936038,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2003,48,0.0,101356.0,3.65319084187481,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2003,48,25.0,108240.0,2.59786068135193,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2003,48,6.0,769785.0,27.2498438388082,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2003,48,1.0,50140.0,3.11720048804446,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2003,48,1.0,72698.0,4.23002380828243,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2003,48,0.0,131979.0,2.79297581456363,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2003,48,0.0,77526.0,5.75615052608094,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2003,48,1.0,104779.0,4.64070815567673,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2003,48,2.0,423293.0,11.3202951868036,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2003,48,1.0,202134.0,8.99095630915734,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2003,48,2.0,105224.0,0.84849958580335,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2003,48,6.0,90056.0,1.75200736116781,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2003,48,5.0,127703.0,2.98608534784989,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2003,48,0.0,70982.0,1.1909814699847,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2003,48,0.0,73222.0,1.33327707608753,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,0.0,117059.0,2.1461007205287,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2003,48,14.0,150030.0,2.99805265444816,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,2.0,28783.0,0.615494041951859,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2003,48,595.0,97246.0,1.14485588987536,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,5.0,82819.0,1.37116976771015,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,3.0,62890.0,1.96598284928014,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2003,48,7.0,63466.0,2.02377198555882,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,4.0,123358.0,5.52600282955772,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2003,48,24.0,102819.0,5.44620699769554,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2003,48,0.0,30064.0,4.4862674978235,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,2.0,32025.0,3.46762318248045,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,116.0,784656.0,28.4192568030419,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2003,48,4.0,128050.0,2.40146318128109,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,5.0,68963.0,6.72599305807064,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,0.0,52035.0,1.92168812925158,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,11.0,235008.0,9.63162762797658,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2003,48,0.0,24877.0,2.32199845654526,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,74870.0,3.07103816212115,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2003,48,1.0,92211.0,4.55420742048879,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2003,48,17.0,53645.0,4.853162071542,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2003,48,6.0,222210.0,6.32041141573566,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,57948.0,2.72074251113285,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2003,48,2.0,213669.0,16.2374337174354,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2003,48,11.0,484679.0,57.9236497446385,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2003,48,1.0,62297.0,8.80964143576866,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,102864.0,18.8386113301895,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2003,48,280.0,1824081.0,270.037015388879,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,93922.0,5.40435949148617,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2003,48,4.0,920738.0,24.1305194492395,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2003,48,10.0,362004.0,6.45774380238827,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2003,48,1.0,105190.0,7.73261193395686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2003,48,2.0,329005.0,15.5770983183459,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,89653.0,9.41146656234457,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,122524.0,8.04552530758426,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2003,48,0.0,94949.0,5.90647927752394,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2003,48,44.0,2189789.0,378.577713702076,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2004,49,234.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2004,49,10.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2004,49,6.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2004,49,49.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2004,49,7.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2004,49,7.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2004,49,22.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2004,49,39.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2004,49,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2004,49,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2004,49,20.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2004,49,56.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2004,49,9.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2004,49,13.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2004,49,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2004,49,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2004,49,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2004,49,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2004,49,2.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2004,49,98.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2004,49,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2004,49,13.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2004,49,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2004,49,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2004,49,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2004,49,1.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2004,49,36.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2004,49,1.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2004,49,21.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2004,49,1.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2004,49,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2004,49,65.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2004,49,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2004,49,1.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2004,49,1.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2004,49,2.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2004,49,1009.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2004,49,15.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2004,49,26.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2004,49,28.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2004,49,111.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2004,49,32.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2004,49,19.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2004,49,7.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2004,49,11.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2004,49,62.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2004,49,116.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2004,49,23.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2004,49,16.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2004,49,48.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2004,49,38.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2004,49,37.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2004,49,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2004,49,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2004,49,207.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2004,49,1.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2004,49,53.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2004,49,79.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2004,49,25.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2004,49,21.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2004,49,18.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2004,49,8.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2004,49,12.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2004,49,13.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2004,49,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2004,49,5.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2004,49,2.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2004,49,2.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2004,49,3.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2004,49,5.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2004,49,36.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2004,49,1.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2004,49,15.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2004,49,4.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2004,49,56.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2004,49,3.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2004,49,0.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2004,49,7.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2004,49,0.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2004,49,0.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2004,49,8.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2004,49,6.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2004,49,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2004,49,14.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2004,49,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2004,49,3.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2004,49,4.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2004,49,37.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2004,49,20.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2004,49,1.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2004,49,5.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2004,49,4.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2004,49,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2004,49,3.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2004,49,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2004,49,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2004,49,2.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2004,49,1.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2004,49,0.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2004,49,1.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2004,49,2.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2004,49,10.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2004,49,2.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2004,49,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2004,49,11.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2004,49,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2004,49,3.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2004,49,8.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2004,49,125.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2004,49,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2004,49,1.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2004,49,0.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2004,49,11.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2004,49,2.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2004,49,3.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2004,49,19.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2004,49,1.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2004,49,116.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2004,49,3.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2004,49,0.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2004,49,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2004,49,43.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2004,49,1.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,0.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,0.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,3.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2004,49,34.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2004,49,87.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2004,49,2.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,1.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,2.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,2.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,5.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,8.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,0.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2004,49,1.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2004,49,1.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2004,49,6.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2004,49,27.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2004,49,100.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2004,49,7.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2004,49,4.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2004,49,0.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2004,49,3.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2004,49,1.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2004,49,40.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2004,49,7.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2004,49,3.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2004,49,1.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2004,49,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2004,49,17.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2004,49,3.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2004,49,1.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2004,49,2.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2004,49,0.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2004,49,0.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2004,49,1.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2004,49,22.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2004,49,1.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2004,49,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2004,49,3.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2004,49,6.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2004,49,14.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2004,49,0.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2004,49,3.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2004,49,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2004,49,20.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2004,49,4.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2004,49,0.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2004,49,3.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2004,49,0.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2004,49,117.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2004,49,3.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2004,49,38.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2004,49,14.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2004,49,21.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2004,49,8.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2004,49,10.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2004,49,5.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2004,49,2.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2004,49,13.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2004,49,9.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2004,49,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2004,49,34.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2004,49,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2004,49,12.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2004,49,6.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2004,49,8.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2004,49,12.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2004,49,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2004,49,6.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2004,49,16.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2004,49,0.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2004,49,79.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2004,49,5.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2004,49,10.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2004,49,5.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2004,49,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,3.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2004,49,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2004,49,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,16.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,1.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2004,49,23.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2004,49,10.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2004,49,3.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2004,49,38.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2004,49,4.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2004,49,16.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2004,49,22.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2004,49,0.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2004,49,1.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2004,49,2.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2004,49,9.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2004,49,11.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2004,49,37.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2004,49,9.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2004,49,24.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2004,49,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2004,49,3.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2004,49,10.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2004,49,29.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2004,49,14.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,25.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,2.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,34.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2004,49,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2004,49,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2004,49,49.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2004,49,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2004,49,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2004,49,1.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2004,49,34.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2004,49,0.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,3.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,35.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2004,49,13.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,4.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2004,49,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,76.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2004,49,5.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2004,49,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2004,49,1.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2004,49,2.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,26.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,2.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,28.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,10.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,28.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2004,49,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,1.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,5.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,9.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2004,49,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2004,49,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,1.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,6.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,1.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,42.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,1.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,1.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,2.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,319.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,2.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,107.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,9.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,257.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,15.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2004,49,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2004,49,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,2.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,1.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,1.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,2.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2004,49,3.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,59.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,25.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,4.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,23.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2004,49,1.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2004,49,192.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,7.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2004,49,6.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,2.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,5.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,5.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2004,49,3.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2004,49,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,6.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2004,49,4.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2004,49,18.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2004,49,1.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,1.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2004,49,2.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2004,49,162.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,1.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2004,49,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,8.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2004,49,1.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2004,49,1.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2004,49,0.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2004,49,1.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2004,49,0.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2004,49,2.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2004,49,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,4.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,1.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,10.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2004,49,1.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2004,49,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2004,49,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2004,49,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2004,49,4.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2004,49,5.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2004,49,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2004,49,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2004,49,1.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2004,49,2.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,1.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2004,49,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,1.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,1.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2004,49,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,1.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,1.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,2.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2004,49,6.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,32.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2004,49,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,5.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,1.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,34.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2004,49,5.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2004,49,28.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,1.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,1.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,2.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,5.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,4.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,1.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,4.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,8.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2004,49,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2004,49,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,1.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,1.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,2.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2004,49,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2004,49,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2004,49,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,1.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,1.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2004,49,1.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2004,49,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2004,49,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2004,49,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2004,49,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2004,49,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,1.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2004,49,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2004,49,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2004,49,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2004,49,90.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2004,49,7.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2004,49,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2004,49,1.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2004,49,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2004,49,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2004,49,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2004,49,1.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2004,49,0.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2004,49,3.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2004,49,4.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2004,49,10.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2004,49,5.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2004,49,1.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,1.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2004,49,35.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,3.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2004,49,82.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,5.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,124.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2004,49,13.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,8.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2004,49,17.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2004,49,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,60.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2004,49,7.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,9.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,16.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,75.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2004,49,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2004,49,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2004,49,0.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2004,49,87.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2004,49,8.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2004,49,1.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2004,49,4.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2004,49,9.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2004,49,4.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2004,49,6.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2004,49,665.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2004,49,1.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2004,49,15.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2004,49,50.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2004,49,3.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2004,49,7.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2004,49,1.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2004,49,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2004,49,7.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2004,49,63.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2004,50,116.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2004,50,9.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2004,50,5.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2004,50,95.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2004,50,2.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2004,50,8.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2004,50,46.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2004,50,19.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2004,50,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2004,50,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2004,50,89.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2004,50,38.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2004,50,7.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2004,50,6.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2004,50,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2004,50,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2004,50,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2004,50,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2004,50,1.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2004,50,104.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2004,50,2.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2004,50,44.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2004,50,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2004,50,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2004,50,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2004,50,2.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2004,50,35.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2004,50,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2004,50,7.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2004,50,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2004,50,1.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2004,50,78.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2004,50,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2004,50,5.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2004,50,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2004,50,1.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2004,50,578.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2004,50,19.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2004,50,30.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2004,50,66.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2004,50,77.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2004,50,17.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2004,50,16.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2004,50,6.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2004,50,10.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2004,50,57.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2004,50,85.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2004,50,17.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2004,50,9.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2004,50,47.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2004,50,44.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2004,50,14.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2004,50,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2004,50,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2004,50,238.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2004,50,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2004,50,87.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2004,50,56.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2004,50,26.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2004,50,18.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2004,50,22.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2004,50,14.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2004,50,7.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2004,50,8.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2004,50,3.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2004,50,10.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2004,50,4.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2004,50,3.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2004,50,5.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2004,50,8.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2004,50,17.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2004,50,12.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2004,50,26.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2004,50,19.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2004,50,77.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2004,50,9.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2004,50,1.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2004,50,4.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2004,50,0.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2004,50,8.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2004,50,12.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2004,50,31.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2004,50,1.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2004,50,11.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2004,50,4.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2004,50,3.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2004,50,1.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2004,50,42.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2004,50,39.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2004,50,4.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2004,50,5.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2004,50,3.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2004,50,1.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2004,50,2.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2004,50,3.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2004,50,5.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2004,50,11.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2004,50,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2004,50,2.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2004,50,4.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2004,50,4.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2004,50,1.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2004,50,33.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2004,50,0.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2004,50,6.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2004,50,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2004,50,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2004,50,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2004,50,1.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2004,50,1.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2004,50,6.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2004,50,6.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2004,50,5.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2004,50,6.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2004,50,4.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2004,50,255.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2004,50,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2004,50,4.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2004,50,6.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2004,50,40.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2004,50,3.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2004,50,3.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2004,50,77.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2004,50,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2004,50,3.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2004,50,123.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2004,50,29.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2004,50,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2004,50,4.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2004,50,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2004,50,1.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2004,50,23.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2004,50,0.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,4.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,4.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,5.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2004,50,14.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2004,50,12.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2004,50,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,22.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,4.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,2.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,8.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,2.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2004,50,5.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2004,50,6.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2004,50,0.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2004,50,34.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2004,50,133.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2004,50,28.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2004,50,5.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2004,50,5.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2004,50,8.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2004,50,11.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2004,50,47.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2004,50,5.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2004,50,11.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2004,50,9.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2004,50,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2004,50,46.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2004,50,4.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2004,50,6.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2004,50,3.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2004,50,4.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2004,50,2.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2004,50,6.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2004,50,50.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2004,50,1.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2004,50,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2004,50,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2004,50,13.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2004,50,19.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2004,50,0.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2004,50,11.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2004,50,1.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2004,50,5.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2004,50,7.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2004,50,1.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2004,50,1.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2004,50,3.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2004,50,205.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2004,50,17.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2004,50,66.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2004,50,16.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2004,50,19.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2004,50,10.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2004,50,76.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2004,50,1.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2004,50,9.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2004,50,21.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2004,50,61.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2004,50,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2004,50,36.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2004,50,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2004,50,25.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2004,50,23.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2004,50,24.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2004,50,20.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2004,50,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2004,50,4.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2004,50,24.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2004,50,0.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2004,50,136.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2004,50,19.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2004,50,3.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2004,50,23.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2004,50,1.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,2.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2004,50,1.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2004,50,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,4.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,2.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2004,50,19.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2004,50,9.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2004,50,5.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2004,50,52.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2004,50,22.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2004,50,38.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2004,50,25.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2004,50,3.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2004,50,3.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2004,50,4.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2004,50,6.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2004,50,9.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2004,50,62.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2004,50,54.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2004,50,31.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2004,50,1.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2004,50,6.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2004,50,13.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2004,50,36.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2004,50,15.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,89.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,3.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,53.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2004,50,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2004,50,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2004,50,89.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2004,50,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2004,50,2.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2004,50,3.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2004,50,35.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2004,50,11.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,10.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,35.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2004,50,8.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,2.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,1.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2004,50,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,129.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2004,50,1.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2004,50,1.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2004,50,9.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2004,50,4.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,82.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,15.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,31.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,39.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,40.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2004,50,1.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,1.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,4.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,11.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2004,50,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,1.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2004,50,1.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,1.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,16.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,3.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,75.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,5.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,1.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,2.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,1.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,3.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,939.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,50.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,375.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,50.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,428.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,10.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2004,50,2.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2004,50,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,1.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,1.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,2.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,3.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2004,50,1.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2004,50,2.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2004,50,1.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,5.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,4.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,178.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,51.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,4.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,73.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2004,50,177.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,6.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,2.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2004,50,5.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,3.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,3.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,5.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2004,50,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,1.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,3.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2004,50,12.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2004,50,2.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2004,50,4.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2004,50,1.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2004,50,100.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,2.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2004,50,1.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,16.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,2.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2004,50,3.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2004,50,3.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2004,50,4.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2004,50,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2004,50,0.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2004,50,6.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2004,50,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,1.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,14.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,2.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2004,50,2.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2004,50,1.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2004,50,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2004,50,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2004,50,2.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2004,50,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2004,50,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2004,50,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2004,50,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,1.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2004,50,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,5.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2004,50,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,5.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2004,50,30.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,117.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2004,50,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,1.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,1.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,1.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,23.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2004,50,2.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2004,50,91.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,1.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,2.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,1.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,1.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,2.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,1.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,1.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,5.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,3.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,3.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2004,50,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2004,50,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,1.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,1.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2004,50,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,1.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2004,50,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2004,50,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2004,50,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2004,50,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2004,50,1.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2004,50,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2004,50,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2004,50,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,3.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2004,50,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2004,50,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2004,50,3.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2004,50,45.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2004,50,4.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2004,50,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2004,50,2.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2004,50,3.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2004,50,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2004,50,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2004,50,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2004,50,0.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2004,50,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2004,50,2.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2004,50,7.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2004,50,2.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2004,50,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,3.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2004,50,10.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,1.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2004,50,26.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,7.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,206.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2004,50,6.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,2.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2004,50,26.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2004,50,1.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,47.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2004,50,3.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,8.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,17.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,17.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2004,50,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2004,50,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2004,50,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2004,50,27.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2004,50,30.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2004,50,1.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2004,50,6.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2004,50,8.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2004,50,2.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2004,50,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2004,50,1008.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2004,50,1.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2004,50,8.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2004,50,82.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2004,50,5.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2004,50,2.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2004,50,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2004,50,1.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2004,50,11.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2004,50,73.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2004,51,48.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2004,51,20.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2004,51,2.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2004,51,104.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2004,51,3.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2004,51,18.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2004,51,41.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2004,51,7.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2004,51,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2004,51,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2004,51,10.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2004,51,28.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2004,51,9.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2004,51,6.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2004,51,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2004,51,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2004,51,1.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2004,51,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2004,51,1.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2004,51,108.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2004,51,3.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2004,51,15.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2004,51,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2004,51,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2004,51,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2004,51,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2004,51,27.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2004,51,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2004,51,2.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2004,51,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2004,51,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2004,51,43.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2004,51,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2004,51,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2004,51,1.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2004,51,3.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2004,51,364.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2004,51,34.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2004,51,16.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2004,51,45.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2004,51,34.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2004,51,4.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2004,51,19.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2004,51,8.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2004,51,7.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2004,51,26.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2004,51,56.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2004,51,15.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2004,51,66.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2004,51,50.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2004,51,28.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2004,51,11.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2004,51,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2004,51,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2004,51,443.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2004,51,1.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2004,51,45.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2004,51,83.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2004,51,6.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2004,51,8.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2004,51,27.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2004,51,7.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2004,51,1.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2004,51,3.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2004,51,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2004,51,13.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2004,51,2.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2004,51,0.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2004,51,0.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2004,51,10.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2004,51,6.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2004,51,14.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2004,51,18.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2004,51,0.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2004,51,89.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2004,51,17.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2004,51,3.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2004,51,5.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2004,51,1.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2004,51,10.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2004,51,18.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2004,51,19.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2004,51,2.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2004,51,15.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2004,51,2.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2004,51,31.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2004,51,10.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2004,51,40.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2004,51,41.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2004,51,4.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2004,51,17.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2004,51,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2004,51,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2004,51,0.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2004,51,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2004,51,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2004,51,8.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2004,51,1.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2004,51,3.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2004,51,13.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2004,51,6.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2004,51,0.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2004,51,19.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2004,51,0.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2004,51,23.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2004,51,3.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2004,51,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2004,51,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2004,51,9.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2004,51,7.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2004,51,16.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2004,51,10.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2004,51,54.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2004,51,2.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2004,51,6.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2004,51,3.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2004,51,16.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2004,51,4.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2004,51,51.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2004,51,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2004,51,3.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2004,51,57.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2004,51,110.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2004,51,8.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2004,51,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2004,51,46.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2004,51,1.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,2.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,3.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,1.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,6.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2004,51,33.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2004,51,16.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2004,51,1.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,1.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,41.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,55.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,2.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,4.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,4.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2004,51,4.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2004,51,2.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2004,51,3.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2004,51,29.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2004,51,165.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2004,51,30.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2004,51,6.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2004,51,1.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2004,51,8.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2004,51,8.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2004,51,27.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2004,51,6.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2004,51,23.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2004,51,6.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2004,51,1.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2004,51,42.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2004,51,3.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2004,51,7.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2004,51,15.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2004,51,2.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2004,51,1.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2004,51,6.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2004,51,27.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2004,51,1.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2004,51,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2004,51,1.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2004,51,4.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2004,51,19.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2004,51,1.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2004,51,8.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2004,51,1.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2004,51,7.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2004,51,4.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2004,51,3.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2004,51,1.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2004,51,5.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2004,51,134.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2004,51,23.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2004,51,101.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2004,51,17.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2004,51,43.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2004,51,7.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2004,51,73.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2004,51,3.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2004,51,0.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2004,51,29.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2004,51,4.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2004,51,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2004,51,29.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2004,51,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2004,51,21.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2004,51,105.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2004,51,37.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2004,51,37.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2004,51,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2004,51,10.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2004,51,55.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2004,51,1.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2004,51,270.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2004,51,36.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2004,51,5.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2004,51,8.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2004,51,1.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,9.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2004,51,2.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2004,51,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,0.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,2.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2004,51,19.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2004,51,6.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2004,51,20.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2004,51,62.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2004,51,77.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2004,51,12.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2004,51,85.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2004,51,11.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2004,51,4.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2004,51,1.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2004,51,26.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2004,51,10.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2004,51,117.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2004,51,83.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2004,51,46.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2004,51,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2004,51,13.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2004,51,26.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2004,51,107.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2004,51,20.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,42.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,1.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,66.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2004,51,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2004,51,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2004,51,171.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2004,51,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2004,51,2.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2004,51,1.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2004,51,51.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2004,51,14.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,6.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,123.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2004,51,31.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,13.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2004,51,1.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,12.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2004,51,3.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2004,51,1.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,2.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2004,51,9.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2004,51,2.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,235.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,67.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,24.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,251.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,100.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2004,51,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,3.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,35.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,15.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2004,51,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2004,51,3.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,1.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,29.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,9.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,200.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,12.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,3.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,2.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,1623.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,428.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,1716.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,370.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,273.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,1.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,17.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2004,51,1.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,2.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,1.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2004,51,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,2.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,3.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,3.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2004,51,9.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2004,51,7.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2004,51,2.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,9.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,2.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,381.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,19.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,35.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,130.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2004,51,2.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2004,51,303.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,27.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2004,51,1.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,3.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2004,51,40.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,1.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,2.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,8.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2004,51,1.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,10.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2004,51,5.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2004,51,1.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2004,51,4.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2004,51,1.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2004,51,104.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2004,51,1.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,8.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,3.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2004,51,13.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2004,51,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2004,51,4.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2004,51,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2004,51,1.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2004,51,10.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2004,51,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,76.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2004,51,3.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2004,51,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2004,51,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2004,51,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2004,51,2.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2004,51,1.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2004,51,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,1.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2004,51,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2004,51,2.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2004,51,2.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2004,51,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,1.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,1.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2004,51,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2004,51,14.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,104.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2004,51,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,1.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,1.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,19.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2004,51,2.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2004,51,202.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,1.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,1.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,1.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,1.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,7.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,3.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,1.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,2.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,1.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,4.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,1.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2004,51,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2004,51,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,1.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,1.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2004,51,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,1.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2004,51,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2004,51,1.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,1.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,1.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2004,51,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2004,51,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2004,51,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2004,51,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2004,51,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2004,51,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,1.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,1.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,1.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2004,51,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2004,51,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2004,51,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2004,51,25.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2004,51,2.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2004,51,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2004,51,2.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2004,51,5.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2004,51,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2004,51,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2004,51,1.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2004,51,0.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2004,51,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2004,51,13.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2004,51,7.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2004,51,8.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2004,51,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,3.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2004,51,5.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,5.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2004,51,17.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,10.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,147.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2004,51,1.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,5.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2004,51,23.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2004,51,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,46.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2004,51,3.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,13.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,9.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,28.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2004,51,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2004,51,1.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2004,51,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2004,51,19.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2004,51,72.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2004,51,1.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2004,51,16.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2004,51,11.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2004,51,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2004,51,2.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2004,51,961.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2004,51,1.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2004,51,7.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2004,51,80.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2004,51,2.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2004,51,11.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2004,51,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2004,51,4.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2004,51,39.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2004,51,50.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2004,52,40.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2004,52,4.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2004,52,3.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2004,52,18.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2004,52,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2004,52,3.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2004,52,20.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2004,52,10.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2004,52,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2004,52,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2004,52,10.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2004,52,6.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2004,52,10.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2004,52,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2004,52,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2004,52,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2004,52,1.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2004,52,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2004,52,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2004,52,101.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2004,52,3.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2004,52,2.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2004,52,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2004,52,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2004,52,2.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2004,52,1.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2004,52,14.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2004,52,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2004,52,1.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2004,52,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2004,52,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2004,52,43.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2004,52,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2004,52,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2004,52,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2004,52,2.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2004,52,159.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2004,52,19.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2004,52,11.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2004,52,24.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2004,52,15.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2004,52,2.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2004,52,10.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2004,52,0.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2004,52,1.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2004,52,10.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2004,52,37.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2004,52,8.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2004,52,9.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2004,52,18.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2004,52,9.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2004,52,3.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2004,52,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2004,52,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2004,52,289.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2004,52,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2004,52,44.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2004,52,69.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2004,52,7.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2004,52,10.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2004,52,24.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2004,52,8.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2004,52,4.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2004,52,5.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2004,52,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2004,52,8.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2004,52,4.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2004,52,0.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2004,52,0.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2004,52,9.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2004,52,3.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2004,52,20.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2004,52,18.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2004,52,2.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2004,52,29.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2004,52,34.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2004,52,3.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2004,52,7.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2004,52,1.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2004,52,1.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2004,52,2.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2004,52,14.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2004,52,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2004,52,3.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2004,52,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2004,52,2.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2004,52,0.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2004,52,17.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2004,52,13.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2004,52,4.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2004,52,1.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2004,52,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2004,52,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2004,52,1.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2004,52,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2004,52,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2004,52,3.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2004,52,3.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2004,52,2.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2004,52,13.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2004,52,11.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2004,52,2.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2004,52,5.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2004,52,1.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2004,52,15.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2004,52,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2004,52,4.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2004,52,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2004,52,11.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2004,52,1.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2004,52,37.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2004,52,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2004,52,1.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2004,52,0.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2004,52,16.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2004,52,0.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2004,52,1.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2004,52,41.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2004,52,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2004,52,2.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2004,52,33.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2004,52,28.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2004,52,1.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2004,52,8.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2004,52,35.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2004,52,0.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,0.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,1.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,0.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,3.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2004,52,52.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2004,52,48.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2004,52,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,0.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,7.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,18.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,10.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,1.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2004,52,2.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2004,52,1.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2004,52,2.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2004,52,54.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2004,52,108.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2004,52,3.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2004,52,4.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2004,52,4.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2004,52,2.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2004,52,1.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2004,52,11.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2004,52,5.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2004,52,5.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2004,52,2.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2004,52,1.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2004,52,22.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2004,52,2.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2004,52,4.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2004,52,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2004,52,3.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2004,52,2.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2004,52,3.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2004,52,26.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2004,52,1.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2004,52,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2004,52,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2004,52,2.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2004,52,38.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2004,52,1.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2004,52,0.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2004,52,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2004,52,1.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2004,52,4.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2004,52,1.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2004,52,2.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2004,52,3.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2004,52,83.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2004,52,12.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2004,52,54.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2004,52,1.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2004,52,33.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2004,52,2.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2004,52,45.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2004,52,4.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2004,52,0.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2004,52,40.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2004,52,3.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2004,52,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2004,52,38.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2004,52,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2004,52,110.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2004,52,44.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2004,52,84.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2004,52,23.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2004,52,1.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2004,52,14.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2004,52,42.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2004,52,2.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2004,52,416.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2004,52,19.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2004,52,15.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2004,52,1.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2004,52,1.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,3.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2004,52,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2004,52,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,4.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2004,52,8.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2004,52,9.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2004,52,16.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2004,52,37.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2004,52,47.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2004,52,11.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2004,52,73.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2004,52,5.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2004,52,1.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2004,52,2.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2004,52,12.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2004,52,70.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2004,52,31.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2004,52,38.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2004,52,35.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2004,52,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2004,52,5.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2004,52,11.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2004,52,36.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2004,52,6.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,0.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,5.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,60.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2004,52,2.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2004,52,4.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2004,52,109.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2004,52,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2004,52,11.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2004,52,0.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2004,52,12.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2004,52,4.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,2.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,20.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2004,52,9.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,12.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2004,52,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,3.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2004,52,13.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2004,52,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,2.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2004,52,2.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2004,52,10.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,50.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,112.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,14.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,221.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,96.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2004,52,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,1.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,45.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,13.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2004,52,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2004,52,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,16.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,15.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,3.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,217.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,11.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,1.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,3.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,3.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,419.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,188.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,522.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,410.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,80.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,22.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2004,52,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2004,52,1.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,1.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,6.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,14.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2004,52,37.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2004,52,22.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,23.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,132.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,2.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,55.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,47.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2004,52,1.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2004,52,300.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,60.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2004,52,1.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,1.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2004,52,13.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,2.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,2.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2004,52,1.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,2.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2004,52,2.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2004,52,3.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2004,52,39.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,2.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2004,52,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,15.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,1.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2004,52,11.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2004,52,1.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2004,52,6.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2004,52,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2004,52,12.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2004,52,26.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2004,52,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,1.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,115.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,1.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2004,52,15.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2004,52,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2004,52,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2004,52,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2004,52,2.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2004,52,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2004,52,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2004,52,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2004,52,3.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2004,52,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2004,52,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,2.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2004,52,1.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,177.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2004,52,1.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,2.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,1.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,20.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2004,52,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2004,52,466.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,1.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,37.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,2.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,1.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,1.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,1.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,1.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2004,52,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2004,52,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2004,52,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,1.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2004,52,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2004,52,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,1.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2004,52,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2004,52,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2004,52,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2004,52,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2004,52,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,1.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2004,52,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,1.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2004,52,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2004,52,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2004,52,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2004,52,8.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2004,52,6.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2004,52,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2004,52,3.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2004,52,2.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2004,52,1.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2004,52,1.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2004,52,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2004,52,23.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2004,52,2.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2004,52,12.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2004,52,3.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2004,52,7.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2004,52,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,2.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2004,52,5.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,0.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2004,52,12.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,7.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,136.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2004,52,5.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2004,52,11.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2004,52,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,2.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2004,52,1.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,14.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,4.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,14.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2004,52,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2004,52,1.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2004,52,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2004,52,11.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2004,52,31.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2004,52,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2004,52,3.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2004,52,6.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2004,52,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2004,52,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2004,52,721.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2004,52,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2004,52,4.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2004,52,70.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2004,52,7.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2004,52,9.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2004,52,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2004,52,5.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2004,52,34.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2004,52,22.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2004,53,20.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2004,53,1.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2004,53,2.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2004,53,9.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2004,53,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2004,53,1.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2004,53,22.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2004,53,1.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2004,53,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2004,53,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2004,53,12.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2004,53,10.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2004,53,40.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2004,53,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2004,53,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2004,53,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2004,53,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2004,53,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2004,53,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2004,53,114.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2004,53,2.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2004,53,1.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2004,53,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2004,53,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2004,53,1.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2004,53,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2004,53,25.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2004,53,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2004,53,1.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2004,53,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2004,53,1.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2004,53,25.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2004,53,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2004,53,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2004,53,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2004,53,3.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2004,53,109.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2004,53,4.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2004,53,11.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2004,53,17.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2004,53,16.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2004,53,4.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2004,53,12.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2004,53,2.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2004,53,0.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2004,53,12.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2004,53,47.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2004,53,3.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2004,53,7.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2004,53,15.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2004,53,4.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2004,53,1.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2004,53,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2004,53,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2004,53,219.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2004,53,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2004,53,42.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2004,53,52.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2004,53,10.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2004,53,2.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2004,53,13.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2004,53,14.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2004,53,3.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2004,53,0.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2004,53,1.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2004,53,15.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2004,53,0.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2004,53,0.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2004,53,0.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2004,53,5.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2004,53,9.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2004,53,10.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2004,53,5.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2004,53,6.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2004,53,21.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2004,53,41.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2004,53,0.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2004,53,13.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2004,53,4.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2004,53,11.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2004,53,2.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2004,53,24.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2004,53,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2004,53,5.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2004,53,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2004,53,10.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2004,53,3.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2004,53,8.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2004,53,6.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2004,53,2.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2004,53,1.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2004,53,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2004,53,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2004,53,2.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2004,53,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2004,53,1.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2004,53,1.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2004,53,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2004,53,8.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2004,53,10.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2004,53,10.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2004,53,1.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2004,53,6.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2004,53,1.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2004,53,59.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2004,53,1.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2004,53,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2004,53,6.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2004,53,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2004,53,6.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2004,53,2.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2004,53,31.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2004,53,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2004,53,1.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2004,53,1.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2004,53,35.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2004,53,1.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2004,53,37.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2004,53,1.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2004,53,19.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2004,53,13.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2004,53,21.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2004,53,1.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2004,53,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2004,53,58.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2004,53,3.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,1.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,1.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,4.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2004,53,16.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2004,53,15.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2004,53,1.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,1.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,14.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,64.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,9.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,3.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2004,53,5.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2004,53,3.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2004,53,0.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2004,53,43.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2004,53,112.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2004,53,3.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2004,53,2.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2004,53,3.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2004,53,2.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2004,53,0.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2004,53,4.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2004,53,0.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2004,53,5.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2004,53,3.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2004,53,2.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2004,53,17.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2004,53,0.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2004,53,6.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2004,53,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2004,53,1.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2004,53,8.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2004,53,4.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2004,53,18.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2004,53,2.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2004,53,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2004,53,3.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2004,53,7.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2004,53,70.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2004,53,2.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2004,53,1.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2004,53,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2004,53,1.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2004,53,1.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2004,53,4.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2004,53,1.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2004,53,1.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2004,53,60.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2004,53,8.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2004,53,24.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2004,53,7.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2004,53,13.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2004,53,5.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2004,53,26.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2004,53,3.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2004,53,1.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2004,53,34.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2004,53,2.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2004,53,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2004,53,53.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2004,53,2.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2004,53,60.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2004,53,39.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2004,53,50.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2004,53,20.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2004,53,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2004,53,12.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2004,53,78.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2004,53,0.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2004,53,497.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2004,53,39.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2004,53,25.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2004,53,2.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2004,53,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,0.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2004,53,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2004,53,1.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,10.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,1.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2004,53,18.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2004,53,2.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2004,53,12.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2004,53,10.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2004,53,26.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2004,53,0.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2004,53,91.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2004,53,4.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2004,53,0.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2004,53,3.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2004,53,6.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2004,53,116.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2004,53,16.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2004,53,76.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2004,53,36.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2004,53,2.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2004,53,2.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2004,53,5.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2004,53,15.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2004,53,6.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,5.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,6.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,53.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2004,53,1.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2004,53,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2004,53,54.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2004,53,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2004,53,4.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2004,53,0.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2004,53,11.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2004,53,0.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,2.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,10.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2004,53,8.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,0.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2004,53,1.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,13.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2004,53,19.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2004,53,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2004,53,9.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2004,53,16.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,10.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,84.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,21.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,99.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,68.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2004,53,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,13.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,12.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2004,53,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,2.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2004,53,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,13.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,35.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,227.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,10.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,1.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,2.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,58.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,38.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,492.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,311.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,26.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,2.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,4.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2004,53,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2004,53,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,1.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,5.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,1.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2004,53,49.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2004,53,17.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,13.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,2.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,47.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,7.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,34.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,21.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2004,53,3.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2004,53,374.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,45.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2004,53,9.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,1.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2004,53,1.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2004,53,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2004,53,34.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2004,53,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,16.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,5.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2004,53,1.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2004,53,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2004,53,3.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2004,53,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2004,53,21.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2004,53,13.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2004,53,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,2.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,72.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,2.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2004,53,6.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2004,53,1.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2004,53,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2004,53,1.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2004,53,1.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2004,53,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2004,53,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2004,53,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2004,53,1.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,1.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2004,53,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,1.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2004,53,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,1.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2004,53,1.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,1.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,182.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2004,53,1.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,1.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,17.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2004,53,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2004,53,523.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,2.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,1.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,1.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,1.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,1.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,1.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,1.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2004,53,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2004,53,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,1.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,1.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2004,53,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2004,53,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2004,53,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2004,53,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2004,53,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2004,53,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2004,53,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2004,53,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2004,53,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2004,53,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2004,53,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2004,53,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2004,53,13.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2004,53,7.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2004,53,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2004,53,17.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2004,53,6.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2004,53,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2004,53,1.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2004,53,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2004,53,2.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2004,53,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2004,53,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2004,53,0.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2004,53,3.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2004,53,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,3.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2004,53,0.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,0.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2004,53,10.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,6.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,86.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2004,53,4.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2004,53,5.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2004,53,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,2.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2004,53,0.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,8.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,1.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,3.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2004,53,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2004,53,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2004,53,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2004,53,5.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2004,53,18.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2004,53,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2004,53,19.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2004,53,3.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2004,53,1.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2004,53,1.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2004,53,494.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2004,53,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2004,53,4.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2004,53,49.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2004,53,7.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2004,53,3.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2004,53,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2004,53,1.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2004,53,27.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2004,53,14.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2004,54,18.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2004,54,0.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2004,54,3.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2004,54,1.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2004,54,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2004,54,3.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2004,54,13.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2004,54,3.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2004,54,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2004,54,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2004,54,7.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2004,54,16.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2004,54,27.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2004,54,2.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2004,54,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2004,54,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2004,54,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2004,54,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2004,54,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2004,54,48.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2004,54,1.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2004,54,3.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2004,54,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2004,54,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2004,54,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2004,54,1.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2004,54,15.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2004,54,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2004,54,0.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2004,54,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2004,54,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2004,54,23.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2004,54,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2004,54,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2004,54,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2004,54,1.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2004,54,59.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2004,54,2.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2004,54,4.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2004,54,18.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2004,54,8.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2004,54,2.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2004,54,8.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2004,54,0.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2004,54,0.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2004,54,5.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2004,54,24.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2004,54,1.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2004,54,5.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2004,54,8.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2004,54,4.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2004,54,0.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2004,54,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2004,54,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2004,54,236.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2004,54,1.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2004,54,39.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2004,54,17.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2004,54,4.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2004,54,1.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2004,54,1.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2004,54,7.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2004,54,2.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2004,54,0.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2004,54,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2004,54,22.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2004,54,2.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2004,54,0.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2004,54,2.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2004,54,1.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2004,54,5.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2004,54,4.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2004,54,3.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2004,54,15.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2004,54,14.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2004,54,6.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2004,54,0.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2004,54,25.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2004,54,2.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2004,54,1.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2004,54,2.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2004,54,31.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2004,54,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2004,54,1.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2004,54,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2004,54,15.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2004,54,18.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2004,54,10.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2004,54,6.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2004,54,0.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2004,54,0.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2004,54,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2004,54,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2004,54,1.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2004,54,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2004,54,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2004,54,0.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2004,54,1.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2004,54,5.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2004,54,1.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2004,54,21.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2004,54,1.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2004,54,2.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2004,54,2.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2004,54,157.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2004,54,1.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2004,54,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2004,54,1.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2004,54,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2004,54,2.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2004,54,14.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2004,54,0.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2004,54,0.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2004,54,34.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2004,54,0.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2004,54,143.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2004,54,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2004,54,1.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2004,54,12.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2004,54,11.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2004,54,10.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2004,54,2.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2004,54,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2004,54,34.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2004,54,4.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,1.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,2.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,0.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,5.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2004,54,8.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2004,54,12.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2004,54,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,1.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,3.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,27.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,10.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,5.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2004,54,4.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2004,54,7.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2004,54,1.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2004,54,25.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2004,54,97.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2004,54,0.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2004,54,5.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2004,54,0.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2004,54,0.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2004,54,3.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2004,54,8.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2004,54,0.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2004,54,9.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2004,54,2.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2004,54,1.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2004,54,11.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2004,54,1.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2004,54,2.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2004,54,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2004,54,0.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2004,54,1.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2004,54,8.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2004,54,12.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2004,54,3.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2004,54,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2004,54,1.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2004,54,3.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2004,54,70.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2004,54,1.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2004,54,4.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2004,54,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2004,54,3.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2004,54,0.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2004,54,3.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2004,54,1.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2004,54,1.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2004,54,44.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2004,54,9.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2004,54,32.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2004,54,5.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2004,54,5.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2004,54,3.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2004,54,7.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2004,54,3.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2004,54,0.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2004,54,31.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2004,54,3.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2004,54,6.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2004,54,4.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2004,54,1.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2004,54,6.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2004,54,2.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2004,54,5.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2004,54,8.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2004,54,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2004,54,10.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2004,54,30.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2004,54,2.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2004,54,338.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2004,54,18.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2004,54,12.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2004,54,4.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2004,54,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,2.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2004,54,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2004,54,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,9.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2004,54,20.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2004,54,1.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2004,54,7.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2004,54,1.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2004,54,29.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2004,54,0.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2004,54,40.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2004,54,7.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2004,54,0.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2004,54,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2004,54,3.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2004,54,101.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2004,54,15.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2004,54,22.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2004,54,24.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2004,54,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2004,54,4.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2004,54,1.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2004,54,8.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2004,54,11.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,3.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,4.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,33.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2004,54,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2004,54,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2004,54,27.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2004,54,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2004,54,2.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2004,54,1.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2004,54,7.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2004,54,5.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,0.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,5.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2004,54,3.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,1.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2004,54,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,1.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2004,54,1.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2004,54,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2004,54,4.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2004,54,3.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,3.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,24.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,4.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,29.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,15.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2004,54,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,1.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,2.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2004,54,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2004,54,1.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,1.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,20.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,1.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,54.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,5.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,1.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,13.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,1.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,112.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,77.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,6.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,2.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,0.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2004,54,1.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2004,54,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,1.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,1.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2004,54,2.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,6.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,13.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,3.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,2.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,9.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2004,54,156.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,14.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2004,54,4.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,2.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2004,54,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2004,54,1.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2004,54,1.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2004,54,12.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2004,54,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,2.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,1.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2004,54,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2004,54,1.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2004,54,1.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2004,54,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2004,54,5.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2004,54,1.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2004,54,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,5.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2004,54,0.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2004,54,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2004,54,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2004,54,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2004,54,0.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2004,54,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2004,54,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2004,54,2.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2004,54,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2004,54,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,1.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2004,54,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,1.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2004,54,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,39.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2004,54,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,1.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,1.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,7.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2004,54,1.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2004,54,130.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,1.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,1.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2004,54,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2004,54,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2004,54,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2004,54,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2004,54,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2004,54,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2004,54,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2004,54,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2004,54,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2004,54,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2004,54,3.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2004,54,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2004,54,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2004,54,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2004,54,3.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2004,54,0.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2004,54,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2004,54,6.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2004,54,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2004,54,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2004,54,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2004,54,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2004,54,1.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2004,54,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2004,54,2.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2004,54,0.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2004,54,2.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2004,54,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,3.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2004,54,0.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,0.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2004,54,1.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,4.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,45.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2004,54,3.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,2.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2004,54,3.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2004,54,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,1.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2004,54,1.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,3.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,0.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,0.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2004,54,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2004,54,3.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2004,54,14.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2004,54,11.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2004,54,1.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2004,54,177.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2004,54,17.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2004,54,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2004,54,3.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2004,54,7.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2004,55,2.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2004,55,0.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2004,55,5.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2004,55,1.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2004,55,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2004,55,7.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2004,55,13.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2004,55,1.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2004,55,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2004,55,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2004,55,3.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2004,55,18.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2004,55,23.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2004,55,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2004,55,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2004,55,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2004,55,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2004,55,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2004,55,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2004,55,66.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2004,55,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2004,55,0.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2004,55,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2004,55,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2004,55,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2004,55,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2004,55,23.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2004,55,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2004,55,1.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2004,55,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2004,55,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2004,55,24.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2004,55,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2004,55,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2004,55,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2004,55,2.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2004,55,56.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2004,55,1.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2004,55,1.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2004,55,9.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2004,55,12.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2004,55,1.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2004,55,14.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2004,55,1.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2004,55,0.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2004,55,2.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2004,55,21.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2004,55,1.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2004,55,1.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2004,55,12.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2004,55,2.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2004,55,0.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2004,55,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2004,55,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2004,55,234.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2004,55,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2004,55,11.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2004,55,11.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2004,55,0.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2004,55,0.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2004,55,0.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2004,55,4.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2004,55,1.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2004,55,1.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2004,55,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2004,55,18.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2004,55,4.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2004,55,9.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2004,55,2.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2004,55,2.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2004,55,0.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2004,55,0.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2004,55,0.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2004,55,17.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2004,55,3.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2004,55,1.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2004,55,2.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2004,55,13.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2004,55,1.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2004,55,2.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2004,55,3.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2004,55,4.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2004,55,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2004,55,0.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2004,55,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2004,55,7.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2004,55,19.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2004,55,13.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2004,55,10.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2004,55,0.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2004,55,0.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2004,55,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2004,55,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2004,55,2.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2004,55,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2004,55,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2004,55,0.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2004,55,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2004,55,3.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2004,55,0.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2004,55,23.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2004,55,1.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2004,55,2.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2004,55,127.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2004,55,3.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2004,55,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2004,55,1.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2004,55,1.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2004,55,1.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2004,55,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2004,55,2.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2004,55,16.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2004,55,4.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2004,55,1.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2004,55,16.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2004,55,2.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2004,55,2.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2004,55,125.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2004,55,2.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2004,55,3.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2004,55,1.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2004,55,1.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2004,55,7.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2004,55,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2004,55,30.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2004,55,5.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,1.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,1.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,1.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,6.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2004,55,3.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2004,55,32.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2004,55,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,2.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,1.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,17.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,5.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,8.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2004,55,4.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2004,55,5.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2004,55,1.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2004,55,23.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2004,55,112.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2004,55,2.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2004,55,4.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2004,55,1.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2004,55,2.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2004,55,2.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2004,55,7.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2004,55,0.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2004,55,3.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2004,55,2.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2004,55,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2004,55,3.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2004,55,1.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2004,55,7.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2004,55,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2004,55,1.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2004,55,2.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2004,55,4.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2004,55,15.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2004,55,2.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2004,55,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2004,55,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2004,55,6.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2004,55,42.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2004,55,1.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2004,55,1.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2004,55,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2004,55,2.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2004,55,0.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2004,55,6.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2004,55,0.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2004,55,0.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2004,55,33.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2004,55,3.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2004,55,26.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2004,55,4.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2004,55,7.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2004,55,9.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2004,55,2.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2004,55,1.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2004,55,3.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2004,55,28.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2004,55,0.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2004,55,1.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2004,55,1.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2004,55,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2004,55,1.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2004,55,2.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2004,55,5.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2004,55,9.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2004,55,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2004,55,3.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2004,55,11.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2004,55,0.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2004,55,313.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2004,55,20.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2004,55,5.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2004,55,4.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2004,55,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,2.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2004,55,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2004,55,1.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,3.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2004,55,15.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2004,55,1.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2004,55,3.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2004,55,0.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2004,55,30.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2004,55,0.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2004,55,16.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2004,55,1.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2004,55,1.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2004,55,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2004,55,5.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2004,55,43.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2004,55,10.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2004,55,9.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2004,55,13.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2004,55,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2004,55,5.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2004,55,4.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2004,55,5.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2004,55,7.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,2.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,3.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,25.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2004,55,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2004,55,1.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2004,55,11.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2004,55,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2004,55,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2004,55,1.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2004,55,6.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2004,55,2.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,2.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,19.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2004,55,2.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2004,55,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2004,55,0.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2004,55,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2004,55,1.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2004,55,1.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,4.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,1.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,6.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,4.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2004,55,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,2.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2004,55,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2004,55,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,1.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,4.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,5.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,4.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,1.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,26.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,8.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,3.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2004,55,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2004,55,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,1.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2004,55,2.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,3.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,2.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,2.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,2.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2004,55,2.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2004,55,101.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,10.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,1.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2004,55,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,1.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2004,55,22.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2004,55,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,1.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2004,55,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2004,55,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2004,55,2.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2004,55,2.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2004,55,0.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2004,55,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2004,55,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2004,55,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2004,55,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2004,55,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2004,55,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2004,55,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,14.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2004,55,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,2.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2004,55,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2004,55,39.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,1.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,1.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2004,55,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2004,55,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2004,55,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2004,55,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2004,55,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2004,55,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2004,55,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2004,55,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2004,55,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2004,55,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2004,55,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2004,55,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2004,55,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2004,55,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2004,55,0.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2004,55,0.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2004,55,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2004,55,0.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2004,55,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2004,55,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2004,55,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2004,55,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2004,55,6.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2004,55,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2004,55,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2004,55,2.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2004,55,0.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2004,55,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2004,55,1.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,2.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2004,55,2.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,2.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,15.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2004,55,0.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2004,55,3.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2004,55,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2004,55,1.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,1.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2004,55,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2004,55,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2004,55,13.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2004,55,7.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2004,55,1.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2004,55,63.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2004,55,14.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2004,55,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2004,55,5.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2004,55,11.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2004,56,2.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2004,56,0.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2004,56,5.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2004,56,3.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2004,56,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2004,56,1.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2004,56,11.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2004,56,10.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2004,56,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2004,56,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2004,56,2.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2004,56,13.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2004,56,25.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2004,56,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2004,56,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2004,56,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2004,56,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2004,56,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2004,56,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2004,56,45.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2004,56,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2004,56,0.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2004,56,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2004,56,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2004,56,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2004,56,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2004,56,41.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2004,56,0.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2004,56,1.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2004,56,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2004,56,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2004,56,16.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2004,56,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2004,56,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2004,56,1.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2004,56,1.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2004,56,69.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2004,56,0.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2004,56,4.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2004,56,28.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2004,56,8.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2004,56,1.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2004,56,6.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2004,56,0.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2004,56,1.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2004,56,3.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2004,56,32.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2004,56,2.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2004,56,1.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2004,56,11.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2004,56,12.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2004,56,0.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2004,56,1.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2004,56,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2004,56,210.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2004,56,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2004,56,11.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2004,56,13.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2004,56,1.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2004,56,0.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2004,56,0.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2004,56,2.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2004,56,0.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2004,56,0.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2004,56,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2004,56,11.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2004,56,0.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2004,56,1.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2004,56,2.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2004,56,8.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2004,56,0.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2004,56,1.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2004,56,1.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2004,56,17.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2004,56,1.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2004,56,2.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2004,56,1.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2004,56,32.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2004,56,0.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2004,56,1.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2004,56,2.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2004,56,0.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2004,56,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2004,56,0.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2004,56,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2004,56,6.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2004,56,42.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2004,56,9.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2004,56,19.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2004,56,0.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2004,56,1.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2004,56,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2004,56,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2004,56,0.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2004,56,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2004,56,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2004,56,0.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2004,56,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2004,56,3.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2004,56,37.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2004,56,17.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2004,56,1.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2004,56,2.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2004,56,158.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2004,56,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2004,56,1.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2004,56,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2004,56,3.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2004,56,1.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2004,56,14.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2004,56,4.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2004,56,29.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2004,56,0.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2004,56,3.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2004,56,1.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2004,56,4.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2004,56,124.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2004,56,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2004,56,1.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2004,56,0.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2004,56,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2004,56,16.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2004,56,8.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,0.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,0.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,4.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2004,56,2.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2004,56,123.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2004,56,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,2.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,0.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,14.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,22.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,1.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2004,56,3.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2004,56,2.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2004,56,0.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2004,56,10.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2004,56,54.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2004,56,1.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2004,56,2.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2004,56,0.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2004,56,4.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2004,56,1.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2004,56,11.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2004,56,0.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2004,56,3.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2004,56,1.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2004,56,1.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2004,56,9.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2004,56,2.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2004,56,2.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2004,56,1.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2004,56,2.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2004,56,0.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2004,56,1.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2004,56,7.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2004,56,2.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2004,56,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2004,56,2.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2004,56,9.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2004,56,32.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2004,56,1.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2004,56,0.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2004,56,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2004,56,0.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2004,56,2.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2004,56,1.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2004,56,2.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2004,56,2.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2004,56,21.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2004,56,2.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2004,56,18.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2004,56,1.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2004,56,5.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2004,56,2.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2004,56,4.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2004,56,1.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2004,56,33.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2004,56,3.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2004,56,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2004,56,4.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2004,56,4.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2004,56,1.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2004,56,5.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2004,56,2.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2004,56,1.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2004,56,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2004,56,3.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2004,56,11.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2004,56,1.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2004,56,197.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2004,56,7.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2004,56,2.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2004,56,5.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2004,56,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2004,56,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2004,56,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,1.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2004,56,17.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2004,56,0.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2004,56,1.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2004,56,1.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2004,56,3.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2004,56,0.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2004,56,4.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2004,56,2.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2004,56,0.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2004,56,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2004,56,1.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2004,56,7.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2004,56,2.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2004,56,6.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2004,56,9.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2004,56,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2004,56,4.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2004,56,5.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2004,56,7.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2004,56,2.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,0.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,1.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,12.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2004,56,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2004,56,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2004,56,8.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2004,56,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2004,56,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2004,56,0.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2004,56,3.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2004,56,1.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,0.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,8.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2004,56,3.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,1.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2004,56,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2004,56,0.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2004,56,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2004,56,0.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2004,56,0.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,1.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,4.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2004,56,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,1.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2004,56,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2004,56,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,4.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,11.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2004,56,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2004,56,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,4.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,3.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2004,56,52.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,1.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,1.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2004,56,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,1.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2004,56,48.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2004,56,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,2.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,1.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2004,56,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2004,56,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2004,56,1.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2004,56,2.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2004,56,0.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2004,56,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2004,56,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2004,56,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2004,56,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2004,56,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2004,56,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2004,56,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,5.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2004,56,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,2.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,3.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2004,56,1.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2004,56,5.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,2.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,1.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2004,56,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2004,56,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2004,56,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2004,56,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2004,56,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2004,56,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2004,56,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2004,56,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2004,56,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2004,56,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2004,56,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2004,56,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2004,56,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2004,56,1.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2004,56,0.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2004,56,0.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2004,56,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2004,56,2.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2004,56,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2004,56,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2004,56,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2004,56,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2004,56,2.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2004,56,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2004,56,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2004,56,1.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2004,56,0.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2004,56,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2004,56,0.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,1.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2004,56,0.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,3.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,5.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2004,56,2.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2004,56,2.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2004,56,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2004,56,1.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2004,56,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2004,56,6.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2004,56,1.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2004,56,3.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2004,56,54.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2004,56,1.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2004,56,2.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2004,56,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2004,56,1.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2004,56,4.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2004,57,1.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2004,57,0.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2004,57,2.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2004,57,8.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2004,57,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2004,57,5.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2004,57,8.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2004,57,14.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2004,57,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2004,57,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2004,57,11.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2004,57,35.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2004,57,49.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2004,57,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2004,57,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2004,57,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2004,57,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2004,57,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2004,57,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2004,57,17.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2004,57,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2004,57,0.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2004,57,1.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2004,57,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2004,57,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2004,57,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2004,57,68.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2004,57,1.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2004,57,1.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2004,57,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2004,57,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2004,57,14.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2004,57,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2004,57,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2004,57,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2004,57,3.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2004,57,62.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2004,57,2.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2004,57,9.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2004,57,21.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2004,57,6.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2004,57,1.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2004,57,6.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2004,57,0.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2004,57,0.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2004,57,1.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2004,57,28.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2004,57,1.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2004,57,0.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2004,57,5.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2004,57,8.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2004,57,0.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2004,57,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2004,57,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2004,57,229.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2004,57,1.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2004,57,9.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2004,57,14.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2004,57,0.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2004,57,0.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2004,57,1.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2004,57,0.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2004,57,0.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2004,57,0.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2004,57,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2004,57,9.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2004,57,1.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2004,57,0.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2004,57,0.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2004,57,1.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2004,57,0.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2004,57,2.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2004,57,2.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2004,57,10.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2004,57,1.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2004,57,0.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2004,57,2.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2004,57,4.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2004,57,2.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2004,57,0.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2004,57,1.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2004,57,0.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2004,57,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2004,57,0.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2004,57,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2004,57,12.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2004,57,19.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2004,57,4.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2004,57,3.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2004,57,1.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2004,57,0.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2004,57,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2004,57,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2004,57,2.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2004,57,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2004,57,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2004,57,0.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2004,57,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2004,57,1.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2004,57,20.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2004,57,35.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2004,57,2.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2004,57,1.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2004,57,58.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2004,57,2.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2004,57,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2004,57,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2004,57,1.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2004,57,18.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2004,57,14.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2004,57,3.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2004,57,1.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2004,57,1.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2004,57,1.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2004,57,69.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2004,57,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2004,57,1.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2004,57,0.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2004,57,0.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2004,57,6.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2004,57,0.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,0.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,4.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,0.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2004,57,2.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2004,57,37.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2004,57,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,3.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,0.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,8.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,7.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,0.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2004,57,1.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2004,57,0.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2004,57,0.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2004,57,3.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2004,57,30.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2004,57,2.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2004,57,3.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2004,57,0.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2004,57,1.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2004,57,0.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2004,57,5.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2004,57,1.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2004,57,2.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2004,57,0.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2004,57,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2004,57,1.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2004,57,0.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2004,57,1.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2004,57,1.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2004,57,3.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2004,57,0.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2004,57,2.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2004,57,0.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2004,57,1.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2004,57,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2004,57,2.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2004,57,14.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2004,57,2.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2004,57,1.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2004,57,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2004,57,0.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2004,57,1.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2004,57,1.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2004,57,0.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2004,57,0.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2004,57,7.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2004,57,0.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2004,57,14.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2004,57,0.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2004,57,1.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2004,57,1.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2004,57,2.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2004,57,1.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2004,57,29.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2004,57,1.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2004,57,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2004,57,0.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2004,57,5.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2004,57,0.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2004,57,2.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2004,57,1.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2004,57,1.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2004,57,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2004,57,1.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2004,57,2.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2004,57,0.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2004,57,147.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2004,57,5.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2004,57,2.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2004,57,3.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2004,57,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2004,57,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2004,57,1.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,2.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2004,57,19.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2004,57,0.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2004,57,1.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2004,57,0.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2004,57,2.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2004,57,0.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2004,57,2.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2004,57,1.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2004,57,0.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2004,57,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2004,57,0.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2004,57,4.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2004,57,4.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2004,57,4.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2004,57,9.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2004,57,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2004,57,1.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2004,57,3.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2004,57,2.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2004,57,0.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,0.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,1.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,7.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2004,57,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2004,57,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2004,57,2.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2004,57,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2004,57,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2004,57,0.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2004,57,4.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2004,57,0.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,0.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,8.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2004,57,0.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2004,57,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2004,57,0.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2004,57,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,1.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2004,57,0.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2004,57,1.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,1.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2004,57,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2004,57,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2004,57,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,1.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,4.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,4.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,1.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2004,57,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2004,57,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,1.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,1.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,1.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,1.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,4.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2004,57,16.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,6.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,2.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,3.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,4.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2004,57,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2004,57,65.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2004,57,1.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,1.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2004,57,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2004,57,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2004,57,2.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2004,57,1.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2004,57,0.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2004,57,6.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2004,57,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2004,57,0.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2004,57,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2004,57,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2004,57,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2004,57,0.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2004,57,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2004,57,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2004,57,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,1.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2004,57,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2004,57,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2004,57,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,5.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2004,57,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,1.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,1.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,2.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2004,57,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2004,57,1.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,2.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,1.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2004,57,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2004,57,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2004,57,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2004,57,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2004,57,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2004,57,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2004,57,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2004,57,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2004,57,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2004,57,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2004,57,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,1.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2004,57,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2004,57,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2004,57,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2004,57,2.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2004,57,0.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2004,57,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2004,57,1.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2004,57,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2004,57,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2004,57,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2004,57,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2004,57,0.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2004,57,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2004,57,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2004,57,1.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2004,57,0.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2004,57,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2004,57,0.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2004,57,1.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,9.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2004,57,0.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2004,57,0.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2004,57,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2004,57,1.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2004,57,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2004,57,2.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2004,57,1.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2004,57,1.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2004,57,56.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2004,57,1.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2004,57,3.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2004,57,0.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2004,57,3.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2004,58,0.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2004,58,0.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2004,58,11.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2004,58,14.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2004,58,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2004,58,49.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2004,58,11.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2004,58,22.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2004,58,0.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2004,58,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2004,58,14.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2004,58,316.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2004,58,67.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2004,58,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2004,58,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2004,58,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2004,58,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2004,58,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2004,58,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2004,58,22.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2004,58,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2004,58,1.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2004,58,0.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2004,58,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2004,58,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2004,58,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2004,58,63.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2004,58,1.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2004,58,3.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2004,58,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2004,58,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2004,58,17.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2004,58,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2004,58,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2004,58,1.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2004,58,0.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2004,58,98.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2004,58,5.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2004,58,1.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2004,58,19.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2004,58,19.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2004,58,0.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2004,58,9.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2004,58,0.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2004,58,0.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2004,58,5.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2004,58,19.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2004,58,0.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2004,58,2.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2004,58,2.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2004,58,4.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2004,58,1.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2004,58,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2004,58,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2004,58,148.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2004,58,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2004,58,24.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2004,58,41.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2004,58,1.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2004,58,0.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2004,58,0.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2004,58,1.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2004,58,1.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2004,58,0.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2004,58,0.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2004,58,14.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2004,58,3.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2004,58,3.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2004,58,1.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2004,58,1.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2004,58,0.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2004,58,15.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2004,58,2.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2004,58,9.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2004,58,10.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2004,58,1.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2004,58,8.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2004,58,2.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2004,58,0.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2004,58,0.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2004,58,0.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2004,58,1.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2004,58,1.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2004,58,0.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2004,58,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2004,58,12.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2004,58,2.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2004,58,5.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2004,58,9.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2004,58,0.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2004,58,1.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2004,58,0.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2004,58,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2004,58,0.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2004,58,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2004,58,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2004,58,0.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2004,58,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2004,58,0.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2004,58,4.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2004,58,34.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2004,58,1.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2004,58,25.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2004,58,7.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2004,58,1.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2004,58,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2004,58,1.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2004,58,14.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2004,58,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2004,58,15.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2004,58,2.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2004,58,13.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2004,58,2.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2004,58,52.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2004,58,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2004,58,0.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2004,58,0.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2004,58,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2004,58,7.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2004,58,1.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,1.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,2.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,2.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2004,58,1.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2004,58,5.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2004,58,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,5.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,0.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,21.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,5.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,1.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2004,58,0.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2004,58,2.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2004,58,0.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2004,58,3.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2004,58,9.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2004,58,3.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2004,58,4.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2004,58,29.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2004,58,3.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2004,58,1.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2004,58,0.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2004,58,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2004,58,2.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2004,58,0.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2004,58,0.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2004,58,1.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2004,58,1.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2004,58,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2004,58,2.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2004,58,2.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2004,58,1.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2004,58,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2004,58,0.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2004,58,1.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2004,58,0.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2004,58,0.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2004,58,1.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2004,58,4.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2004,58,0.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2004,58,1.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2004,58,1.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2004,58,11.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2004,58,1.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2004,58,0.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2004,58,0.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2004,58,36.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2004,58,2.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2004,58,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2004,58,3.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2004,58,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2004,58,0.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2004,58,0.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2004,58,0.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2004,58,6.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2004,58,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2004,58,6.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2004,58,1.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2004,58,2.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2004,58,219.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2004,58,11.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2004,58,3.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2004,58,0.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2004,58,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,3.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2004,58,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2004,58,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,4.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2004,58,1.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2004,58,0.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2004,58,1.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2004,58,0.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2004,58,1.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2004,58,0.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2004,58,1.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2004,58,0.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2004,58,0.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2004,58,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2004,58,0.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2004,58,3.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2004,58,1.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2004,58,3.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2004,58,3.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2004,58,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2004,58,1.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2004,58,1.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2004,58,0.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2004,58,1.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,0.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,0.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,5.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2004,58,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2004,58,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2004,58,3.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2004,58,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2004,58,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2004,58,0.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2004,58,3.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2004,58,0.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,0.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,2.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2004,58,3.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2004,58,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2004,58,0.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2004,58,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2004,58,0.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2004,58,0.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,4.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,4.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2004,58,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,2.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2004,58,2.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2004,58,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,2.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,3.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,4.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,1.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2004,58,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2004,58,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2004,58,21.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2004,58,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,1.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2004,58,6.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2004,58,2.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2004,58,1.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2004,58,80.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2004,58,0.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,2.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2004,58,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2004,58,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2004,58,3.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2004,58,1.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2004,58,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2004,58,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2004,58,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2004,58,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2004,58,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,1.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2004,58,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2004,58,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,3.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2004,58,1.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,1.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,1.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2004,58,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2004,58,1.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,1.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,3.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,1.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2004,58,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2004,58,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,1.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2004,58,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2004,58,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2004,58,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2004,58,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2004,58,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2004,58,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2004,58,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2004,58,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2004,58,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2004,58,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2004,58,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2004,58,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2004,58,1.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2004,58,1.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2004,58,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2004,58,1.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2004,58,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2004,58,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2004,58,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2004,58,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2004,58,0.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2004,58,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2004,58,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2004,58,27.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2004,58,0.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2004,58,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,3.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2004,58,0.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,0.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2004,58,3.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,5.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,76.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2004,58,0.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2004,58,3.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2004,58,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,1.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2004,58,0.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,1.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,8.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,0.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2004,58,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2004,58,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2004,58,3.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2004,58,6.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2004,58,2.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2004,58,75.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2004,58,3.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2004,58,1.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2004,58,0.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2004,58,6.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2004,59,13.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2004,59,0.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2004,59,83.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2004,59,172.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2004,59,0.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2004,59,316.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2004,59,84.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2004,59,29.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2004,59,1.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2004,59,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2004,59,28.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2004,59,1889.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2004,59,80.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2004,59,0.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2004,59,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2004,59,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2004,59,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2004,59,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2004,59,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2004,59,29.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2004,59,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2004,59,0.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2004,59,11.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2004,59,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2004,59,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2004,59,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2004,59,91.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2004,59,2.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2004,59,2.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2004,59,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2004,59,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2004,59,19.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2004,59,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2004,59,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2004,59,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2004,59,0.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2004,59,83.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2004,59,1.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2004,59,3.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2004,59,14.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2004,59,52.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2004,59,3.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2004,59,10.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2004,59,0.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2004,59,0.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2004,59,27.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2004,59,19.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2004,59,3.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2004,59,1.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2004,59,7.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2004,59,16.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2004,59,1.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2004,59,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2004,59,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2004,59,103.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2004,59,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2004,59,83.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2004,59,79.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2004,59,5.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2004,59,1.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2004,59,0.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2004,59,1.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2004,59,0.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2004,59,0.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2004,59,10.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2004,59,14.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2004,59,1.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2004,59,0.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2004,59,1.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2004,59,2.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2004,59,0.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2004,59,27.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2004,59,4.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2004,59,5.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2004,59,6.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2004,59,2.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2004,59,15.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2004,59,0.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2004,59,0.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2004,59,1.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2004,59,0.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2004,59,1.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2004,59,0.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2004,59,0.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2004,59,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2004,59,12.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2004,59,2.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2004,59,1.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2004,59,15.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2004,59,0.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2004,59,1.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2004,59,2.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2004,59,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2004,59,0.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2004,59,0.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2004,59,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2004,59,3.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2004,59,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2004,59,3.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2004,59,2.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2004,59,1.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2004,59,2.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2004,59,4.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2004,59,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2004,59,1.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2004,59,28.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2004,59,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2004,59,4.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2004,59,0.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2004,59,4.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2004,59,28.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2004,59,7.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2004,59,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2004,59,49.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2004,59,2.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2004,59,0.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2004,59,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2004,59,24.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2004,59,10.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,2.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,1.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,0.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2004,59,1.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2004,59,49.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2004,59,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,0.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,1.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,37.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,6.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,0.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2004,59,0.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2004,59,4.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2004,59,1.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2004,59,4.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2004,59,17.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2004,59,1.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2004,59,3.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2004,59,1.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2004,59,2.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2004,59,2.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2004,59,3.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2004,59,0.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2004,59,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2004,59,2.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2004,59,0.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2004,59,1.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2004,59,1.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2004,59,5.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2004,59,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2004,59,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2004,59,0.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2004,59,3.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2004,59,0.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2004,59,1.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2004,59,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2004,59,0.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2004,59,3.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2004,59,1.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2004,59,0.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2004,59,0.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2004,59,3.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2004,59,0.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2004,59,4.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2004,59,0.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2004,59,2.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2004,59,4.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2004,59,1.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2004,59,2.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2004,59,0.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2004,59,37.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2004,59,2.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2004,59,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2004,59,1.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2004,59,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2004,59,0.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2004,59,4.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2004,59,2.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2004,59,2.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2004,59,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2004,59,3.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2004,59,5.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2004,59,1.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2004,59,128.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2004,59,12.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2004,59,1.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2004,59,0.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2004,59,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,0.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,0.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2004,59,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2004,59,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,2.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,3.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2004,59,3.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2004,59,4.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2004,59,1.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2004,59,2.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2004,59,0.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2004,59,1.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2004,59,4.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2004,59,1.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2004,59,5.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2004,59,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2004,59,0.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2004,59,18.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2004,59,2.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2004,59,6.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2004,59,5.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2004,59,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2004,59,0.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2004,59,1.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2004,59,2.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2004,59,1.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,0.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,0.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,12.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2004,59,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2004,59,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2004,59,4.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2004,59,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2004,59,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2004,59,1.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2004,59,3.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2004,59,1.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,0.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,14.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2004,59,3.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,2.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2004,59,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,0.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2004,59,1.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2004,59,1.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,0.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2004,59,0.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2004,59,0.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,2.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,2.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,4.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2004,59,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,3.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,4.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2004,59,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2004,59,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,1.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,1.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,2.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,1.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,11.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,8.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,1.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2004,59,1.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,1.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2004,59,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,2.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2004,59,30.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,2.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,2.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,7.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2004,59,3.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2004,59,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,4.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2004,59,1.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2004,59,1.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2004,59,120.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2004,59,7.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,2.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2004,59,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2004,59,0.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2004,59,2.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2004,59,4.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,1.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2004,59,0.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2004,59,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2004,59,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2004,59,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2004,59,0.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2004,59,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,2.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2004,59,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,1.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2004,59,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,1.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2004,59,0.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,1.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,2.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2004,59,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2004,59,2.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,1.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,1.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,4.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,1.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2004,59,1.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2004,59,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2004,59,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2004,59,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2004,59,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2004,59,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2004,59,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2004,59,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2004,59,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2004,59,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2004,59,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2004,59,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2004,59,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2004,59,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2004,59,0.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2004,59,0.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2004,59,0.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2004,59,3.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2004,59,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2004,59,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2004,59,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2004,59,0.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2004,59,2.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2004,59,0.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2004,59,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2004,59,118.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2004,59,2.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2004,59,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,4.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2004,59,2.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,1.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2004,59,21.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,35.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,64.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2004,59,0.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,3.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2004,59,13.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2004,59,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,1.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,1.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2004,59,4.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,0.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,2.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,0.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2004,59,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2004,59,1.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2004,59,4.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2004,59,16.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2004,59,4.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2004,59,1.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2004,59,154.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2004,59,1.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2004,59,1.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2004,59,1.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2004,59,0.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2004,59,3.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2004,60,54.0,497775.0,7.58753784418064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2004,60,1.0,71406.0,1.75202360213641,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2004,60,98.0,170000.0,6.97894309672716,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2004,60,128.0,326590.0,13.0269354997862,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2004,60,3.0,84948.0,5.3143842528544,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2004,60,650.0,237623.0,9.67847301001265,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2004,60,211.0,118712.0,4.44379822211137,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2004,60,12.0,55031.0,3.75559391432569,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2004,60,2.0,113629.0,3.55752228123583,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2004,60,0.0,69767.0,1.30409248051432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2004,60,7.0,41636.0,1.0267428677898,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2004,60,1395.0,357462.0,16.0579418461534,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2004,60,80.0,47834.0,3.01186532650811,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2004,60,1.0,79439.0,0.239061865220625,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2004,60,0.0,32503.0,0.447535187472136,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2004,60,0.0,228731.0,1.07253230757737,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2004,60,0.0,111299.0,0.988201397661511,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2004,60,0.0,95856.0,2.40256776869808,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2004,60,0.0,141695.0,1.26404509840706,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2004,60,26.0,1796541.0,43.5034214508943,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2004,60,0.0,45093.0,1.4467393052585,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2004,60,4.0,134063.0,5.26741112158463,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2004,60,3.0,233451.0,2.18173935909109,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2004,60,0.0,45115.0,0.709950612603049,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2004,60,0.0,55410.0,0.296437660731808,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2004,60,0.0,139530.0,0.631287667132081,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2004,60,83.0,271848.0,4.00361343731195,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2004,60,1.0,34165.0,1.11162844953689,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2004,60,1.0,34732.0,0.468397443864443,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2004,60,0.0,41151.0,0.799767638713484,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2004,60,0.0,166723.0,1.05817384288228,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2004,60,28.0,450567.0,4.87282365756123,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2004,60,0.0,62321.0,0.689648542528761,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2004,60,0.0,106034.0,2.35046107967903,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2004,60,0.0,181076.0,6.01853261019798,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2004,60,0.0,125024.0,4.32307568738181,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2004,60,188.0,2076747.0,663.255364363279,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2004,60,3.0,254317.0,67.5563420493356,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2004,60,2.0,232295.0,39.1322439488917,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2004,60,12.0,354674.0,40.2863633064794,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2004,60,51.0,381931.0,22.9092830372147,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2004,60,1.0,243404.0,10.2688792907451,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2004,60,9.0,398169.0,14.0656229346079,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2004,60,3.0,225055.0,1.18682329158005,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2004,60,1.0,241613.0,1.06834927360122,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2004,60,47.0,295481.0,8.9952643931446,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2004,60,12.0,252475.0,5.21545029577073,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2004,60,6.0,91371.0,0.753666612136851,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2004,60,3.0,186324.0,8.28925964606411,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2004,60,9.0,246975.0,12.2957978040923,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2004,60,4.0,166221.0,7.86743654516283,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2004,60,2.0,111384.0,3.57001737823216,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2004,60,0.0,22197.0,0.601760174094507,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2004,60,0.0,17939.0,0.864019858851422,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2004,60,143.0,451161.0,11.6875533401977,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2004,60,0.0,56103.0,1.20376822193032,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2004,60,61.0,188769.0,11.9675028087779,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2004,60,92.0,248070.0,9.3805907154427,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2004,60,6.0,141789.0,4.07763044456134,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2004,60,3.0,108217.0,2.10280957011137,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2004,60,5.0,125443.0,4.57504205434255,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2004,60,3.0,270095.0,12.7525454735326,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2004,60,5.0,64352.0,1.20216509760366,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2004,60,2.0,115909.0,2.45597353565478,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2004,60,6.0,180418.0,19.120921212682,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2004,60,11.0,1199235.0,839.500432511422,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2004,60,0.0,137292.0,21.3389316574604,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2004,60,10.0,143549.0,13.3123435840411,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2004,60,1.0,506511.0,29.4126206050715,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2004,60,3.0,162669.0,23.0688414245933,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2004,60,16.0,202328.0,9.37841420997748,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2004,60,50.0,585348.0,16.2630556233537,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2004,60,8.0,537903.0,18.4065913642955,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2004,60,3.0,406490.0,37.0047092474156,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2004,60,20.0,278786.0,7.56735574469665,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2004,60,1.0,183593.0,28.075755240589,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2004,60,10.0,124711.0,20.6721083092683,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2004,60,0.0,187661.0,17.3909973297158,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2004,60,0.0,254140.0,25.5771352164811,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2004,60,0.0,77096.0,21.4156448082387,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2004,60,0.0,381906.0,24.8931815387521,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2004,60,1.0,197725.0,7.91054747323371,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2004,60,4.0,94582.0,6.65034678250044,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2004,60,0.0,115013.0,3.15159132536872,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2004,60,0.0,64548.0,3.80238450486899,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2004,60,2.0,314838.0,25.2542672390175,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2004,60,0.0,287005.0,29.4958320554222,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2004,60,2.0,946914.0,103.171240326161,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2004,60,10.0,212696.0,8.73322966896068,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2004,60,1.0,128858.0,15.5047420029898,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2004,60,0.0,106122.0,7.90037229364126,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2004,60,1.0,38464.0,1.51017052804644,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2004,60,0.0,38382.0,3.45348000078824,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2004,60,0.0,120890.0,6.55612206083957,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2004,60,1.0,81080.0,2.93562715678619,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2004,60,0.0,125993.0,4.57869724461749,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2004,60,0.0,80417.0,4.50847487020462,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2004,60,0.0,193128.0,18.7517372200979,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2004,60,1.0,52962.0,12.2807659075637,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2004,60,0.0,249510.0,7.91239493825883,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2004,60,1.0,337905.0,39.0956098422305,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,277021.0,54.7079476532478,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2004,60,1.0,53713.0,25.9277013087238,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2004,60,1.0,21828.0,80.8543269875983,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2004,60,4.0,351560.0,42.6572483999993,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,142374.0,33.7030804592357,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2004,60,0.0,70428.0,11.7343986709744,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,187883.0,50.6204157326572,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,98151.0,68.4747434487491,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,93544.0,89.1240881094758,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2004,60,4.0,77728.0,25.7276700987426,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2004,60,0.0,118466.0,22.3046663913982,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2004,60,1.0,180248.0,66.9989071360873,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2004,60,2.0,61027.0,47.0580325209903,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,124003.0,48.7739840119761,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2004,60,16.0,3132391.0,928.489548481749,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2004,60,1.0,92111.0,231.986480341804,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2004,60,4.0,238036.0,18.5708542446932,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2004,60,1.0,243566.0,20.3688695559291,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2004,60,6.0,142422.0,12.1536259110136,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2004,60,11.0,209379.0,21.4043520716582,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2004,60,3.0,104008.0,48.303120703952,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2004,60,9.0,305408.0,30.7580337040903,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2004,60,0.0,63918.0,14.8966418165627,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,40154.0,19.567339591953,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2004,60,13.0,216527.0,45.5418955229611,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,94946.0,26.7949299065649,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,56187.0,34.7409311715249,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2004,60,0.0,93234.0,20.9811617113043,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,61410.0,47.6700207685934,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2004,60,0.0,88757.0,33.344777467342,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2004,60,4.0,503256.0,110.466583911623,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2004,60,20.0,94974.0,48.9637776900273,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,0.0,289701.0,69.3491933324381,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,0.0,71510.0,17.4761465863457,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,0.0,38388.0,13.4219755796427,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,2.0,131347.0,27.4409217433945,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2004,60,2.0,60515.0,61.0281582460238,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2004,60,90.0,114991.0,43.2589584626883,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2004,60,0.0,62935.0,38.574588486301,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,0.0,46150.0,24.2216865467633,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,2.0,49816.0,12.215628537298,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,0.0,63135.0,20.9699505526327,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,10.0,94094.0,30.6902339570053,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,1.0,116942.0,31.0021461831463,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,0.0,59987.0,31.3800198608466,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2004,60,1.0,128402.0,32.6828997159653,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2004,60,4.0,217715.0,62.1648456613897,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2004,60,0.0,82312.0,32.286247789251,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2004,60,2.0,270545.0,130.395101912608,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2004,60,37.0,944210.0,2157.37389491105,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,119412.0,86.0508352040775,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2004,60,1.0,107903.0,35.3954101408756,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2004,60,1.0,160163.0,47.2221783714799,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2004,60,3.0,174769.0,36.3748047807877,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2004,60,1.0,122274.0,47.9758074630283,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2004,60,6.0,70269.0,21.3364737113714,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2004,60,2.0,82921.0,27.2161860803173,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2004,60,1.0,109057.0,41.981806564506,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2004,60,0.0,37045.0,21.1655732741928,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2004,60,0.0,69706.0,26.7033377637739,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2004,60,3.0,113910.0,16.3210378834812,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2004,60,0.0,60962.0,14.4760717856209,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2004,60,0.0,109564.0,28.0400733662213,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,95369.0,72.134859000139,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,49175.0,183.595962659719,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,115806.0,98.1538511104299,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,159627.0,123.740380424584,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,483259.0,229.389253241903,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,105913.0,62.7638736312267,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2004,60,0.0,53052.0,44.8522401925015,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,133347.0,67.0915014635221,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,125342.0,111.947061773893,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2004,60,2.0,949192.0,760.456698593681,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2004,60,0.0,79725.0,92.0766517592609,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2004,60,0.0,290161.0,25.1436024554014,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2004,60,0.0,154903.0,17.6811832932462,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2004,60,0.0,297738.0,33.7327371921691,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2004,60,1.0,188523.0,21.4299188488986,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2004,60,0.0,388607.0,25.9599143486767,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2004,60,0.0,120511.0,12.664016697792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2004,60,1.0,166048.0,30.5752153008948,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2004,60,8.0,784398.0,99.7625303914193,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2004,60,0.0,230356.0,128.321572505478,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2004,60,8.0,259768.0,148.420287201939,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2004,60,0.0,427542.0,83.507589995723,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2004,60,11.0,215732.0,84.2688741070501,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,521636.0,177.551771350504,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,206601.0,220.116891668218,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2004,60,0.0,517340.0,114.312445166987,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2004,60,0.0,146446.0,271.926692656358,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2004,60,28.0,3172687.0,2535.98509774006,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2004,60,1.0,232676.0,240.921996539732,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2004,60,0.0,2238.0,172.230179559824,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2004,60,6.0,90123.0,34.3155695154929,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2004,60,0.0,74153.0,54.3032197861807,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2004,60,0.0,174068.0,56.7995777771608,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2004,60,2.0,92614.0,51.2921572463254,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2004,60,0.0,175325.0,73.3079614837539,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2004,60,7.0,391818.0,161.529666306937,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2004,60,0.0,35650.0,38.0982320985532,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,143643.0,77.9538280596964,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2004,60,5.0,280471.0,71.1151418281898,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2004,60,0.0,61865.0,61.4632481838997,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2004,60,78.0,1080373.0,603.273382828922,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2004,60,2.0,259597.0,87.3819221689468,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2004,60,4.0,121210.0,70.8245715547484,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2004,60,0.0,146348.0,26.8739447975958,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2004,60,0.0,64645.0,34.6166624662027,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,1.0,61211.0,49.3301021667148,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,1.0,156108.0,137.983423458317,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2004,60,0.0,106382.0,52.8111111536252,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2004,60,0.0,109411.0,72.5658884435456,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,11.0,92609.0,87.7982874045152,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,41773.0,54.5597582461927,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,0.0,52380.0,36.6098968131153,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,1.0,82265.0,111.051306608488,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2004,60,5.0,750295.0,860.027269203793,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2004,60,2.0,152957.0,83.1995933953319,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2004,60,3.0,118212.0,58.4032411468841,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2004,60,1.0,227838.0,4.31065288315114,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2004,60,1.0,110808.0,4.89824822147364,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2004,60,3.0,180412.0,4.29666265206272,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2004,60,7.0,440824.0,8.0567885569076,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2004,60,1.0,159084.0,12.7681151472222,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2004,60,1.0,166666.0,5.1185177870275,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2004,60,0.0,166679.0,11.5449895447607,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2004,60,1.0,257698.0,15.5011168743956,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2004,60,10.0,356747.0,19.5629861857762,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2004,60,8.0,309766.0,16.4626430483011,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2004,60,3.0,246529.0,14.9716310943496,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2004,60,8.0,942361.0,73.9390875508471,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2004,60,0.0,110468.0,13.7806148599876,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2004,60,0.0,303482.0,16.2371313502779,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2004,60,0.0,300727.0,34.7578778120167,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2004,60,15.0,379881.0,35.6748892330403,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2004,60,0.0,298291.0,51.9014930260307,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,0.0,114277.0,26.1119424182894,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,1.0,196509.0,71.4964197993098,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,0.0,527080.0,92.4529128830594,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,10.0,3290957.0,1138.5595892601,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2004,60,0.0,183518.0,11.4124143425527,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2004,60,0.0,261022.0,12.5818844143052,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2004,60,5.0,527362.0,30.6572943031525,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2004,60,0.0,94207.0,18.3143540116992,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2004,60,0.0,361664.0,15.4284371464869,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2004,60,0.0,268958.0,17.5322838375989,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2004,60,20.0,649056.0,34.4968259761742,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2004,60,1.0,225907.0,20.0358054813283,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,0.0,241960.0,42.0563441688915,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,47.0,1079089.0,50.7666931175364,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2004,60,9.0,702247.0,25.3387653307434,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,0.0,143185.0,5.22453816652767,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,0.0,206318.0,5.89323297449907,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,3.0,266967.0,8.03831268166928,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2004,60,0.0,247426.0,16.4536385214794,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,207685.0,11.644858806037,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,5.0,158965.0,6.90513784643753,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2004,60,1.0,573251.0,25.6602912602577,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,0.0,41375.0,4.56607020390943,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,0.0,65622.0,8.29128803177726,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2004,60,0.0,81991.0,11.0976397692623,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,1.0,193739.0,16.1252004426308,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2004,60,0.0,153105.0,14.9082867769705,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2004,60,0.0,86297.0,17.0888377051803,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,8.0,174326.0,11.278168269357,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,255878.0,22.023979672641,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,3.0,117545.0,13.8578915105012,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,5.0,134514.0,15.4063080733447,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,17.0,772559.0,41.1204907802238,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2004,60,0.0,197992.0,16.5538798328571,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,0.0,249333.0,23.2497884410526,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,0.0,159120.0,9.42335172287032,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,7.0,315478.0,33.8080810436201,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2004,60,0.0,181593.0,12.9069217822751,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,0.0,93676.0,8.85173975574102,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2004,60,0.0,147571.0,10.7672340420946,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,2.0,156510.0,20.900185525232,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,1.0,378248.0,44.2756303944952,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,88411.0,12.9674503726029,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,114829.0,64.8616814330089,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,4.0,4681468.0,803.229757026377,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,5.0,365358.0,45.3633902052998,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,58975.0,24.3949698059567,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,164051.0,52.0491617687172,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,2.0,232692.0,78.5172339836612,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,128017.0,22.2248373387554,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,82635.0,18.0332354194457,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,66.0,404528.0,35.7445892840244,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,59847.0,32.3539093400423,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,10.0,506609.0,116.428035432148,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,245084.0,44.2496036964426,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,43.0,144935.0,17.3904779312314,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,0.0,79379.0,10.3167254498533,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,1.0,432027.0,85.0839374247224,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2004,60,0.0,150544.0,32.9676809140229,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,110473.0,41.0161203736368,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,124681.0,31.0856375152445,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2004,60,0.0,222922.0,31.4289380522014,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,269588.0,52.1214260442474,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,223776.0,44.7567184370765,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,434655.0,57.3705838846938,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,329747.0,71.1816124709638,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,308536.0,62.7385922233044,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,135602.0,41.3934933240375,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,208240.0,54.1490978344793,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,75001.0,14.8836928146213,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,190266.0,63.8095528772597,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,141892.0,41.0448354672941,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,178256.0,30.9619077965479,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,215323.0,64.157531957197,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,187853.0,38.6149414899178,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,2.0,264793.0,54.7364165429784,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,223576.0,46.3386705852858,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,271126.0,57.2513085721771,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,257361.0,71.5268732758468,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2004,60,1.0,705926.0,79.0217275545668,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,214469.0,54.9174955078275,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,86386.0,21.375073387591,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,119013.0,32.4476826200831,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,3.0,192500.0,44.3499376426704,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,2.0,50734.0,17.2053939265297,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,170880.0,36.9199694655267,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,2.0,269079.0,38.7204519065861,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2004,60,1.0,132817.0,34.6324738259484,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,103634.0,31.5452306497378,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2004,60,66.0,1476878.0,1034.97992337484,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,179466.0,85.3070861096123,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2004,60,1.0,160570.0,46.4500322773118,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,334423.0,81.2660331010452,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,75644.0,59.6800248722344,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,187742.0,59.8692526856054,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,122593.0,54.6964679652679,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,546722.0,76.3305661563614,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,196802.0,76.2214312186259,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,151430.0,91.4499623224419,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,60351.0,47.6507161710657,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2004,60,0.0,225717.0,108.445752034116,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2004,60,1.0,28697.0,15.8240683237886,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,94125.0,57.3804575204768,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,449352.0,229.131939823551,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2004,60,2.0,661213.0,173.373236367708,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,170635.0,72.0631572997004,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2004,60,3.0,168950.0,101.038325455239,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,158389.0,100.993852916263,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,470702.0,263.702139150113,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,104834.0,73.9357164272936,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,193293.0,220.06496483781,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2004,60,220.0,11212203.0,2462.35102713481,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,149731.0,38.0137462349147,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,103048.0,36.6251198795101,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2004,60,1.0,132660.0,41.3560621093586,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,5.0,733105.0,70.339453449464,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,214632.0,94.6913285735434,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,44192.0,19.2498595853267,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,1.0,59967.0,29.8479089986613,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,74844.0,30.9137456651733,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2004,60,0.0,131623.0,48.4589255209423,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2004,60,1.0,202608.0,36.5399931138039,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2004,60,4.0,94675.0,46.9590897466089,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2004,60,0.0,382169.0,110.920371523195,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2004,60,1.0,406165.0,85.5972756659683,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2004,60,7.0,936052.0,155.84085314017,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2004,60,0.0,103923.0,33.77316770366,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,177877.0,25.8867222234488,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,243822.0,45.4081249001832,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,243558.0,54.0936635121679,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,154386.0,39.8788032284035,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2004,60,0.0,551454.0,64.9617603182342,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2004,60,0.0,333815.0,82.6595020744273,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2004,60,0.0,172291.0,29.1948016740032,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2004,60,0.0,195510.0,44.8643243071507,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2004,60,1.0,479368.0,76.304502298683,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2004,60,0.0,296403.0,93.4604040757321,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2004,60,0.0,237923.0,80.777048867915,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,554422.0,238.467203959163,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,534382.0,141.400422810447,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,179202.0,101.615695496742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,414995.0,76.4680823621291,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2004,60,2.0,375312.0,160.624207232827,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,2432017.0,782.24755864739,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,173215.0,108.247223381356,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,108234.0,37.7505174880587,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,150651.0,41.0471533274177,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2004,60,0.0,572525.0,32.7287654754447,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,111991.0,48.6823755385032,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,329407.0,67.4100562260001,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,259947.0,36.4054901315026,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,287497.0,51.6572543397273,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2004,60,0.0,244924.0,31.8376431673654,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,178884.0,48.0046028857471,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,234850.0,105.213939821774,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,144347.0,21.9170122465507,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,195511.0,47.1891950350833,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,1255666.0,295.863420023173,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,577198.0,717.741505261926,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,465672.0,148.371756498845,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,69673.0,68.5184517679546,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,1339537.0,333.407364947794,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2004,60,0.0,394579.0,145.945297822516,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,26454.0,12.6245899540626,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,72433.0,16.3854722136067,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,10.0,264137.0,138.603773060019,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,0.0,261415.0,23.4319217749329,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2004,60,1.0,214194.0,105.065999742291,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,1.0,1784900.0,2631.01921432407,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,437204.0,733.117138942442,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,1335808.0,1718.3844014263,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,926877.0,631.545172033835,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,6.0,13350324.0,5657.33027865506,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2004,60,0.0,1292257.0,627.666752093404,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2004,60,8.0,1418784.0,1041.87916411129,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,2.0,261497.0,25.7062251573967,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,243672.0,23.752915210513,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,128516.0,31.7349528432275,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,116655.0,24.0156994307767,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,209059.0,29.5452361490822,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,2.0,176179.0,34.4688581398175,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,82284.0,34.7932930720827,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,33634.0,25.829912055253,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,1.0,496986.0,319.377803944383,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,269970.0,119.17883428359,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,1.0,688230.0,195.740423833544,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,44612.0,19.5973635196043,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,134758.0,21.8612453437944,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,3.0,70851.0,31.3728517231854,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,1.0,180966.0,39.9815655427111,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,119552.0,43.3400942532041,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,75867.0,24.9619798740141,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,97287.0,30.7977278638807,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,149469.0,15.8020530423333,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,101235.0,17.7850088438667,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,411541.0,61.6124790347086,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,1.0,341189.0,39.0488073567653,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,418391.0,48.9243475852125,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,1.0,441646.0,79.543583122235,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,91601.0,39.419378075495,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,225179.0,41.6065326930201,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,153024.0,39.2038518460057,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,82916.0,16.8523360559371,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,379021.0,23.3966520472627,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,87840.0,16.2490389291624,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,121925.0,20.0695333786727,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,94469.0,33.2826232332211,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,117545.0,21.4990612770426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,58037.0,22.939077015428,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,29031.0,8.40609330123311,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,48860.0,21.2562656726261,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,3000314.0,352.043891756308,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2004,60,0.0,267071.0,43.816897932953,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2004,60,0.0,84509.0,34.5336404494541,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,163133.0,38.2744678871547,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,371901.0,61.7507222448824,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,148643.0,30.6600904595204,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,325210.0,36.0006197881198,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,141577.0,45.0131570714882,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,238392.0,25.3529702923134,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,1.0,128074.0,67.0864433107921,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,756798.0,163.008428638797,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,121305.0,18.4189362529952,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,292958.0,18.6068029209184,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,187414.0,35.392435165889,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,601631.0,127.152412528782,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,470454.0,306.341830787361,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,51119.0,33.6062120635895,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,72877.0,34.2108637986553,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,1.0,801471.0,276.623188771319,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2004,60,0.0,23149.0,9.86881580573371,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,358310.0,77.3779650126823,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,348757.0,165.012448857802,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2004,60,0.0,171005.0,57.5512397754223,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,162290.0,46.9406439516144,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,143291.0,37.588168020131,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,177090.0,34.0037471392145,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,217024.0,38.2735375011436,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2004,60,0.0,59806.0,19.4332082460466,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,67368.0,30.3482684974022,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,207572.0,19.1705217786519,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,182529.0,35.8390157702897,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,161589.0,33.0736373839201,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2004,60,0.0,316921.0,44.7785051837339,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,158784.0,18.8594672710136,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,42134.0,28.1135084419871,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2004,60,0.0,71940.0,19.9317984189099,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2004,60,0.0,120514.0,33.2025356276372,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2004,60,0.0,157973.0,9.16763077093294,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2004,60,0.0,715479.0,143.861562469377,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,114175.0,10.1763090922387,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,368818.0,31.4336635599809,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,67792.0,22.5735762054302,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,314252.0,56.5202239642834,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,293639.0,72.5734928450695,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,159746.0,21.0552127974004,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,192617.0,92.9857017543796,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2004,60,0.0,291111.0,111.663488445249,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,138847.0,28.4502528815738,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,3664821.0,654.175128287667,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,318004.0,36.1688437003691,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,129905.0,22.0803811569677,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,396244.0,12.7499912496703,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,201673.0,11.6611110030982,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,177926.0,12.4904716564076,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,120569.0,7.3432458832006,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,496268.0,48.0300763914432,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,58354.0,9.20841159451613,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2004,60,0.0,258998.0,27.9637470243677,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2004,60,0.0,130041.0,1.56614860089804,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2004,60,0.0,103417.0,3.72747580107905,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2004,60,7.0,111161.0,2.66796739837179,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2004,60,3.0,800280.0,28.3293452422708,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2004,60,1.0,51956.0,3.2301010880901,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2004,60,1.0,73984.0,4.3048513223468,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2004,60,0.0,136361.0,2.8857089010351,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2004,60,0.0,80104.0,5.94756187267739,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2004,60,0.0,107680.0,4.76919472607364,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2004,60,1.0,433793.0,11.601100915841,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2004,60,2.0,201925.0,8.98165995194572,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2004,60,1.0,110628.0,0.892076067990696,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2004,60,0.0,90109.0,1.75303845726515,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2004,60,80.0,126471.0,2.95727743301194,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2004,60,0.0,76940.0,1.29094861092421,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2004,60,0.0,77060.0,1.40316204806349,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,3.0,127176.0,2.3315807006207,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2004,60,8.0,162219.0,3.2416256985398,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,2.0,28896.0,0.617910427552407,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2004,60,54.0,103635.0,1.22007218957318,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,107.0,85273.0,1.41179873702831,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,28.0,64230.0,2.00787213244178,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2004,60,1.0,65629.0,2.09274464501055,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,0.0,130355.0,5.83944372352824,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2004,60,25.0,101525.0,5.37766527043679,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2004,60,0.0,28172.0,4.20393586843679,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,0.0,32180.0,3.48440637040503,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,4.0,813059.0,29.4479778616674,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2004,60,0.0,130348.0,2.44456011521771,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,1.0,76872.0,7.49736145991338,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,2.0,50632.0,1.86987437994169,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,8.0,242422.0,9.93548488914989,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2004,60,0.0,25314.0,2.36278767250821,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2004,60,1.0,75253.0,3.08674816100044,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2004,60,1.0,92537.0,4.57030822862534,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2004,60,17.0,53606.0,4.8496338150262,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2004,60,28.0,219354.0,6.23917702032887,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2004,60,0.0,59237.0,2.78126292765888,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2004,60,1.0,214436.0,16.2957206549943,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2004,60,5.0,497653.0,59.4741634491459,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2004,60,1.0,62250.0,8.80299499777837,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2004,60,0.0,103507.0,18.9563709650989,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2004,60,217.0,1910880.0,282.886742401407,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2004,60,0.0,95217.0,5.47887499947657,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2004,60,1.0,990969.0,25.9711196106748,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2004,60,4.0,373735.0,6.66701163519072,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2004,60,0.0,107679.0,7.91558057264513,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2004,60,1.0,338730.0,16.0375389838248,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2004,60,2.0,91936.0,9.65112812594905,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2004,60,0.0,125359.0,8.2316852782594,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2004,60,0.0,95907.0,5.9660734506892,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2004,60,5.0,2282049.0,394.527917062379,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2005,61,66.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2005,61,11.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2005,61,277.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2005,61,217.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2005,61,56.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2005,61,824.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2005,61,468.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2005,61,17.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2005,61,1.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2005,61,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2005,61,6.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2005,61,1346.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2005,61,103.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2005,61,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2005,61,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2005,61,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2005,61,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2005,61,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2005,61,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2005,61,67.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2005,61,1.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2005,61,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2005,61,9.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2005,61,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2005,61,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2005,61,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2005,61,87.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2005,61,0.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2005,61,3.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2005,61,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2005,61,1.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2005,61,141.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2005,61,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2005,61,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2005,61,0.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2005,61,0.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2005,61,145.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2005,61,4.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2005,61,11.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2005,61,10.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2005,61,140.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2005,61,41.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2005,61,68.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2005,61,3.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2005,61,25.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2005,61,60.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2005,61,60.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2005,61,12.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2005,61,46.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2005,61,56.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2005,61,58.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2005,61,15.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2005,61,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2005,61,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2005,61,182.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2005,61,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2005,61,145.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2005,61,179.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2005,61,79.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2005,61,4.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2005,61,4.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2005,61,22.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2005,61,9.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2005,61,0.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2005,61,8.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2005,61,35.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2005,61,8.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2005,61,13.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2005,61,4.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2005,61,24.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2005,61,31.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2005,61,82.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2005,61,11.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2005,61,17.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2005,61,27.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2005,61,1.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2005,61,18.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2005,61,6.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2005,61,1.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2005,61,1.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2005,61,3.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2005,61,23.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2005,61,1.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2005,61,9.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2005,61,0.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2005,61,32.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2005,61,79.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2005,61,0.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2005,61,57.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2005,61,2.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2005,61,0.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2005,61,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2005,61,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2005,61,0.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2005,61,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2005,61,0.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2005,61,0.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2005,61,0.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2005,61,0.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2005,61,11.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2005,61,3.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2005,61,2.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2005,61,1.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2005,61,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2005,61,8.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2005,61,1.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2005,61,0.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2005,61,1.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2005,61,0.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2005,61,0.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2005,61,7.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2005,61,2.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2005,61,3.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2005,61,1.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2005,61,0.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2005,61,44.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2005,61,2.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2005,61,11.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2005,61,0.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2005,61,129.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2005,61,56.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2005,61,1.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2005,61,58.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2005,61,2.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2005,61,9.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2005,61,779.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2005,61,38.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2005,61,2.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2005,61,0.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2005,61,0.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2005,61,0.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2005,61,11.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2005,61,16.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,0.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,4.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,0.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,2.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2005,61,1.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2005,61,119.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2005,61,2.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,1.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,9.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,19.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,6.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,2.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,0.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2005,61,16.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2005,61,4.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2005,61,1.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2005,61,11.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2005,61,64.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2005,61,26.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2005,61,25.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2005,61,60.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2005,61,8.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2005,61,7.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2005,61,0.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2005,61,2.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2005,61,2.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2005,61,0.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2005,61,8.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2005,61,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2005,61,1.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2005,61,1.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2005,61,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2005,61,0.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2005,61,1.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2005,61,2.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2005,61,0.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2005,61,9.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2005,61,1.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2005,61,4.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2005,61,0.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2005,61,3.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2005,61,2.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2005,61,1.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2005,61,0.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2005,61,3.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2005,61,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2005,61,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2005,61,12.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2005,61,1.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2005,61,11.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2005,61,0.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2005,61,4.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2005,61,4.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2005,61,3.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2005,61,3.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2005,61,25.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2005,61,4.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2005,61,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2005,61,2.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2005,61,1.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2005,61,2.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2005,61,1.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2005,61,0.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2005,61,2.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2005,61,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2005,61,1.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2005,61,1.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2005,61,0.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2005,61,66.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2005,61,6.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2005,61,1.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2005,61,2.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2005,61,1.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2005,61,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2005,61,4.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2005,61,0.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2005,61,3.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2005,61,1.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2005,61,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2005,61,5.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2005,61,40.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2005,61,12.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2005,61,1.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2005,61,44.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2005,61,2.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2005,61,257.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2005,61,14.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2005,61,178.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2005,61,10.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2005,61,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2005,61,43.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2005,61,1.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2005,61,20.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2005,61,1.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,0.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,2.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,13.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2005,61,4.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2005,61,1.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2005,61,7.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2005,61,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2005,61,1.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2005,61,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2005,61,83.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2005,61,1.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,0.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,75.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2005,61,2.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,0.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,1.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2005,61,1.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2005,61,0.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2005,61,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2005,61,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2005,61,0.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,54.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,53.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2005,61,1.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,1.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,3.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,16.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2005,61,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,1.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2005,61,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,2.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,1.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,17.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,1.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,2.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,2.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,24.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,58.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,3.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2005,61,1.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2005,61,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,1.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,1.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,1.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,82.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2005,61,63.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2005,61,1.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2005,61,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2005,61,3.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2005,61,4.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2005,61,102.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2005,61,2.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,9.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,2.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2005,61,2.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2005,61,0.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2005,61,4.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2005,61,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2005,61,3.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2005,61,32.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2005,61,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,1.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,6.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2005,61,0.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2005,61,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2005,61,1.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2005,61,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2005,61,1.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2005,61,2.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2005,61,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2005,61,1.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,2.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2005,61,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,2.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2005,61,1.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,1.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,2.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,1.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2005,61,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,5.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2005,61,0.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,2.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,2.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,1.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,37.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2005,61,2.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2005,61,25.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,3.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,3.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,4.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,3.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,3.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,3.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,15.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,2.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,2.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2005,61,1.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2005,61,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,2.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,1.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2005,61,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,1.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2005,61,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,2.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,1.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,1.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2005,61,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2005,61,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2005,61,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2005,61,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2005,61,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2005,61,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,1.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,1.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2005,61,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,4.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,1.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2005,61,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2005,61,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2005,61,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2005,61,3.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2005,61,2.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2005,61,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2005,61,5.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2005,61,0.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2005,61,1.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2005,61,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2005,61,1.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2005,61,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2005,61,6.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2005,61,4.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2005,61,98.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2005,61,2.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2005,61,1.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,18.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2005,61,60.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,16.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2005,61,17.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,106.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,159.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2005,61,0.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,5.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2005,61,18.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2005,61,1.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,5.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2005,61,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,8.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,3.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,3.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2005,61,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2005,61,2.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2005,61,1.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2005,61,21.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2005,61,45.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2005,61,0.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2005,61,3.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2005,61,8.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2005,61,4.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2005,61,1.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2005,61,567.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2005,61,0.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2005,61,8.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2005,61,15.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2005,61,6.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2005,61,3.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2005,61,2.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2005,61,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2005,61,17.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2005,61,35.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2005,62,90.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2005,62,10.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2005,62,239.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2005,62,255.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2005,62,53.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2005,62,385.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2005,62,303.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2005,62,9.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2005,62,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2005,62,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2005,62,3.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2005,62,454.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2005,62,30.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2005,62,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2005,62,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2005,62,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2005,62,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2005,62,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2005,62,1.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2005,62,91.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2005,62,7.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2005,62,4.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2005,62,5.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2005,62,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2005,62,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2005,62,1.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2005,62,142.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2005,62,2.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2005,62,2.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2005,62,1.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2005,62,4.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2005,62,309.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2005,62,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2005,62,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2005,62,3.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2005,62,4.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2005,62,275.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2005,62,13.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2005,62,11.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2005,62,12.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2005,62,158.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2005,62,17.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2005,62,47.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2005,62,2.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2005,62,97.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2005,62,105.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2005,62,128.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2005,62,10.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2005,62,79.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2005,62,84.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2005,62,99.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2005,62,30.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2005,62,1.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2005,62,1.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2005,62,382.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2005,62,3.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2005,62,197.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2005,62,185.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2005,62,77.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2005,62,15.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2005,62,10.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2005,62,87.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2005,62,7.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2005,62,0.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2005,62,7.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2005,62,95.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2005,62,5.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2005,62,11.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2005,62,9.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2005,62,11.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2005,62,22.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2005,62,120.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2005,62,46.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2005,62,94.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2005,62,17.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2005,62,4.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2005,62,67.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2005,62,13.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2005,62,1.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2005,62,2.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2005,62,6.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2005,62,45.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2005,62,9.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2005,62,6.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2005,62,2.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2005,62,51.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2005,62,66.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2005,62,9.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2005,62,88.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2005,62,13.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2005,62,3.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2005,62,12.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2005,62,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2005,62,2.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2005,62,7.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2005,62,1.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2005,62,1.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2005,62,1.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2005,62,2.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2005,62,5.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2005,62,2.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2005,62,4.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2005,62,0.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2005,62,13.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2005,62,6.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2005,62,7.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2005,62,56.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2005,62,61.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2005,62,7.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2005,62,94.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2005,62,87.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2005,62,1.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2005,62,18.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2005,62,2.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2005,62,8.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2005,62,1054.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2005,62,24.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2005,62,0.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2005,62,0.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2005,62,1.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2005,62,3.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2005,62,14.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2005,62,3.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,1.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,1.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,1.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,2.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2005,62,4.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2005,62,142.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2005,62,1.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,2.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,14.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,21.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,33.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,8.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,4.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2005,62,16.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2005,62,6.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2005,62,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2005,62,6.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2005,62,67.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2005,62,0.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2005,62,42.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2005,62,33.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2005,62,132.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2005,62,17.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2005,62,5.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2005,62,1.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2005,62,81.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2005,62,6.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2005,62,1.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2005,62,13.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2005,62,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2005,62,0.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2005,62,1.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2005,62,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2005,62,0.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2005,62,1.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2005,62,1.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2005,62,2.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2005,62,7.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2005,62,1.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2005,62,0.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2005,62,9.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2005,62,0.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2005,62,18.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2005,62,13.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2005,62,7.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2005,62,0.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2005,62,7.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2005,62,1.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2005,62,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2005,62,25.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2005,62,4.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2005,62,4.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2005,62,1.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2005,62,1.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2005,62,6.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2005,62,4.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2005,62,10.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2005,62,3.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2005,62,26.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2005,62,9.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2005,62,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2005,62,3.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2005,62,47.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2005,62,2.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2005,62,190.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2005,62,7.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2005,62,5.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2005,62,1.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2005,62,3.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2005,62,6.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2005,62,0.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2005,62,51.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2005,62,7.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2005,62,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2005,62,1.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2005,62,0.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,1.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,0.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2005,62,0.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2005,62,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,6.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,0.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,2.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2005,62,3.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2005,62,1.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2005,62,8.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2005,62,1.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2005,62,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2005,62,4.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2005,62,88.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2005,62,18.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2005,62,3.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2005,62,11.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2005,62,3.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2005,62,670.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2005,62,53.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2005,62,324.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2005,62,21.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2005,62,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2005,62,52.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2005,62,6.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2005,62,54.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2005,62,1.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,14.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,2.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,18.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2005,62,5.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2005,62,10.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2005,62,13.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2005,62,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2005,62,1.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2005,62,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2005,62,97.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2005,62,2.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,1.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,234.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2005,62,8.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,0.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,5.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2005,62,2.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2005,62,6.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2005,62,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2005,62,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2005,62,1.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,5.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,169.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,230.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2005,62,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,6.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,73.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,45.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2005,62,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,2.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2005,62,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,0.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,24.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,4.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,1.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,1.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,13.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,7.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,162.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,17.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,2.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,6.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2005,62,0.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2005,62,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,1.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2005,62,4.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,254.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,16.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,2.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,4.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2005,62,1.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2005,62,70.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,1.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2005,62,1.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,1.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,3.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,1.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2005,62,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,3.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2005,62,2.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,1.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2005,62,84.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,1.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2005,62,5.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,129.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,2.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,1.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2005,62,4.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2005,62,9.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2005,62,6.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2005,62,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2005,62,7.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2005,62,76.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2005,62,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,2.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,3.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,2.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,2.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2005,62,2.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2005,62,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2005,62,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2005,62,1.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2005,62,1.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2005,62,3.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2005,62,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2005,62,1.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2005,62,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,1.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2005,62,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,1.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2005,62,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,2.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2005,62,0.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,2.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,1.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,24.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2005,62,1.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2005,62,34.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,5.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,2.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,5.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,2.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,1.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,23.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,2.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,9.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,1.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,1.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,1.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2005,62,1.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2005,62,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,1.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,1.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,3.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,1.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,1.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,3.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2005,62,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2005,62,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,1.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2005,62,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2005,62,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2005,62,2.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2005,62,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2005,62,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2005,62,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2005,62,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,3.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,1.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2005,62,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2005,62,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2005,62,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2005,62,6.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2005,62,8.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2005,62,1.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2005,62,29.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2005,62,3.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2005,62,2.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2005,62,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2005,62,5.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2005,62,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2005,62,10.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2005,62,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2005,62,71.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2005,62,4.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2005,62,2.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,82.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2005,62,107.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,137.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2005,62,53.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,98.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,319.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2005,62,0.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,13.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2005,62,3.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2005,62,4.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,29.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2005,62,1.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,29.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,16.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,4.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2005,62,1.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2005,62,1.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2005,62,2.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2005,62,47.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2005,62,22.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2005,62,0.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2005,62,5.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2005,62,10.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2005,62,4.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2005,62,3.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2005,62,1402.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2005,62,0.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2005,62,4.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2005,62,42.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2005,62,2.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2005,62,2.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2005,62,1.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2005,62,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2005,62,45.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2005,62,44.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2005,63,63.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2005,63,11.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2005,63,183.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2005,63,328.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2005,63,48.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2005,63,216.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2005,63,246.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2005,63,14.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2005,63,1.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2005,63,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2005,63,4.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2005,63,166.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2005,63,17.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2005,63,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2005,63,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2005,63,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2005,63,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2005,63,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2005,63,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2005,63,164.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2005,63,1.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2005,63,4.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2005,63,11.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2005,63,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2005,63,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2005,63,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2005,63,197.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2005,63,0.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2005,63,14.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2005,63,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2005,63,27.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2005,63,420.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2005,63,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2005,63,2.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2005,63,4.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2005,63,4.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2005,63,179.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2005,63,6.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2005,63,16.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2005,63,24.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2005,63,107.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2005,63,36.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2005,63,40.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2005,63,5.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2005,63,25.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2005,63,144.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2005,63,157.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2005,63,9.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2005,63,52.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2005,63,51.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2005,63,88.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2005,63,86.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2005,63,1.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2005,63,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2005,63,544.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2005,63,1.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2005,63,180.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2005,63,78.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2005,63,22.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2005,63,11.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2005,63,11.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2005,63,179.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2005,63,6.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2005,63,2.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2005,63,3.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2005,63,151.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2005,63,34.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2005,63,9.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2005,63,11.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2005,63,20.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2005,63,38.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2005,63,91.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2005,63,82.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2005,63,58.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2005,63,165.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2005,63,12.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2005,63,44.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2005,63,58.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2005,63,18.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2005,63,7.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2005,63,41.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2005,63,94.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2005,63,46.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2005,63,14.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2005,63,2.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2005,63,162.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2005,63,50.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2005,63,24.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2005,63,140.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2005,63,79.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2005,63,3.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2005,63,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2005,63,2.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2005,63,12.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2005,63,13.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2005,63,1.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2005,63,0.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2005,63,8.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2005,63,2.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2005,63,15.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2005,63,2.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2005,63,1.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2005,63,15.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2005,63,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2005,63,9.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2005,63,0.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2005,63,0.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2005,63,0.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2005,63,2.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2005,63,0.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2005,63,13.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2005,63,20.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2005,63,27.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2005,63,3.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2005,63,0.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2005,63,120.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2005,63,1.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2005,63,158.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2005,63,23.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2005,63,200.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2005,63,30.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2005,63,1.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2005,63,35.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2005,63,0.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2005,63,181.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2005,63,251.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2005,63,12.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2005,63,1.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2005,63,29.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2005,63,2.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2005,63,1.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2005,63,55.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2005,63,16.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,3.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,6.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,49.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,0.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2005,63,10.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2005,63,318.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2005,63,3.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,8.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,4.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,26.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,42.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,5.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,8.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2005,63,13.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2005,63,13.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2005,63,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2005,63,3.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2005,63,101.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2005,63,1.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2005,63,140.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2005,63,244.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2005,63,171.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2005,63,68.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2005,63,23.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2005,63,3.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2005,63,144.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2005,63,24.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2005,63,2.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2005,63,17.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2005,63,4.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2005,63,7.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2005,63,1.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2005,63,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2005,63,1.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2005,63,0.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2005,63,2.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2005,63,2.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2005,63,2.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2005,63,3.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2005,63,8.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2005,63,20.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2005,63,1.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2005,63,36.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2005,63,52.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2005,63,19.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2005,63,1.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2005,63,49.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2005,63,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2005,63,1.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2005,63,35.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2005,63,3.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2005,63,9.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2005,63,2.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2005,63,8.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2005,63,8.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2005,63,1.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2005,63,3.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2005,63,1.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2005,63,33.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2005,63,24.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2005,63,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2005,63,13.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2005,63,15.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2005,63,7.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2005,63,130.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2005,63,33.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2005,63,6.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2005,63,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2005,63,0.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2005,63,3.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2005,63,1.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2005,63,52.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2005,63,3.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2005,63,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2005,63,1.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2005,63,0.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,1.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,0.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2005,63,0.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2005,63,2.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,24.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,1.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,0.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2005,63,18.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2005,63,3.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2005,63,14.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2005,63,6.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2005,63,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2005,63,70.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2005,63,89.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2005,63,66.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2005,63,42.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2005,63,54.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2005,63,9.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2005,63,1412.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2005,63,338.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2005,63,793.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2005,63,51.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2005,63,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2005,63,128.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2005,63,7.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2005,63,107.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2005,63,20.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,29.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,10.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,49.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2005,63,10.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2005,63,72.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2005,63,45.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2005,63,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2005,63,6.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2005,63,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2005,63,191.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2005,63,11.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,7.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,1146.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2005,63,25.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,1.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,1.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,15.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2005,63,1.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,1.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2005,63,99.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,1.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2005,63,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,1.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2005,63,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2005,63,4.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,4.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,353.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,373.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2005,63,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,1.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,244.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,287.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2005,63,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,1.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2005,63,3.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,2.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,19.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,40.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,1.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,8.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,11.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,598.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,13.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,4.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,31.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2005,63,8.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,1.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2005,63,1.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,1.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,2.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2005,63,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,166.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,122.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,3.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2005,63,3.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2005,63,185.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,4.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2005,63,1.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,4.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,2.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2005,63,1.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2005,63,1.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,2.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2005,63,2.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2005,63,5.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2005,63,44.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,10.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2005,63,10.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,480.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,2.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2005,63,18.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2005,63,14.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2005,63,30.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2005,63,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2005,63,5.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2005,63,112.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2005,63,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,1.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2005,63,12.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2005,63,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2005,63,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2005,63,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2005,63,4.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2005,63,3.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2005,63,1.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2005,63,1.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,1.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2005,63,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2005,63,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2005,63,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,1.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2005,63,0.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,2.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,1.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,2.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,2.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,46.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2005,63,3.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2005,63,144.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,77.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,2.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,3.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,3.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,3.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,10.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,4.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,6.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,1.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,26.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,1.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,119.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,1.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,1.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2005,63,1.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2005,63,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,1.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,1.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,2.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,1.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,2.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2005,63,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2005,63,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,1.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,1.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,1.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2005,63,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2005,63,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2005,63,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2005,63,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2005,63,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2005,63,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2005,63,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2005,63,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2005,63,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2005,63,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2005,63,1.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2005,63,14.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2005,63,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2005,63,115.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2005,63,3.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2005,63,22.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2005,63,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2005,63,0.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2005,63,1.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2005,63,15.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2005,63,8.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2005,63,52.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2005,63,2.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2005,63,1.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,320.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2005,63,112.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,105.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2005,63,50.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,106.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,300.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2005,63,1.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,7.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2005,63,3.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2005,63,0.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,27.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2005,63,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,66.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,36.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,5.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2005,63,3.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2005,63,1.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2005,63,6.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2005,63,53.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2005,63,23.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2005,63,7.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2005,63,11.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2005,63,19.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2005,63,9.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2005,63,2.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2005,63,2537.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2005,63,4.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2005,63,11.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2005,63,204.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2005,63,9.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2005,63,18.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2005,63,4.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2005,63,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2005,63,33.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2005,63,64.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2005,64,37.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2005,64,2.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2005,64,33.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2005,64,100.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2005,64,9.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2005,64,42.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2005,64,132.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2005,64,5.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2005,64,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2005,64,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2005,64,0.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2005,64,38.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2005,64,12.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2005,64,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2005,64,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2005,64,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2005,64,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2005,64,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2005,64,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2005,64,197.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2005,64,3.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2005,64,6.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2005,64,3.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2005,64,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2005,64,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2005,64,1.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2005,64,168.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2005,64,2.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2005,64,23.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2005,64,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2005,64,11.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2005,64,194.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2005,64,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2005,64,1.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2005,64,1.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2005,64,7.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2005,64,203.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2005,64,5.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2005,64,8.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2005,64,24.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2005,64,43.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2005,64,19.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2005,64,12.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2005,64,8.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2005,64,1.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2005,64,23.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2005,64,72.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2005,64,5.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2005,64,35.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2005,64,7.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2005,64,7.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2005,64,32.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2005,64,1.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2005,64,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2005,64,371.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2005,64,1.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2005,64,30.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2005,64,19.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2005,64,6.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2005,64,28.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2005,64,4.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2005,64,345.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2005,64,1.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2005,64,0.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2005,64,0.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2005,64,214.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2005,64,12.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2005,64,29.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2005,64,11.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2005,64,9.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2005,64,11.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2005,64,41.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2005,64,12.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2005,64,19.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2005,64,190.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2005,64,21.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2005,64,25.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2005,64,41.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2005,64,21.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2005,64,5.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2005,64,30.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2005,64,76.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2005,64,10.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2005,64,3.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2005,64,0.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2005,64,101.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2005,64,73.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2005,64,43.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2005,64,89.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2005,64,48.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2005,64,20.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2005,64,2.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2005,64,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2005,64,3.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2005,64,3.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2005,64,13.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2005,64,1.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2005,64,9.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2005,64,3.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2005,64,89.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2005,64,1.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2005,64,2.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2005,64,32.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2005,64,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2005,64,11.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2005,64,4.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2005,64,1.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2005,64,1.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2005,64,8.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2005,64,0.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2005,64,4.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2005,64,22.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2005,64,16.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2005,64,3.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2005,64,4.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2005,64,311.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2005,64,2.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2005,64,275.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2005,64,43.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2005,64,103.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2005,64,12.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2005,64,2.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2005,64,76.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2005,64,2.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2005,64,14.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2005,64,90.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2005,64,2.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2005,64,3.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2005,64,22.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2005,64,1.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2005,64,26.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2005,64,144.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2005,64,8.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,9.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,3.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,15.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,0.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2005,64,12.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2005,64,250.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2005,64,24.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,20.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,17.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,38.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,31.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,7.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,11.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2005,64,8.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2005,64,9.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2005,64,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2005,64,15.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2005,64,131.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2005,64,0.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2005,64,244.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2005,64,280.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2005,64,254.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2005,64,163.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2005,64,21.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2005,64,1.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2005,64,109.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2005,64,25.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2005,64,0.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2005,64,194.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2005,64,1.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2005,64,11.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2005,64,2.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2005,64,1.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2005,64,3.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2005,64,1.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2005,64,16.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2005,64,15.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2005,64,1.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2005,64,4.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2005,64,5.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2005,64,53.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2005,64,1.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2005,64,36.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2005,64,852.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2005,64,10.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2005,64,2.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2005,64,115.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2005,64,4.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2005,64,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2005,64,70.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2005,64,6.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2005,64,55.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2005,64,3.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2005,64,8.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2005,64,14.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2005,64,0.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2005,64,4.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2005,64,0.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2005,64,72.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2005,64,50.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2005,64,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2005,64,9.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2005,64,9.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2005,64,6.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2005,64,82.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2005,64,55.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2005,64,14.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2005,64,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2005,64,6.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2005,64,5.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2005,64,1.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2005,64,97.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2005,64,3.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2005,64,1.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2005,64,8.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2005,64,1.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,2.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2005,64,0.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2005,64,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,10.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,4.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,1.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2005,64,20.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2005,64,11.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2005,64,0.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2005,64,6.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2005,64,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2005,64,155.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2005,64,359.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2005,64,58.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2005,64,34.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2005,64,69.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2005,64,3.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2005,64,629.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2005,64,624.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2005,64,479.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2005,64,69.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2005,64,4.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2005,64,101.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2005,64,9.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2005,64,338.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2005,64,14.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,14.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,22.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,79.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2005,64,26.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2005,64,95.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2005,64,47.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2005,64,5.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2005,64,8.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2005,64,1.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2005,64,120.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2005,64,44.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,19.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,1277.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2005,64,23.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,1.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,3.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,120.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2005,64,2.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,1.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,1.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2005,64,30.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,4.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2005,64,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,1.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2005,64,1.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2005,64,39.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,222.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,854.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2005,64,7.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,2.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,257.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,636.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2005,64,2.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,15.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2005,64,1.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,4.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,1.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,52.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,34.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,1.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,1.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,2.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,5.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,3.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,904.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,28.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,4.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,26.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2005,64,11.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,1.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2005,64,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,4.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,3.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,1.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,1.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2005,64,1.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,3.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,127.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,77.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,5.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2005,64,2.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2005,64,1.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2005,64,250.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,2.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2005,64,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,3.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2005,64,2.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,2.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2005,64,1.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2005,64,2.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2005,64,1.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2005,64,3.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2005,64,54.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,10.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2005,64,15.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,471.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,11.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,2.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2005,64,21.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2005,64,60.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2005,64,134.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2005,64,1.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2005,64,33.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2005,64,184.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2005,64,1.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,12.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,3.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2005,64,21.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2005,64,1.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2005,64,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2005,64,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2005,64,2.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2005,64,6.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2005,64,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2005,64,2.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2005,64,1.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2005,64,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,1.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2005,64,1.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,6.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2005,64,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2005,64,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,2.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,1.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2005,64,4.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,4.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,2.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,1.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,2.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,58.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2005,64,0.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2005,64,364.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,29.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,4.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,1.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,1.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,131.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,2.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,2.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,1.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,22.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,7.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,166.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,5.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2005,64,3.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2005,64,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,1.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,1.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,1.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2005,64,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,1.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2005,64,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2005,64,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,1.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2005,64,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,1.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2005,64,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2005,64,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2005,64,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2005,64,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2005,64,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,1.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2005,64,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2005,64,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2005,64,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2005,64,2.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2005,64,25.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2005,64,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2005,64,110.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2005,64,5.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2005,64,26.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2005,64,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2005,64,2.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2005,64,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2005,64,54.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2005,64,5.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2005,64,16.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2005,64,14.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2005,64,0.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,366.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2005,64,77.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,40.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2005,64,69.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,69.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,190.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2005,64,2.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,9.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2005,64,1.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2005,64,1.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,12.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2005,64,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,105.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,21.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,15.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2005,64,2.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2005,64,2.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2005,64,4.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2005,64,32.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2005,64,21.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2005,64,10.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2005,64,26.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2005,64,32.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2005,64,9.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2005,64,5.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2005,64,3575.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2005,64,3.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2005,64,5.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2005,64,440.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2005,64,40.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2005,64,41.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2005,64,5.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2005,64,3.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2005,64,28.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2005,64,63.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2005,65,13.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2005,65,0.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2005,65,11.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2005,65,32.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2005,65,6.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2005,65,11.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2005,65,44.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2005,65,8.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2005,65,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2005,65,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2005,65,3.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2005,65,9.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2005,65,5.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2005,65,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2005,65,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2005,65,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2005,65,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2005,65,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2005,65,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2005,65,173.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2005,65,2.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2005,65,4.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2005,65,5.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2005,65,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2005,65,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2005,65,1.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2005,65,287.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2005,65,6.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2005,65,34.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2005,65,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2005,65,40.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2005,65,42.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2005,65,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2005,65,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2005,65,1.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2005,65,2.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2005,65,178.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2005,65,9.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2005,65,10.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2005,65,69.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2005,65,97.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2005,65,12.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2005,65,2.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2005,65,8.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2005,65,0.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2005,65,20.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2005,65,44.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2005,65,2.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2005,65,18.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2005,65,9.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2005,65,2.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2005,65,13.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2005,65,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2005,65,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2005,65,321.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2005,65,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2005,65,13.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2005,65,21.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2005,65,14.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2005,65,42.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2005,65,7.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2005,65,556.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2005,65,1.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2005,65,0.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2005,65,10.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2005,65,900.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2005,65,9.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2005,65,53.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2005,65,12.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2005,65,5.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2005,65,4.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2005,65,63.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2005,65,11.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2005,65,18.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2005,65,42.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2005,65,14.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2005,65,27.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2005,65,32.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2005,65,4.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2005,65,3.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2005,65,49.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2005,65,53.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2005,65,2.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2005,65,0.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2005,65,3.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2005,65,94.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2005,65,112.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2005,65,68.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2005,65,83.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2005,65,45.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2005,65,76.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2005,65,3.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2005,65,1.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2005,65,1.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2005,65,6.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2005,65,16.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2005,65,3.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2005,65,64.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2005,65,1.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2005,65,135.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2005,65,9.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2005,65,22.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2005,65,5.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2005,65,2.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2005,65,31.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2005,65,11.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2005,65,0.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2005,65,3.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2005,65,23.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2005,65,4.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2005,65,17.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2005,65,36.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2005,65,57.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2005,65,17.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2005,65,3.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2005,65,1024.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2005,65,8.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2005,65,207.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2005,65,208.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2005,65,66.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2005,65,27.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2005,65,0.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2005,65,110.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2005,65,4.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2005,65,2.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2005,65,184.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2005,65,2.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2005,65,5.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2005,65,14.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2005,65,4.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2005,65,38.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2005,65,289.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2005,65,11.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,21.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,5.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,13.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,1.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2005,65,7.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2005,65,206.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2005,65,22.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,12.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,8.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,33.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,72.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,36.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,11.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2005,65,59.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2005,65,16.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2005,65,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2005,65,13.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2005,65,138.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2005,65,2.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2005,65,314.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2005,65,146.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2005,65,142.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2005,65,158.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2005,65,35.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2005,65,19.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2005,65,72.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2005,65,12.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2005,65,6.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2005,65,34.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2005,65,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2005,65,6.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2005,65,1.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2005,65,3.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2005,65,0.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2005,65,2.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2005,65,21.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2005,65,6.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2005,65,3.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2005,65,4.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2005,65,13.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2005,65,74.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2005,65,7.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2005,65,45.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2005,65,560.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2005,65,14.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2005,65,3.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2005,65,125.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2005,65,84.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2005,65,3.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2005,65,135.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2005,65,7.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2005,65,33.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2005,65,5.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2005,65,16.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2005,65,22.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2005,65,2.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2005,65,3.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2005,65,1.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2005,65,106.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2005,65,148.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2005,65,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2005,65,24.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2005,65,5.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2005,65,13.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2005,65,78.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2005,65,29.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2005,65,17.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2005,65,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2005,65,7.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2005,65,7.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2005,65,2.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2005,65,185.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2005,65,25.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2005,65,2.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2005,65,1.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2005,65,0.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,2.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2005,65,0.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2005,65,1.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,18.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,1.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,2.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2005,65,36.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2005,65,10.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2005,65,6.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2005,65,4.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2005,65,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2005,65,23.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2005,65,431.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2005,65,66.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2005,65,7.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2005,65,5.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2005,65,13.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2005,65,439.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2005,65,317.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2005,65,119.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2005,65,53.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2005,65,5.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2005,65,240.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2005,65,14.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2005,65,407.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2005,65,6.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,1.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,7.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,41.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,69.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2005,65,15.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2005,65,50.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2005,65,42.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2005,65,8.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2005,65,37.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2005,65,1.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2005,65,71.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2005,65,17.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,3.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,485.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2005,65,22.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,1.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,4.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,87.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2005,65,7.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2005,65,15.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2005,65,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,1.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2005,65,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2005,65,15.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,2.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,109.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,946.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2005,65,1.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,1.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,153.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,435.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2005,65,4.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,20.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2005,65,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,14.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,43.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,11.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,1.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,2.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,1.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,389.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,5.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,6.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,12.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2005,65,13.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2005,65,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,1.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,1.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,1.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2005,65,2.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,1.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,81.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,31.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,1.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,5.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,12.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2005,65,2.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2005,65,1.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2005,65,371.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,7.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,5.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,2.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,2.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2005,65,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2005,65,2.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,3.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2005,65,35.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,26.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,3.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2005,65,42.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,212.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,6.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,4.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,1.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2005,65,16.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2005,65,42.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2005,65,70.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2005,65,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2005,65,46.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2005,65,99.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2005,65,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,31.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,3.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,3.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,2.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2005,65,1.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2005,65,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2005,65,2.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2005,65,1.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2005,65,6.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2005,65,1.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2005,65,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2005,65,2.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2005,65,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,1.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,1.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2005,65,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,1.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,2.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2005,65,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,3.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2005,65,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,2.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,1.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2005,65,6.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,5.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,1.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,4.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,41.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2005,65,0.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2005,65,645.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,11.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,1.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,1.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,2.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,66.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,1.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,2.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,16.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,3.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,75.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,1.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2005,65,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2005,65,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,3.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,1.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,2.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,1.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,1.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2005,65,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2005,65,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2005,65,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,1.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2005,65,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2005,65,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2005,65,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2005,65,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2005,65,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2005,65,1.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,5.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,1.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2005,65,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2005,65,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2005,65,1.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2005,65,2.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2005,65,14.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2005,65,6.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2005,65,40.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2005,65,2.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2005,65,5.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2005,65,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2005,65,16.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2005,65,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2005,65,44.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2005,65,2.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2005,65,4.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2005,65,9.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2005,65,0.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,129.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2005,65,63.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,20.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2005,65,64.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,31.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,119.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2005,65,0.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,3.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2005,65,2.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2005,65,3.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,1.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2005,65,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,125.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,17.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,11.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2005,65,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2005,65,2.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2005,65,1.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2005,65,13.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2005,65,35.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2005,65,2.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2005,65,19.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2005,65,25.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2005,65,19.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2005,65,6.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2005,65,2568.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2005,65,1.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2005,65,8.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2005,65,513.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2005,65,33.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2005,65,50.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2005,65,0.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2005,65,1.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2005,65,35.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2005,65,44.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2005,66,19.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2005,66,1.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2005,66,0.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2005,66,17.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2005,66,3.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2005,66,17.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2005,66,24.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2005,66,2.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2005,66,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2005,66,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2005,66,0.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2005,66,3.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2005,66,12.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2005,66,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2005,66,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2005,66,1.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2005,66,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2005,66,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2005,66,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2005,66,102.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2005,66,9.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2005,66,3.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2005,66,0.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2005,66,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2005,66,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2005,66,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2005,66,770.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2005,66,15.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2005,66,45.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2005,66,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2005,66,52.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2005,66,3.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2005,66,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2005,66,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2005,66,0.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2005,66,5.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2005,66,120.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2005,66,4.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2005,66,10.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2005,66,57.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2005,66,38.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2005,66,18.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2005,66,0.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2005,66,0.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2005,66,0.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2005,66,4.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2005,66,20.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2005,66,0.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2005,66,21.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2005,66,9.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2005,66,2.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2005,66,3.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2005,66,1.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2005,66,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2005,66,159.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2005,66,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2005,66,7.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2005,66,12.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2005,66,4.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2005,66,53.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2005,66,5.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2005,66,250.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2005,66,1.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2005,66,1.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2005,66,7.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2005,66,552.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2005,66,22.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2005,66,62.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2005,66,10.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2005,66,4.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2005,66,1.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2005,66,30.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2005,66,16.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2005,66,7.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2005,66,12.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2005,66,7.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2005,66,30.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2005,66,85.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2005,66,2.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2005,66,0.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2005,66,91.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2005,66,47.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2005,66,6.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2005,66,6.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2005,66,2.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2005,66,160.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2005,66,101.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2005,66,64.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2005,66,204.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2005,66,56.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2005,66,126.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2005,66,1.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2005,66,1.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2005,66,1.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2005,66,1.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2005,66,15.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2005,66,0.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2005,66,65.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2005,66,14.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2005,66,166.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2005,66,9.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2005,66,37.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2005,66,4.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2005,66,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2005,66,149.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2005,66,128.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2005,66,4.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2005,66,14.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2005,66,58.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2005,66,28.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2005,66,29.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2005,66,58.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2005,66,29.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2005,66,86.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2005,66,17.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2005,66,2233.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2005,66,54.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2005,66,144.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2005,66,41.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2005,66,16.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2005,66,12.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2005,66,1.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2005,66,110.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2005,66,5.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2005,66,2.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2005,66,107.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2005,66,4.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2005,66,4.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2005,66,10.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2005,66,2.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2005,66,17.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2005,66,246.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2005,66,6.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,28.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,3.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,9.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,2.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2005,66,6.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2005,66,72.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2005,66,13.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,7.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,1.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,17.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,60.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,22.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,1.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2005,66,54.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2005,66,21.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2005,66,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2005,66,19.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2005,66,183.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2005,66,4.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2005,66,228.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2005,66,66.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2005,66,33.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2005,66,89.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2005,66,10.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2005,66,7.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2005,66,34.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2005,66,6.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2005,66,8.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2005,66,7.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2005,66,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2005,66,2.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2005,66,1.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2005,66,1.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2005,66,5.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2005,66,2.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2005,66,27.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2005,66,11.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2005,66,1.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2005,66,1.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2005,66,8.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2005,66,98.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2005,66,6.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2005,66,16.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2005,66,78.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2005,66,14.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2005,66,0.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2005,66,96.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2005,66,91.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2005,66,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2005,66,74.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2005,66,8.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2005,66,0.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2005,66,4.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2005,66,7.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2005,66,33.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2005,66,5.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2005,66,1.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2005,66,1.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2005,66,209.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2005,66,92.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2005,66,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2005,66,13.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2005,66,6.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2005,66,11.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2005,66,34.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2005,66,3.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2005,66,5.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2005,66,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2005,66,2.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2005,66,6.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2005,66,9.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2005,66,190.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2005,66,5.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2005,66,1.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2005,66,0.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2005,66,5.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,1.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2005,66,1.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2005,66,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,22.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,1.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,1.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,1.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2005,66,79.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2005,66,5.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2005,66,3.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2005,66,4.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2005,66,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2005,66,10.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2005,66,77.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2005,66,13.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2005,66,2.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2005,66,47.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2005,66,6.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2005,66,41.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2005,66,64.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2005,66,40.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2005,66,45.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2005,66,1.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2005,66,72.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2005,66,11.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2005,66,176.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2005,66,5.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,2.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,2.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,50.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,48.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2005,66,8.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2005,66,27.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2005,66,23.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2005,66,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2005,66,32.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2005,66,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2005,66,11.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2005,66,4.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,2.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,148.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2005,66,10.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,1.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,21.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2005,66,4.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2005,66,6.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2005,66,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2005,66,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2005,66,1.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,39.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,332.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2005,66,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,1.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,61.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,182.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2005,66,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,14.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2005,66,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,1.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,4.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,11.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,3.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,1.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,1.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,86.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,7.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,2.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,2.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2005,66,5.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2005,66,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,16.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,10.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,5.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,9.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2005,66,2.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2005,66,259.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,8.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2005,66,1.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,3.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2005,66,1.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,2.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,1.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2005,66,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,1.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2005,66,1.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2005,66,1.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2005,66,38.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,7.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2005,66,7.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,75.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,1.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,5.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2005,66,8.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2005,66,7.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2005,66,16.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2005,66,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2005,66,10.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2005,66,35.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2005,66,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,34.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,3.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,2.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2005,66,1.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2005,66,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2005,66,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2005,66,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2005,66,4.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2005,66,3.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2005,66,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2005,66,2.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2005,66,3.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2005,66,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,1.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2005,66,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,1.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2005,66,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,1.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2005,66,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,1.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2005,66,7.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,2.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,1.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,1.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,1.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,34.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2005,66,1.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2005,66,670.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,2.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,1.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,1.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,2.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,1.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,1.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,14.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,2.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,1.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,3.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,1.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,49.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,1.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2005,66,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2005,66,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,1.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,1.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,1.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2005,66,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,1.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2005,66,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,1.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2005,66,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,1.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2005,66,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2005,66,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2005,66,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2005,66,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2005,66,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2005,66,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,2.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2005,66,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2005,66,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2005,66,1.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2005,66,7.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2005,66,7.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2005,66,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2005,66,12.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2005,66,6.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2005,66,1.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2005,66,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2005,66,32.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2005,66,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2005,66,21.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2005,66,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2005,66,1.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2005,66,11.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2005,66,1.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,52.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2005,66,30.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,24.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2005,66,61.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,11.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,44.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2005,66,1.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,4.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2005,66,0.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2005,66,0.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,4.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2005,66,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,83.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,12.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,3.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2005,66,1.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2005,66,0.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2005,66,1.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2005,66,14.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2005,66,6.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2005,66,0.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2005,66,13.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2005,66,9.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2005,66,11.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2005,66,3.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2005,66,1166.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2005,66,0.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2005,66,5.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2005,66,204.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2005,66,2.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2005,66,13.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2005,66,0.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2005,66,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2005,66,25.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2005,66,23.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2005,67,3.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2005,67,1.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2005,67,1.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2005,67,26.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2005,67,2.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2005,67,18.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2005,67,15.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2005,67,1.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2005,67,1.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2005,67,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2005,67,1.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2005,67,7.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2005,67,1.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2005,67,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2005,67,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2005,67,2.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2005,67,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2005,67,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2005,67,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2005,67,56.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2005,67,0.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2005,67,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2005,67,0.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2005,67,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2005,67,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2005,67,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2005,67,332.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2005,67,10.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2005,67,22.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2005,67,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2005,67,33.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2005,67,5.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2005,67,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2005,67,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2005,67,0.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2005,67,1.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2005,67,62.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2005,67,2.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2005,67,3.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2005,67,60.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2005,67,33.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2005,67,21.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2005,67,4.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2005,67,4.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2005,67,0.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2005,67,1.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2005,67,17.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2005,67,0.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2005,67,4.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2005,67,5.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2005,67,1.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2005,67,1.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2005,67,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2005,67,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2005,67,147.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2005,67,1.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2005,67,1.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2005,67,2.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2005,67,3.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2005,67,10.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2005,67,3.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2005,67,69.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2005,67,21.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2005,67,3.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2005,67,6.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2005,67,400.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2005,67,24.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2005,67,83.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2005,67,8.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2005,67,1.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2005,67,2.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2005,67,15.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2005,67,4.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2005,67,36.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2005,67,3.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2005,67,4.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2005,67,60.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2005,67,78.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2005,67,2.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2005,67,1.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2005,67,71.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2005,67,5.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2005,67,0.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2005,67,3.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2005,67,2.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2005,67,45.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2005,67,66.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2005,67,78.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2005,67,225.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2005,67,58.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2005,67,77.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2005,67,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2005,67,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2005,67,5.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2005,67,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2005,67,5.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2005,67,4.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2005,67,56.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2005,67,51.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2005,67,34.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2005,67,92.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2005,67,31.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2005,67,8.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2005,67,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2005,67,300.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2005,67,106.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2005,67,49.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2005,67,100.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2005,67,87.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2005,67,26.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2005,67,24.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2005,67,85.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2005,67,29.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2005,67,176.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2005,67,88.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2005,67,3992.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2005,67,163.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2005,67,132.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2005,67,60.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2005,67,9.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2005,67,36.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2005,67,10.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2005,67,232.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2005,67,12.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2005,67,2.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2005,67,61.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2005,67,3.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2005,67,2.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2005,67,9.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2005,67,4.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2005,67,15.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2005,67,130.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2005,67,12.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,21.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,4.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,0.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,1.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2005,67,11.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2005,67,69.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2005,67,7.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,4.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,0.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,7.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,18.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,8.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,6.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2005,67,64.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2005,67,17.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2005,67,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2005,67,21.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2005,67,248.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2005,67,8.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2005,67,71.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2005,67,38.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2005,67,24.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2005,67,98.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2005,67,5.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2005,67,3.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2005,67,10.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2005,67,3.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2005,67,6.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2005,67,9.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2005,67,1.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2005,67,5.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2005,67,6.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2005,67,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2005,67,11.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2005,67,2.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2005,67,24.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2005,67,8.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2005,67,1.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2005,67,2.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2005,67,8.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2005,67,154.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2005,67,4.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2005,67,7.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2005,67,34.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2005,67,29.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2005,67,1.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2005,67,57.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2005,67,3.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2005,67,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2005,67,61.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2005,67,13.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2005,67,1.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2005,67,8.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2005,67,8.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2005,67,33.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2005,67,2.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2005,67,4.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2005,67,6.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2005,67,282.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2005,67,56.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2005,67,1.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2005,67,4.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2005,67,6.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2005,67,2.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2005,67,12.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2005,67,3.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2005,67,11.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2005,67,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2005,67,7.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2005,67,5.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2005,67,2.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2005,67,212.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2005,67,7.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2005,67,4.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2005,67,3.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2005,67,2.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,1.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2005,67,0.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2005,67,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,23.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,1.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,4.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2005,67,68.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2005,67,4.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2005,67,2.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2005,67,2.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2005,67,1.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2005,67,1.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2005,67,16.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2005,67,11.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2005,67,2.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2005,67,4.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2005,67,14.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2005,67,7.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2005,67,32.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2005,67,13.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2005,67,79.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2005,67,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2005,67,29.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2005,67,7.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2005,67,82.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2005,67,3.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,0.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,12.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,44.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2005,67,3.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2005,67,6.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2005,67,9.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2005,67,1.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2005,67,11.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2005,67,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2005,67,21.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2005,67,4.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,0.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,46.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2005,67,2.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,2.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,12.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2005,67,0.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2005,67,2.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2005,67,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,2.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2005,67,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2005,67,0.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,10.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,104.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2005,67,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,0.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,21.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,19.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2005,67,1.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,2.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2005,67,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,3.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,6.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,1.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,21.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,2.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,0.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2005,67,2.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2005,67,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,1.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,7.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,6.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2005,67,117.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,2.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2005,67,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2005,67,43.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,5.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,4.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2005,67,1.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,15.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,1.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,3.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2005,67,2.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2005,67,1.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2005,67,4.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2005,67,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2005,67,6.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2005,67,13.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2005,67,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,5.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,3.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2005,67,0.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2005,67,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2005,67,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2005,67,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2005,67,2.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2005,67,1.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2005,67,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,1.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2005,67,1.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2005,67,1.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2005,67,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2005,67,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,1.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,1.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2005,67,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,3.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2005,67,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2005,67,1.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,1.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,45.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2005,67,2.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2005,67,313.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,2.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,1.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,1.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,1.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,6.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,2.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,2.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,4.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,1.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2005,67,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2005,67,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,2.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,1.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2005,67,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2005,67,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,1.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2005,67,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2005,67,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2005,67,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2005,67,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2005,67,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2005,67,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,1.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2005,67,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2005,67,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2005,67,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2005,67,1.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2005,67,1.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2005,67,2.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2005,67,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2005,67,1.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2005,67,3.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2005,67,0.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2005,67,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2005,67,9.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2005,67,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2005,67,15.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2005,67,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2005,67,1.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2005,67,7.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2005,67,1.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,9.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2005,67,25.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,4.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2005,67,12.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,3.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,25.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2005,67,0.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,5.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2005,67,0.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2005,67,0.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,0.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2005,67,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,14.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,2.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,10.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2005,67,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2005,67,2.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2005,67,2.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2005,67,16.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2005,67,9.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2005,67,3.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2005,67,4.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2005,67,3.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2005,67,1.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2005,67,0.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2005,67,324.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2005,67,1.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2005,67,7.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2005,67,68.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2005,67,3.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2005,67,7.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2005,67,0.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2005,67,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2005,67,3.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2005,67,41.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2005,68,13.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2005,68,0.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2005,68,4.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2005,68,14.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2005,68,1.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2005,68,8.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2005,68,6.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2005,68,1.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2005,68,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2005,68,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2005,68,2.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2005,68,3.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2005,68,0.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2005,68,1.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2005,68,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2005,68,3.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2005,68,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2005,68,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2005,68,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2005,68,22.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2005,68,0.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2005,68,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2005,68,0.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2005,68,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2005,68,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2005,68,7.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2005,68,95.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2005,68,0.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2005,68,7.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2005,68,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2005,68,9.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2005,68,5.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2005,68,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2005,68,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2005,68,2.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2005,68,0.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2005,68,119.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2005,68,3.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2005,68,5.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2005,68,37.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2005,68,23.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2005,68,76.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2005,68,1.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2005,68,14.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2005,68,3.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2005,68,0.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2005,68,7.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2005,68,0.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2005,68,1.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2005,68,18.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2005,68,2.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2005,68,0.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2005,68,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2005,68,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2005,68,160.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2005,68,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2005,68,7.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2005,68,3.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2005,68,1.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2005,68,15.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2005,68,0.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2005,68,20.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2005,68,1.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2005,68,8.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2005,68,2.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2005,68,139.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2005,68,12.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2005,68,40.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2005,68,4.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2005,68,2.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2005,68,4.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2005,68,3.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2005,68,8.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2005,68,9.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2005,68,2.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2005,68,2.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2005,68,61.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2005,68,29.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2005,68,1.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2005,68,2.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2005,68,25.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2005,68,19.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2005,68,0.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2005,68,0.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2005,68,1.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2005,68,24.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2005,68,59.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2005,68,40.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2005,68,131.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2005,68,39.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2005,68,21.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2005,68,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2005,68,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2005,68,8.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2005,68,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2005,68,6.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2005,68,3.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2005,68,19.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2005,68,23.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2005,68,40.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2005,68,96.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2005,68,20.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2005,68,12.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2005,68,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2005,68,240.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2005,68,67.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2005,68,74.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2005,68,101.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2005,68,18.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2005,68,13.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2005,68,24.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2005,68,77.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2005,68,26.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2005,68,47.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2005,68,118.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2005,68,3388.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2005,68,118.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2005,68,176.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2005,68,106.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2005,68,4.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2005,68,14.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2005,68,14.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2005,68,129.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2005,68,2.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2005,68,6.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2005,68,12.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2005,68,0.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2005,68,2.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2005,68,1.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2005,68,1.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2005,68,5.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2005,68,27.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2005,68,4.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,27.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,4.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,6.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,3.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2005,68,23.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2005,68,70.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2005,68,4.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,11.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,1.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,3.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,6.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,11.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,0.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2005,68,34.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2005,68,8.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2005,68,1.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2005,68,31.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2005,68,284.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2005,68,9.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2005,68,40.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2005,68,46.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2005,68,21.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2005,68,28.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2005,68,10.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2005,68,11.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2005,68,14.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2005,68,2.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2005,68,0.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2005,68,5.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2005,68,1.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2005,68,3.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2005,68,0.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2005,68,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2005,68,13.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2005,68,0.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2005,68,17.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2005,68,3.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2005,68,1.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2005,68,10.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2005,68,3.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2005,68,125.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2005,68,2.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2005,68,3.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2005,68,27.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2005,68,12.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2005,68,2.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2005,68,13.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2005,68,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2005,68,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2005,68,22.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2005,68,4.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2005,68,2.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2005,68,1.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2005,68,5.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2005,68,15.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2005,68,1.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2005,68,7.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2005,68,5.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2005,68,179.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2005,68,44.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2005,68,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2005,68,0.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2005,68,8.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2005,68,0.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2005,68,4.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2005,68,0.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2005,68,7.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2005,68,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2005,68,2.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2005,68,8.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2005,68,0.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2005,68,199.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2005,68,2.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2005,68,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2005,68,0.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2005,68,1.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,1.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,0.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2005,68,3.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2005,68,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,11.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,0.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,1.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2005,68,31.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2005,68,0.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2005,68,3.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2005,68,0.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2005,68,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2005,68,0.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2005,68,9.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2005,68,1.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2005,68,0.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2005,68,0.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2005,68,12.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2005,68,8.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2005,68,29.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2005,68,7.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2005,68,43.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2005,68,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2005,68,14.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2005,68,9.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2005,68,41.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2005,68,0.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,1.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,4.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,9.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,54.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2005,68,4.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2005,68,7.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2005,68,9.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2005,68,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2005,68,2.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2005,68,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2005,68,18.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2005,68,2.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,0.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,29.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2005,68,1.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,0.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,9.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2005,68,0.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2005,68,2.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2005,68,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2005,68,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2005,68,2.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,1.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,76.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2005,68,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,0.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,12.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,27.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2005,68,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,0.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2005,68,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,3.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,5.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,1.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,20.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,2.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2005,68,0.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2005,68,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,1.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,2.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,3.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2005,68,74.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,3.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,4.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2005,68,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,4.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2005,68,2.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2005,68,87.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,4.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2005,68,0.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,13.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,4.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2005,68,0.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2005,68,1.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2005,68,2.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2005,68,1.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2005,68,1.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2005,68,7.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2005,68,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,2.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,1.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2005,68,0.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2005,68,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2005,68,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2005,68,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2005,68,1.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2005,68,2.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2005,68,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2005,68,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2005,68,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2005,68,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,1.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2005,68,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,2.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2005,68,1.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,2.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,19.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2005,68,0.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2005,68,98.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,1.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,2.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,1.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,1.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,3.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,4.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,5.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,1.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2005,68,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2005,68,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,1.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2005,68,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,1.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2005,68,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2005,68,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2005,68,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2005,68,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2005,68,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2005,68,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2005,68,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,2.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2005,68,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,2.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2005,68,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2005,68,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2005,68,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2005,68,2.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2005,68,1.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2005,68,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2005,68,0.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2005,68,2.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2005,68,1.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2005,68,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2005,68,5.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2005,68,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2005,68,0.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2005,68,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2005,68,0.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2005,68,3.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2005,68,1.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,4.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2005,68,20.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,1.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2005,68,0.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,0.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,27.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2005,68,0.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,3.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2005,68,0.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2005,68,4.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,0.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2005,68,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,0.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,2.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,2.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2005,68,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2005,68,1.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2005,68,12.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2005,68,13.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2005,68,2.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2005,68,1.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2005,68,272.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2005,68,4.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2005,68,24.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2005,68,5.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2005,68,9.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2005,68,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2005,68,9.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2005,68,19.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2005,69,1.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2005,69,3.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2005,69,0.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2005,69,11.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2005,69,3.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2005,69,2.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2005,69,6.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2005,69,0.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2005,69,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2005,69,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2005,69,0.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2005,69,0.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2005,69,0.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2005,69,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2005,69,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2005,69,2.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2005,69,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2005,69,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2005,69,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2005,69,8.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2005,69,0.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2005,69,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2005,69,0.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2005,69,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2005,69,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2005,69,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2005,69,20.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2005,69,1.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2005,69,5.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2005,69,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2005,69,18.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2005,69,6.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2005,69,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2005,69,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2005,69,0.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2005,69,1.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2005,69,113.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2005,69,3.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2005,69,2.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2005,69,48.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2005,69,26.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2005,69,40.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2005,69,2.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2005,69,53.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2005,69,1.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2005,69,7.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2005,69,7.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2005,69,0.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2005,69,2.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2005,69,36.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2005,69,1.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2005,69,0.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2005,69,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2005,69,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2005,69,99.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2005,69,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2005,69,1.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2005,69,0.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2005,69,0.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2005,69,11.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2005,69,0.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2005,69,8.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2005,69,0.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2005,69,1.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2005,69,7.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2005,69,102.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2005,69,4.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2005,69,25.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2005,69,1.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2005,69,1.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2005,69,1.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2005,69,9.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2005,69,1.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2005,69,1.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2005,69,0.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2005,69,0.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2005,69,16.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2005,69,17.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2005,69,0.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2005,69,0.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2005,69,3.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2005,69,12.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2005,69,0.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2005,69,1.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2005,69,0.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2005,69,13.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2005,69,14.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2005,69,17.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2005,69,30.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2005,69,23.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2005,69,3.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2005,69,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2005,69,4.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2005,69,0.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2005,69,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2005,69,0.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2005,69,0.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2005,69,1.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2005,69,2.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2005,69,8.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2005,69,68.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2005,69,32.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2005,69,3.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2005,69,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2005,69,103.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2005,69,62.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2005,69,36.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2005,69,38.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2005,69,10.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2005,69,9.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2005,69,27.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2005,69,20.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2005,69,35.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2005,69,6.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2005,69,48.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2005,69,1589.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2005,69,44.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2005,69,67.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2005,69,72.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2005,69,18.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2005,69,4.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2005,69,4.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2005,69,26.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2005,69,1.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2005,69,1.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2005,69,1.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2005,69,0.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2005,69,0.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2005,69,1.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2005,69,0.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2005,69,0.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2005,69,47.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2005,69,0.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,8.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,0.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,8.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,4.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2005,69,16.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2005,69,36.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2005,69,8.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,4.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,0.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,2.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,0.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,1.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,1.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2005,69,20.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2005,69,2.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2005,69,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2005,69,21.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2005,69,169.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2005,69,8.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2005,69,19.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2005,69,48.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2005,69,15.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2005,69,11.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2005,69,8.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2005,69,1.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2005,69,28.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2005,69,1.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2005,69,11.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2005,69,4.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2005,69,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2005,69,1.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2005,69,2.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2005,69,1.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2005,69,14.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2005,69,3.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2005,69,11.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2005,69,6.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2005,69,0.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2005,69,8.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2005,69,6.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2005,69,45.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2005,69,0.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2005,69,1.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2005,69,7.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2005,69,4.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2005,69,1.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2005,69,15.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2005,69,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2005,69,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2005,69,15.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2005,69,3.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2005,69,2.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2005,69,2.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2005,69,2.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2005,69,10.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2005,69,0.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2005,69,3.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2005,69,5.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2005,69,144.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2005,69,43.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2005,69,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2005,69,0.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2005,69,5.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2005,69,0.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2005,69,1.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2005,69,1.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2005,69,4.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2005,69,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2005,69,1.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2005,69,1.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2005,69,2.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2005,69,151.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2005,69,4.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2005,69,2.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2005,69,1.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2005,69,3.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,1.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2005,69,0.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2005,69,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,7.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,1.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,1.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2005,69,16.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2005,69,1.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2005,69,2.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2005,69,0.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2005,69,1.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2005,69,1.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2005,69,2.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2005,69,7.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2005,69,0.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2005,69,0.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2005,69,11.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2005,69,3.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2005,69,9.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2005,69,5.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2005,69,36.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2005,69,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2005,69,11.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2005,69,4.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2005,69,52.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2005,69,0.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,0.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,9.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,38.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2005,69,0.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2005,69,7.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2005,69,6.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2005,69,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2005,69,2.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2005,69,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2005,69,13.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2005,69,2.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,0.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,31.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2005,69,7.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,0.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,5.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2005,69,0.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2005,69,4.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2005,69,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2005,69,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2005,69,0.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,1.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,27.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2005,69,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,0.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,10.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,12.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2005,69,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,0.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2005,69,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,2.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,1.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,3.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,1.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,5.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,2.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,1.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,3.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2005,69,0.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,1.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2005,69,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,1.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,4.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,2.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2005,69,2.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2005,69,35.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,3.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,1.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,1.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2005,69,1.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2005,69,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,3.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2005,69,1.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2005,69,2.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2005,69,1.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2005,69,65.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2005,69,1.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,18.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,5.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2005,69,0.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2005,69,0.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2005,69,3.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2005,69,1.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2005,69,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2005,69,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2005,69,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2005,69,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2005,69,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,1.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2005,69,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2005,69,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,0.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,1.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2005,69,1.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,1.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,10.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2005,69,0.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2005,69,39.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,1.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,1.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2005,69,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2005,69,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,1.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2005,69,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,2.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2005,69,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2005,69,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2005,69,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2005,69,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2005,69,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2005,69,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2005,69,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2005,69,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2005,69,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2005,69,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2005,69,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2005,69,0.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2005,69,3.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2005,69,0.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2005,69,1.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2005,69,0.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2005,69,1.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2005,69,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2005,69,5.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2005,69,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2005,69,2.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2005,69,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2005,69,0.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2005,69,1.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2005,69,0.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,1.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2005,69,15.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,17.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2005,69,4.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,0.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,30.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2005,69,0.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,1.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2005,69,1.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2005,69,2.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,0.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,1.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2005,69,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,1.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,2.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,2.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2005,69,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2005,69,6.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2005,69,14.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2005,69,2.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2005,69,1.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2005,69,238.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2005,69,5.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2005,69,9.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2005,69,2.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2005,69,3.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2005,69,1.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2005,69,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2005,69,5.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2005,69,8.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2005,70,7.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2005,70,0.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2005,70,0.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2005,70,11.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2005,70,1.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2005,70,2.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2005,70,28.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2005,70,0.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2005,70,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2005,70,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2005,70,2.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2005,70,3.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2005,70,1.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2005,70,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2005,70,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2005,70,1.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2005,70,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2005,70,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2005,70,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2005,70,2.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2005,70,0.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2005,70,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2005,70,0.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2005,70,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2005,70,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2005,70,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2005,70,9.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2005,70,0.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2005,70,10.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2005,70,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2005,70,41.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2005,70,1.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2005,70,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2005,70,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2005,70,1.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2005,70,0.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2005,70,137.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2005,70,11.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2005,70,3.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2005,70,36.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2005,70,39.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2005,70,22.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2005,70,6.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2005,70,127.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2005,70,1.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2005,70,2.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2005,70,13.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2005,70,4.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2005,70,3.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2005,70,22.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2005,70,0.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2005,70,1.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2005,70,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2005,70,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2005,70,50.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2005,70,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2005,70,1.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2005,70,2.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2005,70,2.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2005,70,9.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2005,70,0.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2005,70,2.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2005,70,0.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2005,70,0.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2005,70,1.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2005,70,49.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2005,70,1.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2005,70,5.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2005,70,0.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2005,70,0.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2005,70,6.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2005,70,4.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2005,70,0.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2005,70,0.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2005,70,1.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2005,70,1.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2005,70,3.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2005,70,3.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2005,70,0.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2005,70,0.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2005,70,6.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2005,70,0.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2005,70,1.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2005,70,3.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2005,70,0.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2005,70,12.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2005,70,6.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2005,70,9.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2005,70,14.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2005,70,11.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2005,70,0.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2005,70,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2005,70,8.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2005,70,0.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2005,70,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2005,70,0.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2005,70,2.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2005,70,4.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2005,70,0.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2005,70,4.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2005,70,25.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2005,70,8.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2005,70,6.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2005,70,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2005,70,45.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2005,70,68.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2005,70,12.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2005,70,28.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2005,70,3.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2005,70,2.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2005,70,23.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2005,70,24.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2005,70,12.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2005,70,1.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2005,70,30.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2005,70,498.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2005,70,22.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2005,70,52.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2005,70,40.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2005,70,6.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2005,70,5.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2005,70,0.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2005,70,14.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2005,70,6.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2005,70,0.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2005,70,6.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2005,70,0.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2005,70,21.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2005,70,2.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2005,70,0.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2005,70,22.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2005,70,12.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2005,70,0.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,4.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,2.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,1.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,1.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2005,70,4.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2005,70,16.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2005,70,21.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,7.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,2.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,1.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,6.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,1.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,0.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2005,70,18.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2005,70,7.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2005,70,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2005,70,10.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2005,70,92.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2005,70,3.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2005,70,11.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2005,70,8.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2005,70,8.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2005,70,1.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2005,70,8.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2005,70,0.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2005,70,20.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2005,70,2.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2005,70,4.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2005,70,0.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2005,70,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2005,70,1.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2005,70,0.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2005,70,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2005,70,5.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2005,70,4.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2005,70,8.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2005,70,2.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2005,70,0.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2005,70,0.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2005,70,3.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2005,70,39.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2005,70,2.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2005,70,2.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2005,70,8.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2005,70,3.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2005,70,0.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2005,70,3.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2005,70,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2005,70,1.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2005,70,10.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2005,70,1.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2005,70,2.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2005,70,1.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2005,70,6.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2005,70,9.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2005,70,2.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2005,70,1.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2005,70,3.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2005,70,105.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2005,70,12.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2005,70,6.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2005,70,1.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2005,70,0.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2005,70,0.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2005,70,2.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2005,70,1.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2005,70,0.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2005,70,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2005,70,0.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2005,70,1.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2005,70,3.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2005,70,124.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2005,70,10.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2005,70,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2005,70,3.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2005,70,5.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,2.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2005,70,2.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2005,70,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,2.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,0.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,3.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2005,70,11.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2005,70,1.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2005,70,1.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2005,70,0.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2005,70,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2005,70,0.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2005,70,3.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2005,70,3.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2005,70,0.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2005,70,0.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2005,70,4.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2005,70,5.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2005,70,7.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2005,70,1.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2005,70,31.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2005,70,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2005,70,10.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2005,70,0.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2005,70,61.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2005,70,0.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,0.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,1.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,4.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,24.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2005,70,1.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2005,70,19.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2005,70,10.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2005,70,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2005,70,1.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2005,70,1.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2005,70,7.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2005,70,12.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,10.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,25.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2005,70,8.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,1.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,1.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,10.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2005,70,0.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2005,70,0.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2005,70,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2005,70,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2005,70,0.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,1.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,56.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2005,70,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,0.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,22.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,21.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2005,70,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,0.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2005,70,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,4.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,1.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,1.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,3.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,2.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,2.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,3.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,3.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,1.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,0.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2005,70,1.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2005,70,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2005,70,1.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2005,70,3.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,1.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,7.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,3.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2005,70,65.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,1.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2005,70,1.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,1.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,2.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2005,70,1.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2005,70,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,3.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2005,70,2.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,1.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2005,70,2.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2005,70,93.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2005,70,0.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,22.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,2.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,17.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,2.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2005,70,0.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2005,70,0.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2005,70,2.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2005,70,17.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2005,70,0.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2005,70,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2005,70,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2005,70,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,1.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2005,70,0.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2005,70,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2005,70,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,1.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2005,70,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,1.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,1.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2005,70,0.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,2.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2005,70,1.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2005,70,10.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,1.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,3.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,1.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2005,70,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2005,70,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,2.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2005,70,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2005,70,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2005,70,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2005,70,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2005,70,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2005,70,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2005,70,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2005,70,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2005,70,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2005,70,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2005,70,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2005,70,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2005,70,0.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2005,70,3.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2005,70,1.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2005,70,0.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2005,70,0.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2005,70,0.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2005,70,1.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2005,70,2.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2005,70,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2005,70,12.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2005,70,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2005,70,2.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2005,70,5.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2005,70,109.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,3.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2005,70,13.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,45.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2005,70,2.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,3.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,13.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2005,70,2.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,7.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2005,70,1.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2005,70,3.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,2.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,0.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2005,70,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,0.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,3.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,0.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2005,70,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2005,70,0.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2005,70,0.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2005,70,9.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2005,70,15.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2005,70,0.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2005,70,2.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2005,70,3.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2005,70,1.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2005,70,3.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2005,70,461.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2005,70,0.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2005,70,5.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2005,70,58.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2005,70,1.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2005,70,8.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2005,70,1.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2005,70,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2005,70,19.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2005,70,9.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2005,71,42.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2005,71,2.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2005,71,0.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2005,71,79.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2005,71,15.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2005,71,24.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2005,71,52.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2005,71,1.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2005,71,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2005,71,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2005,71,3.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2005,71,22.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2005,71,0.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2005,71,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2005,71,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2005,71,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2005,71,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2005,71,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2005,71,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2005,71,14.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2005,71,0.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2005,71,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2005,71,1.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2005,71,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2005,71,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2005,71,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2005,71,6.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2005,71,0.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2005,71,38.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2005,71,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2005,71,20.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2005,71,6.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2005,71,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2005,71,0.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2005,71,0.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2005,71,0.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2005,71,201.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2005,71,8.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2005,71,0.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2005,71,45.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2005,71,104.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2005,71,40.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2005,71,5.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2005,71,57.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2005,71,0.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2005,71,2.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2005,71,9.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2005,71,70.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2005,71,2.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2005,71,51.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2005,71,13.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2005,71,0.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2005,71,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2005,71,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2005,71,74.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2005,71,0.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2005,71,1.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2005,71,8.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2005,71,26.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2005,71,27.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2005,71,0.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2005,71,15.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2005,71,1.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2005,71,0.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2005,71,8.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2005,71,21.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2005,71,3.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2005,71,4.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2005,71,0.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2005,71,0.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2005,71,8.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2005,71,7.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2005,71,2.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2005,71,1.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2005,71,1.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2005,71,2.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2005,71,2.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2005,71,0.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2005,71,0.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2005,71,0.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2005,71,9.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2005,71,3.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2005,71,9.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2005,71,9.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2005,71,0.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2005,71,3.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2005,71,1.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2005,71,4.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2005,71,14.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2005,71,3.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2005,71,0.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2005,71,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2005,71,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2005,71,0.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2005,71,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2005,71,0.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2005,71,30.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2005,71,3.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2005,71,0.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2005,71,1.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2005,71,13.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2005,71,3.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2005,71,11.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2005,71,3.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2005,71,65.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2005,71,30.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2005,71,14.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2005,71,18.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2005,71,0.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2005,71,2.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2005,71,10.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2005,71,10.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2005,71,32.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2005,71,3.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2005,71,13.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2005,71,504.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2005,71,19.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2005,71,52.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2005,71,8.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2005,71,9.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2005,71,8.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2005,71,0.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2005,71,5.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2005,71,29.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2005,71,0.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2005,71,40.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2005,71,0.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2005,71,1.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2005,71,0.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2005,71,0.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2005,71,25.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2005,71,8.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2005,71,0.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,3.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,2.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,0.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,15.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2005,71,5.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2005,71,5.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2005,71,16.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,1.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,0.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,1.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,2.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,3.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,0.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2005,71,7.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2005,71,6.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2005,71,0.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2005,71,6.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2005,71,72.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2005,71,2.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2005,71,13.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2005,71,4.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2005,71,0.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2005,71,2.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2005,71,0.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2005,71,0.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2005,71,4.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2005,71,0.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2005,71,2.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2005,71,2.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2005,71,1.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2005,71,5.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2005,71,1.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2005,71,1.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2005,71,9.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2005,71,4.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2005,71,7.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2005,71,9.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2005,71,3.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2005,71,1.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2005,71,11.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2005,71,28.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2005,71,2.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2005,71,0.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2005,71,16.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2005,71,1.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2005,71,0.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2005,71,2.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2005,71,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2005,71,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2005,71,16.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2005,71,1.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2005,71,2.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2005,71,0.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2005,71,8.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2005,71,65.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2005,71,1.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2005,71,1.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2005,71,1.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2005,71,48.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2005,71,12.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2005,71,0.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2005,71,2.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2005,71,3.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2005,71,1.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2005,71,0.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2005,71,1.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2005,71,3.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2005,71,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2005,71,0.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2005,71,6.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2005,71,2.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2005,71,87.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2005,71,7.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2005,71,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2005,71,2.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2005,71,9.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,0.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,1.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2005,71,21.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2005,71,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,9.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,0.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,0.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,4.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2005,71,4.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2005,71,2.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2005,71,1.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2005,71,2.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2005,71,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2005,71,5.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2005,71,1.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2005,71,3.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2005,71,1.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2005,71,2.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2005,71,1.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2005,71,5.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2005,71,9.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2005,71,1.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2005,71,32.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2005,71,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2005,71,20.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2005,71,3.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2005,71,15.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2005,71,2.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,3.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,3.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,8.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,38.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2005,71,1.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2005,71,69.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2005,71,3.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2005,71,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2005,71,0.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2005,71,0.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2005,71,8.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2005,71,1.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,42.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,29.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2005,71,2.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,0.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,43.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2005,71,1.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2005,71,6.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2005,71,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,1.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2005,71,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2005,71,3.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,5.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,172.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2005,71,0.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,1.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,37.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,67.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2005,71,0.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,0.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2005,71,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,1.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,1.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,6.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,2.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,29.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,6.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,0.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2005,71,0.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2005,71,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2005,71,1.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,6.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,5.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,2.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2005,71,24.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,3.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,3.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,2.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2005,71,2.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2005,71,1.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2005,71,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2005,71,8.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2005,71,152.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2005,71,1.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,28.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,37.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2005,71,0.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2005,71,0.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2005,71,1.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2005,71,0.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2005,71,3.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2005,71,63.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2005,71,0.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,4.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2005,71,4.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2005,71,2.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2005,71,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2005,71,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2005,71,4.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2005,71,0.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2005,71,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2005,71,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2005,71,1.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,1.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,1.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2005,71,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2005,71,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,1.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,1.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,1.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2005,71,1.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,2.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2005,71,0.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,1.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,7.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2005,71,1.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2005,71,28.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,6.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,1.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,1.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,1.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,1.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2005,71,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2005,71,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2005,71,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2005,71,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2005,71,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2005,71,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2005,71,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2005,71,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2005,71,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2005,71,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2005,71,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2005,71,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2005,71,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2005,71,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2005,71,0.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2005,71,2.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2005,71,1.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2005,71,3.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2005,71,0.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2005,71,0.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2005,71,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2005,71,2.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2005,71,0.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2005,71,21.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2005,71,1.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2005,71,5.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2005,71,7.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2005,71,490.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,8.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2005,71,21.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,168.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2005,71,3.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,3.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,18.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2005,71,1.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,9.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2005,71,4.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2005,71,2.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,64.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,1.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2005,71,1.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,2.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,9.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,12.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2005,71,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2005,71,1.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2005,71,0.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2005,71,7.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2005,71,18.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2005,71,0.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2005,71,2.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2005,71,2.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2005,71,1.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2005,71,2.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2005,71,918.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2005,71,1.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2005,71,3.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2005,71,152.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2005,71,6.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2005,71,13.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2005,71,1.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2005,71,0.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2005,71,16.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2005,71,10.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2005,72,182.0,485002.0,7.3928401978872,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2005,72,6.0,69580.0,1.70722071305844,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2005,72,42.0,165328.0,6.78714531938652,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2005,72,201.0,323208.0,12.89203517871,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2005,72,14.0,83065.0,5.19658294442896,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2005,72,148.0,235767.0,9.60287744095333,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2005,72,74.0,116773.0,4.37121478696856,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2005,72,1.0,55871.0,3.81291976499229,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2005,72,0.0,120295.0,3.76622290807157,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2005,72,0.0,73209.0,1.36843072521354,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2005,72,3.0,44020.0,1.0855322567035,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2005,72,209.0,381953.0,17.1581288695409,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2005,72,47.0,50259.0,3.16455532560461,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2005,72,0.0,80858.0,0.243332170571247,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2005,72,0.0,33280.0,0.458233733472993,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2005,72,0.0,237595.0,1.114096093747,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2005,72,0.0,113793.0,1.01034512119692,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2005,72,0.0,98368.0,2.46552940109428,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2005,72,0.0,147102.0,1.31228033498624,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2005,72,16.0,1853173.0,44.8747710408046,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2005,72,0.0,47919.0,1.53740715340922,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2005,72,0.0,137101.0,5.38677586045646,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2005,72,1.0,241639.0,2.25826112114068,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2005,72,0.0,45386.0,0.714215194582777,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2005,72,0.0,54048.0,0.289151104263359,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2005,72,0.0,142068.0,0.642770560410811,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2005,72,17.0,278583.0,4.10280245654438,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2005,72,1.0,34873.0,1.13466468376115,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2005,72,5.0,35455.0,0.478147857083203,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2005,72,0.0,42406.0,0.824158501306992,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2005,72,16.0,169664.0,1.07684006932924,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2005,72,9.0,454300.0,4.9131955683174,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2005,72,0.0,63203.0,0.699408816184677,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2005,72,1.0,107886.0,2.39151445802527,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2005,72,0.0,183898.0,6.11232913224385,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2005,72,0.0,126376.0,4.36982509812966,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2005,72,192.0,2116650.0,675.999275299078,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2005,72,6.0,259450.0,68.9198635745944,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2005,72,2.0,235317.0,39.6413278345266,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2005,72,23.0,359338.0,40.8161331753207,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2005,72,59.0,387069.0,23.2174745593619,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2005,72,19.0,249201.0,10.5134467310848,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2005,72,2.0,404658.0,14.2948517977857,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2005,72,43.0,230016.0,1.21298503137489,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2005,72,0.0,244402.0,1.08068149961585,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2005,72,8.0,303781.0,9.24793950410978,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2005,72,18.0,258993.0,5.35009453788513,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2005,72,132.0,91775.0,0.756998974826362,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2005,72,13.0,192298.0,8.55503344399452,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2005,72,14.0,252776.0,12.5846040519374,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2005,72,2.0,166040.0,7.85886960106627,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2005,72,2.0,113495.0,3.63767796400254,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2005,72,0.0,23929.0,0.648714655399714,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2005,72,0.0,18884.0,0.909535147697767,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2005,72,49.0,490948.0,12.7182556498974,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2005,72,1.0,60826.0,1.30510678336512,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2005,72,9.0,194708.0,12.3440211946428,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2005,72,38.0,255735.0,9.67043724196291,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2005,72,15.0,144102.0,4.14414871620632,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2005,72,38.0,110563.0,2.14839567258585,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2005,72,5.0,126908.0,4.62847219081579,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2005,72,33.0,291094.0,13.744014039773,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2005,72,1.0,65187.0,1.21776380248461,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2005,72,4.0,117431.0,2.48822290128874,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2005,72,9.0,181884.0,19.2762896930875,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2005,72,17.0,1227659.0,859.398084175778,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2005,72,2.0,139000.0,21.6044015702809,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2005,72,3.0,145731.0,13.5146963256163,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2005,72,2.0,512397.0,29.7544151265754,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2005,72,0.0,163576.0,23.1974672793788,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2005,72,3.0,206720.0,9.58199451132095,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2005,72,7.0,592950.0,16.4742663028961,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2005,72,4.0,544028.0,18.61618374825,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2005,72,3.0,409392.0,37.268892047081,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2005,72,8.0,281390.0,7.63803861384786,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2005,72,2.0,184773.0,28.2562054275999,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2005,72,2.0,127056.0,21.0608157527596,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2005,72,0.0,188923.0,17.5079499124586,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2005,72,2.0,256988.0,25.8637633785042,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2005,72,0.0,77531.0,21.5364786451639,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2005,72,1.0,385727.0,25.1422398061257,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2005,72,4.0,199670.0,7.98836269556493,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2005,72,1.0,95668.0,6.72670673054336,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2005,72,1.0,117171.0,3.21072493704867,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2005,72,0.0,65093.0,3.8344892882109,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2005,72,1.0,317371.0,25.4574481095491,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2005,72,5.0,290109.0,29.8148336850107,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2005,72,3.0,961944.0,104.80883755474,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2005,72,4.0,213153.0,8.75199394265983,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2005,72,2.0,129682.0,15.6038891836884,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2005,72,0.0,106753.0,7.94734780218131,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2005,72,0.0,38888.0,1.52681758253614,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2005,72,0.0,38360.0,3.4515005166546,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2005,72,0.0,121237.0,6.57494060956247,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2005,72,0.0,81923.0,2.96614927929693,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2005,72,0.0,127044.0,4.61689151576027,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2005,72,2.0,81313.0,4.55870794882859,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2005,72,0.0,194851.0,18.9190316736739,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2005,72,1.0,53010.0,12.2918960907811,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2005,72,0.0,251247.0,7.96747822152506,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2005,72,9.0,342636.0,39.6429865610231,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,281011.0,55.4959193634664,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2005,72,3.0,54459.0,26.2878015670655,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,22036.0,81.6247915291697,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2005,72,47.0,357046.0,43.3229033798673,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2005,72,12.0,143894.0,34.062898138714,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2005,72,3.0,70668.0,11.7743863985974,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2005,72,18.0,191566.0,51.6127087615282,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2005,72,2.0,100259.0,69.9453831690776,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,95129.0,90.6341975729744,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2005,72,1.0,78327.0,25.9259368030081,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2005,72,3.0,119959.0,22.5857670187711,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2005,72,29.0,182137.0,67.7010560397094,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2005,72,3.0,61848.0,47.691107138778,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2005,72,5.0,126122.0,49.6074483001093,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2005,72,324.0,3194274.0,946.832634874442,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2005,72,16.0,95262.0,239.922442382787,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2005,72,22.0,239027.0,18.648169090164,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2005,72,11.0,245525.0,20.5326962618736,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2005,72,7.0,143398.0,12.2369131762475,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2005,72,36.0,209707.0,21.4378827861974,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2005,72,3.0,105805.0,49.1376786985775,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2005,72,1.0,309551.0,31.1752805792083,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2005,72,0.0,64391.0,15.006878550804,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,40087.0,19.5346899990691,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2005,72,89.0,218011.0,45.8540236776766,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,95678.0,27.0015093168782,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,56250.0,34.7798846423243,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2005,72,0.0,94143.0,21.185720949303,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2005,72,0.0,62379.0,48.4222150386596,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2005,72,47.0,89476.0,33.6148958241929,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2005,72,2.0,511187.0,112.207468226967,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2005,72,4.0,96028.0,49.5071666352679,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,3.0,292955.0,70.1281422318335,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,5.0,71780.0,17.5421311979848,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,0.0,38682.0,13.524769703338,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,6.0,132803.0,27.7451082269715,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2005,72,6.0,60944.0,61.4607961025477,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2005,72,14.0,115578.0,43.4797845153151,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2005,72,2.0,62689.0,38.4238083358659,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,2.0,46441.0,24.3744170079791,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,2.0,49569.0,12.1550604417321,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,2.0,63675.0,21.149308647167,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,2.0,95099.0,31.0180304703514,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,0.0,117475.0,31.1434482295934,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,0.0,60720.0,31.7634621826496,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2005,72,2.0,128986.0,32.831548595532,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2005,72,6.0,220370.0,62.9229361247523,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2005,72,3.0,83886.0,32.9036371616424,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2005,72,5.0,277077.0,133.543342706906,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2005,72,52.0,963657.0,2201.80728381218,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2005,72,1.0,120701.0,86.9797161086604,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2005,72,19.0,108045.0,35.4419903864666,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2005,72,1.0,160824.0,47.4170664536433,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2005,72,1.0,174987.0,36.4201772864506,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2005,72,3.0,122987.0,48.2555623636706,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2005,72,3.0,69899.0,21.2241269400611,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2005,72,0.0,82882.0,27.2033855682983,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2005,72,8.0,109571.0,42.179672346383,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2005,72,2.0,37104.0,21.1992827848738,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2005,72,0.0,70301.0,26.93127346471,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2005,72,0.0,114038.0,16.3393777381831,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2005,72,0.0,61177.0,14.5271258099952,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2005,72,3.0,110012.0,28.1547273845856,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2005,72,0.0,95880.0,72.5213673304043,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2005,72,0.0,49390.0,184.398669969771,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2005,72,47.0,115109.0,97.5630938593033,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2005,72,3.0,159855.0,123.917122496644,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2005,72,7.0,487655.0,231.475908963268,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2005,72,2.0,105738.0,62.6601689123964,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2005,72,0.0,52698.0,44.5529547173423,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2005,72,0.0,134412.0,67.6273399080214,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2005,72,3.0,125730.0,112.293597332352,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2005,72,17.0,966633.0,774.429767561995,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2005,72,4.0,80959.0,93.5018331737599,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2005,72,1.0,292992.0,25.3889198431663,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2005,72,3.0,155572.0,17.7575453496505,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2005,72,0.0,297792.0,33.7388552147539,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2005,72,0.0,189263.0,21.5140366485739,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2005,72,5.0,397344.0,26.5435676839599,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2005,72,0.0,121383.0,12.7556516735243,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2005,72,0.0,166918.0,30.7354125770546,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2005,72,19.0,793439.0,100.912396960774,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2005,72,2.0,234305.0,130.521393173592,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2005,72,3.0,261645.0,149.492724450092,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2005,72,1.0,430712.0,84.1267550374884,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2005,72,3.0,216721.0,84.6551956378933,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2005,72,22.0,525807.0,178.971474818637,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2005,72,2.0,208497.0,222.13692848606,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2005,72,0.0,519742.0,114.843195724244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2005,72,1.0,149340.0,277.300385680049,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2005,72,40.0,3212649.0,2567.9274344647,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2005,72,8.0,237192.0,245.5980427859,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2005,72,2.0,2280.0,175.462381321001,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2005,72,1.0,90398.0,34.4202795408666,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2005,72,1.0,75057.0,54.9652309076013,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2005,72,1.0,176175.0,57.4871062739349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2005,72,0.0,93680.0,51.8825370984491,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2005,72,0.0,175163.0,73.2402250527807,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2005,72,3.0,396816.0,163.590126194441,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2005,72,0.0,35734.0,38.1880007239748,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2005,72,1.0,143725.0,77.9983287586577,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2005,72,1.0,279853.0,70.958444138768,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2005,72,1.0,62595.0,62.1885075579278,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2005,72,69.0,1103192.0,616.015366683362,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2005,72,0.0,261473.0,88.0133951289153,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2005,72,0.0,122051.0,71.3159787379638,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2005,72,1.0,148844.0,27.3322863274753,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2005,72,0.0,65375.0,35.0075691658752,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,2.0,61932.0,49.9111579191482,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,1.0,158761.0,140.328402719052,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2005,72,5.0,107801.0,53.5155439216404,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2005,72,0.0,110932.0,73.5746783853488,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,4.0,93698.0,88.8307176756932,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,1.0,42099.0,54.9855471813484,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,0.0,53150.0,37.148072081273,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,8.0,83456.0,112.659063323624,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2005,72,10.0,766803.0,878.949599967048,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2005,72,1.0,154967.0,84.2929149348798,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2005,72,0.0,119973.0,59.2732721730038,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2005,72,1.0,232592.0,4.40059768518812,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2005,72,0.0,110802.0,4.89798299252511,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2005,72,0.0,180826.0,4.30652240827602,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2005,72,5.0,448192.0,8.1914509575194,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2005,72,1.0,161149.0,12.9338524795687,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2005,72,1.0,168180.0,5.16501458859206,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2005,72,27.0,168165.0,11.647917054906,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2005,72,3.0,254908.0,15.3332920714109,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2005,72,77.0,357747.0,19.6178233285854,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2005,72,8.0,308073.0,16.3726678583811,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2005,72,9.0,246272.0,14.956023562614,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2005,72,25.0,952878.0,74.7642674805898,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2005,72,0.0,111574.0,13.9185856753834,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2005,72,9.0,305605.0,16.3507177569071,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2005,72,1.0,302626.0,34.9773632920868,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2005,72,19.0,378456.0,35.5410664907681,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2005,72,3.0,302199.0,52.581470077788,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,4.0,116722.0,26.6706173853669,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,3.0,198210.0,72.1152993930109,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,3.0,531771.0,93.2757417028484,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,24.0,3350523.0,1159.16740652841,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2005,72,0.0,184575.0,11.4781458891045,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2005,72,80.0,263165.0,12.685182137485,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2005,72,15.0,529939.0,30.8071038218877,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2005,72,0.0,94796.0,18.4288588203959,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2005,72,1.0,363396.0,15.5023235524817,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2005,72,1.0,268565.0,17.5066657576452,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2005,72,14.0,658284.0,34.9872870613628,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2005,72,1.0,229372.0,20.3431180745317,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,14.0,243054.0,42.2464980807809,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,28.0,1075311.0,50.588953777595,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2005,72,10.0,717407.0,25.8857746912875,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,0.0,144411.0,5.26927248780548,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,0.0,208408.0,5.95293138625521,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,30.0,269155.0,8.1041928396944,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2005,72,0.0,249468.0,16.5894299494654,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,209428.0,11.7425884875206,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,0.0,159885.0,6.94510090005765,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2005,72,12.0,580815.0,25.9988767020495,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,41529.0,4.58306536551432,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,0.0,66174.0,8.36103279715382,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2005,72,0.0,82027.0,11.1025124386003,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,195160.0,16.2434724984842,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2005,72,0.0,153381.0,14.9351617134549,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2005,72,0.0,86529.0,17.1347791671963,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,174701.0,11.3024292120793,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,254762.0,21.9279231092996,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,117041.0,13.7984727575019,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,11.0,134831.0,15.4426150723132,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,238.0,788148.0,41.9502362505023,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2005,72,1.0,201148.0,16.8177493061312,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,253068.0,23.5980694942118,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,69.0,160208.0,9.48778489704379,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,160.0,320963.0,34.3958790026672,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2005,72,1.0,183337.0,13.0308784964012,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,1.0,94792.0,8.95719410442592,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2005,72,0.0,148427.0,10.829690434882,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,5.0,158247.0,21.1321427308887,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,385133.0,45.0815506247835,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,1.0,88431.0,12.9703838198827,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,116532.0,65.8236287066106,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,11.0,4774839.0,819.25002366994,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,368124.0,45.7068208604595,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,59168.0,24.4748041285094,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,166084.0,52.6941803658352,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,235440.0,79.4444912979956,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,127981.0,22.2185874333195,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,82227.0,17.9441985700341,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,7.0,406176.0,35.890208581428,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,59401.0,32.1127971110975,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,56.0,513826.0,118.086634335274,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,4.0,246106.0,44.4341244933031,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,4.0,144205.0,17.3028866048451,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,79849.0,10.3778103836699,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,440902.0,86.8317910186978,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2005,72,0.0,151776.0,33.2374770061028,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,111566.0,41.4219264943032,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,125838.0,31.3741023383141,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2005,72,0.0,225724.0,31.823981540158,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,273187.0,52.8172471206056,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,227105.0,45.4225410260808,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,440804.0,58.1821970498639,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,334020.0,72.1040136757918,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,314501.0,63.9515323748978,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,1.0,137238.0,41.8928941815332,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,210991.0,54.8644463176846,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,75317.0,14.9464019375586,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,192213.0,64.4625187221927,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,143489.0,41.506796693024,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,179822.0,31.2339118110517,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,217447.0,64.7903979207823,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,187324.0,38.5062005911929,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,2.0,267979.0,55.3950073029529,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,225396.0,46.7158862992499,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,273247.0,57.6991816108439,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2005,72,1.0,260827.0,72.4901588660259,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,715134.0,80.0524759153333,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,216038.0,55.3192577692815,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,86354.0,21.3671554107383,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,119882.0,32.6846066216363,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,4.0,194079.0,44.7137223259835,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,50730.0,17.2040374086973,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,2.0,173627.0,37.5134804447039,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,273232.0,39.3180683566548,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2005,72,1.0,134618.0,35.1020905569432,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2005,72,1.0,104841.0,31.9126302810772,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2005,72,17.0,1507769.0,1056.62799776756,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,4.0,184008.0,87.4660732442777,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,162288.0,46.9470189837477,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,339666.0,82.5401016057496,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,77271.0,60.9636613862622,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,2.0,189488.0,60.4260365442468,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,123640.0,55.1636006886667,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,551482.0,76.9951333310942,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,201937.0,78.2102171522426,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2005,72,5.0,152991.0,92.3926645028905,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,60737.0,47.9554862070557,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2005,72,0.0,226854.0,108.992023781759,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2005,72,1.0,28650.0,15.7981516352422,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,97284.0,59.3062462621202,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,3.0,464138.0,236.671563241787,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2005,72,1.0,669718.0,175.603288371083,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2005,72,1.0,172449.0,72.8292519891935,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2005,72,7.0,173407.0,103.703775686396,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,160196.0,102.14605346188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2005,72,1.0,476629.0,267.022631900819,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,2.0,106294.0,74.9654028456678,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,197966.0,225.385196717325,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2005,72,304.0,11329547.0,2488.12135246054,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,150417.0,38.1879080979701,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,103636.0,36.8341056966939,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2005,72,2.0,134094.0,41.803104119496,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,55.0,746909.0,71.6639101308621,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,217456.0,95.9372206674142,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,44173.0,19.2415832608308,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,41.0,60203.0,29.9653753805661,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,75482.0,31.1772667187565,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2005,72,0.0,132750.0,48.873846994105,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2005,72,2.0,205268.0,37.0197193915557,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2005,72,2.0,95809.0,47.5215572171413,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2005,72,1.0,389219.0,112.966556899923,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2005,72,4.0,410657.0,86.5439425680685,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2005,72,49.0,952029.0,158.500822148965,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2005,72,1.0,105276.0,34.2128691740087,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,2.0,178738.0,26.0120249204495,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,246113.0,45.834788671895,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,246980.0,54.8536817277003,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,156071.0,40.3140485449468,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2005,72,2.0,559817.0,65.946928984236,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2005,72,0.0,338880.0,83.9137008911581,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2005,72,0.0,175462.0,29.732129312175,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2005,72,0.0,198867.0,45.6346661653631,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2005,72,2.0,486415.0,77.4262247075606,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2005,72,0.0,301841.0,95.1750887360217,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2005,72,0.0,242571.0,82.3550876583559,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,564411.0,242.763658465565,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,543582.0,143.834793522515,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,182110.0,103.264663937409,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,419326.0,77.2661239402454,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2005,72,1.0,383296.0,164.041160782266,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,1.0,2481207.0,798.069305538907,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,175827.0,109.879540140714,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,108276.0,37.7651665053222,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,1.0,150458.0,40.9945675457621,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2005,72,0.0,578786.0,33.086679628786,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,112768.0,49.0201366603203,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,333776.0,68.3041311413826,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,262853.0,36.8124744564694,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,1.0,291213.0,52.3249425490875,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2005,72,0.0,247588.0,32.1839362272446,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,182196.0,48.8933981092304,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,1.0,240341.0,107.673934471812,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,144874.0,21.9970296037104,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,1.0,199420.0,48.1326844724661,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,1284589.0,302.678335532019,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,587636.0,730.721082169545,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,476238.0,151.73828053114,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,70806.0,69.6326768745682,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,1363085.0,339.268402477769,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2005,72,0.0,399148.0,147.635261215781,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,26676.0,12.7305345737723,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,72866.0,16.4834235544112,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,1.0,272867.0,143.184770568183,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,265496.0,23.7977220265003,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2005,72,0.0,221457.0,108.628631543967,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,1826295.0,2692.03722114627,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,451359.0,756.852679106142,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,1371225.0,1763.94485648071,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,0.0,952229.0,648.819236663124,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,5.0,13474450.0,5709.92988434016,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2005,72,1.0,1327922.0,644.989726326402,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2005,72,18.0,1441010.0,1058.2007509783,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,262293.0,25.7844752146642,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,240506.0,23.4442965364081,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,1.0,129246.0,31.9152145660912,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,113818.0,23.4316478317444,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,207268.0,29.2921233056121,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,1.0,176793.0,34.5889852769783,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,82046.0,34.6926562076722,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,33571.0,25.7815299282541,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,2.0,507168.0,325.921056268919,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,274140.0,121.019689708128,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,2.0,699127.0,198.839654321192,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,43885.0,19.2780036326064,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,131498.0,21.3323887280775,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,70285.0,31.1222266921298,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,180448.0,39.8671216640205,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,119543.0,43.3368315654341,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,76181.0,25.0652930626263,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,1.0,97254.0,30.7872811955745,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,150156.0,15.8746835572901,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,102815.0,18.0625839312703,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,417873.0,62.5604531545357,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,1.0,340638.0,38.9857458487636,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,423468.0,49.5180241047603,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,2.0,450969.0,81.2227216753944,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,91107.0,39.2067911739405,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,1.0,224528.0,41.4862468191901,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,153544.0,39.3370727980127,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,82487.0,16.7651435699514,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,2.0,382422.0,23.6065929571667,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,88511.0,16.3731635320935,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,122852.0,20.2221227364093,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,95094.0,33.5028186361656,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,118881.0,21.7434165951432,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,58401.0,23.0829477191793,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,28957.0,8.38466617490983,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,49381.0,21.4829237654513,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,3075128.0,360.822243528108,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2005,72,0.0,273979.0,44.9502562194043,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2005,72,0.0,85595.0,34.9774219819312,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,161358.0,37.8580151737264,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,374235.0,62.1382613634101,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,150041.0,30.9484512061577,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,328500.0,36.3648215011757,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,142418.0,45.2805455957338,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,1.0,239688.0,25.4907997895232,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,131014.0,68.6264447422593,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,773931.0,166.698744162713,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,123845.0,18.8046095400205,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,294731.0,18.7194124471262,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,188493.0,35.596200293062,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,613579.0,129.677576665759,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,484959.0,315.786937547151,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,51094.0,33.5897767792219,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,73540.0,34.5220978326922,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,822530.0,283.891583675608,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2005,72,0.0,22292.0,9.5034620044674,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,362853.0,78.3590375338305,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,1.0,354066.0,167.524372893695,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2005,72,0.0,173401.0,58.3576066682144,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,162451.0,46.9872114768853,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,141637.0,37.1542898986489,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,175391.0,33.6775154695013,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,217894.0,38.4269674334368,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2005,72,0.0,59202.0,19.2369460352214,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,66792.0,30.0887891800037,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,207297.0,19.1451238758079,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,183142.0,35.9593764618356,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,162174.0,33.1933737389294,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2005,72,0.0,320691.0,45.3111772519865,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,159434.0,18.9366706021185,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,42325.0,28.2409513648622,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2005,72,0.0,71896.0,19.919607716513,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2005,72,0.0,121597.0,33.5009104727567,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2005,72,0.0,158912.0,9.2221236608186,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2005,72,0.0,729152.0,146.610796400274,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,114839.0,10.235490780325,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,373105.0,31.7990364964472,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,68118.0,22.6821286281787,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,317715.0,57.1430665733625,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,297270.0,73.4709020874401,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,1.0,160291.0,21.127046151441,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,195950.0,94.5947048223712,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2005,72,0.0,298028.0,114.316690658754,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,140396.0,28.7676485884566,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,1.0,3717842.0,663.639443045998,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,325130.0,36.9793340722161,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,131283.0,22.3146043603417,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,399767.0,12.8633512479859,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,203335.0,11.7572109593995,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,179093.0,12.572395492289,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,121504.0,7.40019198792729,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,501328.0,48.5197960319211,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,58854.0,9.28731288315543,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2005,72,0.0,261252.0,28.2071090804181,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2005,72,0.0,131303.0,1.58134749612595,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2005,72,0.0,104556.0,3.76852896388041,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2005,72,5.0,112712.0,2.70519284106189,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2005,72,6.0,817161.0,28.9269206871585,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2005,72,1.0,53025.0,3.29656074747821,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2005,72,2.0,74696.0,4.34627993044464,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2005,72,0.0,138788.0,2.93706974103197,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2005,72,0.0,81531.0,6.05351377011461,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2005,72,0.0,109283.0,4.8401923035801,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2005,72,6.0,439604.0,11.7565068293112,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2005,72,2.0,201809.0,8.97650025129238,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2005,72,37.0,113619.0,0.916194731614373,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2005,72,0.0,90140.0,1.75364155120888,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2005,72,17.0,125791.0,2.94137696053644,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2005,72,19.0,80237.0,1.34626778911783,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2005,72,69.0,79184.0,1.4418373165567,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,11.0,132377.0,2.42693321386163,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2005,72,37.0,169332.0,3.38376492756792,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,259.0,28958.0,0.619236232041203,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2005,72,8.0,107171.0,1.26170074423455,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,21.0,86631.0,1.43428208679769,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,27.0,64968.0,2.03094249883975,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2005,72,2.0,67002.0,2.13652618057562,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,8.0,134294.0,6.01589701513177,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2005,72,3.0,100565.0,5.32681514820464,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2005,72,4.0,27124.0,4.04754921537269,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,80.0,32300.0,3.4973998062176,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,7.0,828774.0,30.017155463903,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2005,72,0.0,131621.0,2.46843409124091,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,3.0,81249.0,7.92425227984835,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,12.0,49856.0,1.84121616934691,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,21.0,246525.0,10.1036432844283,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2005,72,0.0,25556.0,2.38537575091332,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2005,72,1.0,75465.0,3.09544403505373,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2005,72,0.0,92721.0,4.57939580131591,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2005,72,3.0,53582.0,4.84746258024725,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2005,72,21.0,217770.0,6.19412264976713,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2005,72,3.0,59951.0,2.81478626156081,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2005,72,6.0,214859.0,16.3278658630614,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2005,72,10.0,504827.0,60.3315231929517,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2005,72,1.0,62225.0,8.79945965842184,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2005,72,2.0,103862.0,19.02138600459,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2005,72,1274.0,1958925.0,289.999325891043,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2005,72,2.0,95935.0,5.52018938923496,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2005,72,6.0,1029841.0,26.9898693006309,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2005,72,159.0,380223.0,6.78275025075821,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2005,72,3.0,109056.0,8.01680508669645,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2005,72,18.0,344110.0,16.2922609149587,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2005,72,2.0,93197.0,9.78350361070825,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2005,72,1.0,126929.0,8.33477915972676,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2005,72,19.0,96439.0,5.99916750092293,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2005,72,14.0,2333108.0,403.355159999444,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2006,73,246.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2006,73,9.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2006,73,25.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2006,73,1019.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2006,73,116.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2006,73,407.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2006,73,135.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2006,73,4.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2006,73,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2006,73,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2006,73,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2006,73,78.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2006,73,2.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2006,73,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2006,73,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2006,73,1.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2006,73,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2006,73,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2006,73,1.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2006,73,66.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2006,73,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2006,73,5.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2006,73,1.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2006,73,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2006,73,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2006,73,0.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2006,73,0.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2006,73,1.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2006,73,25.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2006,73,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2006,73,24.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2006,73,16.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2006,73,1.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2006,73,1.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2006,73,4.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2006,73,1.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2006,73,465.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2006,73,26.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2006,73,7.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2006,73,32.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2006,73,66.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2006,73,39.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2006,73,15.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2006,73,815.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2006,73,2.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2006,73,17.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2006,73,25.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2006,73,111.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2006,73,19.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2006,73,62.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2006,73,46.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2006,73,11.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2006,73,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2006,73,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2006,73,396.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2006,73,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2006,73,12.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2006,73,45.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2006,73,60.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2006,73,267.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2006,73,40.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2006,73,61.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2006,73,0.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2006,73,20.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2006,73,37.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2006,73,33.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2006,73,3.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2006,73,10.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2006,73,6.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2006,73,0.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2006,73,10.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2006,73,74.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2006,73,15.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2006,73,78.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2006,73,30.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2006,73,1.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2006,73,6.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2006,73,2.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2006,73,2.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2006,73,2.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2006,73,22.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2006,73,14.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2006,73,6.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2006,73,1.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2006,73,0.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2006,73,9.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2006,73,18.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2006,73,14.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2006,73,35.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2006,73,9.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2006,73,17.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2006,73,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2006,73,0.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2006,73,2.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2006,73,4.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2006,73,22.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2006,73,6.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2006,73,2.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2006,73,90.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2006,73,6.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2006,73,17.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2006,73,2.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2006,73,14.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2006,73,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2006,73,76.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2006,73,17.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2006,73,20.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2006,73,23.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2006,73,2.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2006,73,17.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2006,73,1.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2006,73,19.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2006,73,88.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2006,73,0.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2006,73,65.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2006,73,312.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2006,73,26.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2006,73,46.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2006,73,49.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2006,73,2.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2006,73,126.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2006,73,11.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2006,73,4.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2006,73,1.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2006,73,0.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2006,73,1.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2006,73,1.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2006,73,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2006,73,2.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2006,73,0.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2006,73,17.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2006,73,0.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2006,73,1.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,14.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,1.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,3.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,20.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2006,73,22.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2006,73,6.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2006,73,11.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,7.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,1.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,0.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,0.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,3.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,1.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2006,73,10.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2006,73,2.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2006,73,0.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2006,73,20.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2006,73,71.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2006,73,1.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2006,73,38.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2006,73,4.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2006,73,11.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2006,73,3.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2006,73,1.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2006,73,2.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2006,73,21.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2006,73,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2006,73,0.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2006,73,1.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2006,73,0.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2006,73,0.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2006,73,3.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2006,73,0.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2006,73,44.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2006,73,5.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2006,73,10.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2006,73,2.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2006,73,63.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2006,73,1.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2006,73,10.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2006,73,8.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2006,73,1.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2006,73,0.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2006,73,9.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2006,73,3.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2006,73,0.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2006,73,5.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2006,73,1.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2006,73,0.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2006,73,17.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2006,73,20.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2006,73,5.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2006,73,2.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2006,73,5.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2006,73,196.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2006,73,0.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2006,73,1.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2006,73,8.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2006,73,123.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2006,73,18.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2006,73,0.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2006,73,2.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2006,73,0.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2006,73,0.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2006,73,0.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2006,73,1.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2006,73,44.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2006,73,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2006,73,2.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2006,73,3.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2006,73,3.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2006,73,130.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2006,73,2.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2006,73,2.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2006,73,0.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2006,73,5.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,0.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,3.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2006,73,4.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2006,73,9.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,1.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,5.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2006,73,18.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2006,73,3.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2006,73,1.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2006,73,2.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2006,73,1.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2006,73,6.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2006,73,48.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2006,73,2.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2006,73,1.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2006,73,0.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2006,73,6.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2006,73,8.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2006,73,43.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2006,73,12.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2006,73,44.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2006,73,0.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2006,73,6.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2006,73,9.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2006,73,40.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2006,73,1.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,1.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,5.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,38.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2006,73,11.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2006,73,186.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2006,73,31.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2006,73,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2006,73,0.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2006,73,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2006,73,5.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2006,73,4.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,0.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,33.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2006,73,43.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,3.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,258.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2006,73,3.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,1.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,0.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2006,73,63.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,0.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2006,73,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2006,73,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2006,73,1.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,87.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,922.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2006,73,9.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,2.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,270.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,886.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2006,73,5.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,1.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2006,73,0.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,4.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,1.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,1.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,27.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,2.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,2.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,1.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,1.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,1.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,111.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,37.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,1.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,1.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2006,73,2.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2006,73,2.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,1.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,1.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,4.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,1.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2006,73,2.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,2.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,40.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,55.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,9.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2006,73,4.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2006,73,2.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2006,73,313.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,9.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2006,73,1.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,3.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2006,73,2.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,2.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,0.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,7.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,6.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2006,73,1.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2006,73,0.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2006,73,1.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,3.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,14.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2006,73,15.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2006,73,4.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2006,73,123.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2006,73,0.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2006,73,1.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,6.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2006,73,4.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2006,73,1793.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,1.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,9.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2006,73,29.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,348.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,134.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,5.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,110.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,2.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2006,73,7.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2006,73,15.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2006,73,9.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2006,73,12.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2006,73,15.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2006,73,322.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2006,73,1.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,4.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,21.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,3.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,1.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2006,73,1.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2006,73,1.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2006,73,1.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2006,73,2.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2006,73,28.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2006,73,1.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2006,73,1.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2006,73,2.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,3.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2006,73,3.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2006,73,1.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,22.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,3.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,2.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,8.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2006,73,6.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,5.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,3.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,1.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,1.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2006,73,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,2.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,2.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,7.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,1.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,2.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2006,73,0.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,9.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,2.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2006,73,0.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,6.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,18.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,8.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,69.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2006,73,3.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2006,73,182.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,2.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,14.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,2.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,3.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,5.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,6.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,1.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,2.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2006,73,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2006,73,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,1.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,1.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,1.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,1.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,1.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2006,73,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2006,73,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2006,73,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,1.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2006,73,1.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2006,73,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2006,73,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2006,73,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2006,73,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2006,73,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,3.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2006,73,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2006,73,4.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2006,73,4.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2006,73,8.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2006,73,22.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2006,73,19.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2006,73,18.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2006,73,17.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2006,73,7.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2006,73,3.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2006,73,32.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2006,73,26.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2006,73,95.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2006,73,4.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2006,73,17.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2006,73,20.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2006,73,39.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,18.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2006,73,64.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,108.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2006,73,4.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,19.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,36.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2006,73,2.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,153.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2006,73,2.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2006,73,14.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,102.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,171.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2006,73,3.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,36.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,14.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,79.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2006,73,3.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2006,73,8.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2006,73,7.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2006,73,20.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2006,73,47.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2006,73,24.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2006,73,17.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2006,73,23.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2006,73,12.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2006,73,14.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2006,73,3808.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2006,73,2.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2006,73,15.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2006,73,281.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2006,73,30.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2006,73,54.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2006,73,6.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2006,73,7.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2006,73,148.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2006,73,77.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2006,74,171.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2006,74,16.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2006,74,21.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2006,74,784.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2006,74,63.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2006,74,263.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2006,74,96.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2006,74,11.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2006,74,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2006,74,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2006,74,1.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2006,74,36.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2006,74,1.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2006,74,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2006,74,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2006,74,5.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2006,74,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2006,74,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2006,74,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2006,74,68.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2006,74,1.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2006,74,3.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2006,74,2.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2006,74,1.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2006,74,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2006,74,2.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2006,74,2.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2006,74,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2006,74,6.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2006,74,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2006,74,28.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2006,74,22.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2006,74,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2006,74,1.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2006,74,15.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2006,74,13.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2006,74,374.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2006,74,20.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2006,74,5.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2006,74,36.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2006,74,61.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2006,74,28.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2006,74,11.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2006,74,88.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2006,74,2.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2006,74,33.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2006,74,37.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2006,74,54.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2006,74,27.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2006,74,157.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2006,74,62.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2006,74,56.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2006,74,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2006,74,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2006,74,355.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2006,74,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2006,74,31.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2006,74,52.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2006,74,85.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2006,74,276.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2006,74,67.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2006,74,109.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2006,74,3.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2006,74,43.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2006,74,31.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2006,74,48.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2006,74,6.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2006,74,8.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2006,74,9.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2006,74,1.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2006,74,14.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2006,74,271.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2006,74,15.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2006,74,38.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2006,74,9.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2006,74,3.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2006,74,12.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2006,74,2.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2006,74,1.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2006,74,11.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2006,74,22.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2006,74,20.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2006,74,9.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2006,74,1.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2006,74,6.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2006,74,7.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2006,74,17.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2006,74,22.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2006,74,20.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2006,74,9.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2006,74,1.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2006,74,1.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2006,74,2.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2006,74,2.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2006,74,31.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2006,74,37.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2006,74,39.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2006,74,3.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2006,74,64.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2006,74,10.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2006,74,47.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2006,74,5.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2006,74,8.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2006,74,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2006,74,84.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2006,74,18.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2006,74,19.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2006,74,78.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2006,74,2.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2006,74,34.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2006,74,12.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2006,74,71.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2006,74,31.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2006,74,5.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2006,74,80.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2006,74,295.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2006,74,26.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2006,74,42.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2006,74,97.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2006,74,2.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2006,74,102.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2006,74,16.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2006,74,5.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2006,74,0.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2006,74,2.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2006,74,8.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2006,74,4.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2006,74,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2006,74,4.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2006,74,1.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2006,74,3.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2006,74,4.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2006,74,1.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,11.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,3.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,1.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,21.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2006,74,57.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2006,74,3.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2006,74,26.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,5.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,1.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,0.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,2.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,2.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,1.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2006,74,3.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2006,74,6.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2006,74,0.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2006,74,27.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2006,74,87.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2006,74,4.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2006,74,27.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2006,74,9.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2006,74,56.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2006,74,1.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2006,74,1.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2006,74,11.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2006,74,20.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2006,74,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2006,74,5.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2006,74,4.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2006,74,1.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2006,74,5.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2006,74,0.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2006,74,2.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2006,74,33.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2006,74,0.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2006,74,8.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2006,74,1.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2006,74,5.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2006,74,1.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2006,74,6.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2006,74,3.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2006,74,3.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2006,74,0.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2006,74,15.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2006,74,10.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2006,74,0.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2006,74,19.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2006,74,1.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2006,74,0.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2006,74,27.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2006,74,17.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2006,74,8.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2006,74,1.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2006,74,4.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2006,74,113.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2006,74,1.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2006,74,3.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2006,74,15.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2006,74,119.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2006,74,16.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2006,74,0.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2006,74,2.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2006,74,0.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2006,74,1.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2006,74,0.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2006,74,0.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2006,74,15.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2006,74,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2006,74,1.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2006,74,0.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2006,74,0.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2006,74,179.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2006,74,4.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2006,74,0.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2006,74,0.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2006,74,0.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,2.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,1.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2006,74,20.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2006,74,6.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,4.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,7.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2006,74,16.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2006,74,1.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2006,74,0.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2006,74,1.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2006,74,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2006,74,55.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2006,74,75.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2006,74,3.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2006,74,0.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2006,74,2.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2006,74,3.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2006,74,54.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2006,74,29.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2006,74,7.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2006,74,42.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2006,74,8.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2006,74,8.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2006,74,11.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2006,74,84.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2006,74,1.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,3.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,1.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,63.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2006,74,12.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2006,74,55.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2006,74,60.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2006,74,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2006,74,5.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2006,74,1.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2006,74,7.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2006,74,8.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,1.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,85.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2006,74,45.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,2.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,17.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,217.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2006,74,6.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,1.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,5.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2006,74,174.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,1.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2006,74,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2006,74,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2006,74,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,1.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,0.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,0.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,262.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,1703.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2006,74,8.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,1.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,366.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,1329.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2006,74,16.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,0.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2006,74,8.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,2.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,3.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,81.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,20.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,2.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,27.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,2.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,188.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,3.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,15.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,9.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2006,74,9.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,1.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2006,74,2.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,3.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,3.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,1.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,2.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,2.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,3.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,26.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,1.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,1.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,14.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2006,74,2.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2006,74,2.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2006,74,1.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,1.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,126.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,29.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,1.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,75.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,22.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2006,74,3.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2006,74,4.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2006,74,804.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,13.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2006,74,0.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,2.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2006,74,1.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,0.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,3.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,2.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,6.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2006,74,1.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2006,74,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2006,74,2.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2006,74,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,0.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,22.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2006,74,34.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2006,74,2.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2006,74,549.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2006,74,0.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2006,74,5.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,37.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2006,74,6.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2006,74,3216.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,9.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,46.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2006,74,31.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,871.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,606.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,19.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,101.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,17.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2006,74,20.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2006,74,65.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2006,74,27.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2006,74,63.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2006,74,47.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2006,74,692.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2006,74,2.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,18.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,145.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,7.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,105.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2006,74,2.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2006,74,0.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2006,74,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2006,74,2.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2006,74,20.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2006,74,2.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2006,74,1.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2006,74,4.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,4.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2006,74,2.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2006,74,1.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2006,74,1.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,92.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,1.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,53.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2006,74,15.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,37.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,1.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,2.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,0.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2006,74,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,2.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,7.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,2.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,5.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2006,74,1.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,31.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,0.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2006,74,0.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,22.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,129.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,14.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,121.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2006,74,2.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2006,74,593.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,1.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,2.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,3.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,1.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,4.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,3.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,8.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,2.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,2.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,1.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,2.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,4.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,19.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,2.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2006,74,2.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2006,74,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,3.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,1.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,3.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,1.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,1.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2006,74,1.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,1.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2006,74,1.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,1.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,1.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,1.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,3.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2006,74,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,1.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2006,74,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2006,74,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2006,74,1.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2006,74,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2006,74,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,1.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2006,74,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,1.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,5.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,1.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,1.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2006,74,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2006,74,4.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2006,74,2.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2006,74,25.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2006,74,64.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2006,74,49.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2006,74,20.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2006,74,44.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2006,74,69.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2006,74,3.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2006,74,135.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2006,74,133.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2006,74,45.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2006,74,4.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2006,74,15.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2006,74,23.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2006,74,74.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,17.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2006,74,86.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,60.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2006,74,7.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,11.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,19.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2006,74,2.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,144.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2006,74,2.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2006,74,8.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,8.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,259.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2006,74,5.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,75.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,12.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,163.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2006,74,7.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2006,74,5.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2006,74,8.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2006,74,14.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2006,74,61.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2006,74,8.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2006,74,29.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2006,74,39.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2006,74,4.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2006,74,28.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2006,74,3749.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2006,74,0.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2006,74,7.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2006,74,472.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2006,74,25.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2006,74,67.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2006,74,14.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2006,74,20.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2006,74,66.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2006,74,50.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2006,75,47.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2006,75,7.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2006,75,18.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2006,75,192.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2006,75,26.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2006,75,66.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2006,75,50.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2006,75,1.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2006,75,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2006,75,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2006,75,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2006,75,20.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2006,75,7.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2006,75,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2006,75,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2006,75,8.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2006,75,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2006,75,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2006,75,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2006,75,110.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2006,75,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2006,75,2.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2006,75,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2006,75,2.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2006,75,1.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2006,75,3.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2006,75,2.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2006,75,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2006,75,1.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2006,75,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2006,75,5.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2006,75,13.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2006,75,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2006,75,5.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2006,75,1.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2006,75,18.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2006,75,326.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2006,75,27.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2006,75,12.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2006,75,37.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2006,75,44.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2006,75,30.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2006,75,69.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2006,75,36.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2006,75,15.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2006,75,30.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2006,75,33.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2006,75,65.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2006,75,47.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2006,75,43.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2006,75,121.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2006,75,76.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2006,75,1.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2006,75,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2006,75,285.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2006,75,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2006,75,14.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2006,75,131.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2006,75,79.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2006,75,264.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2006,75,207.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2006,75,260.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2006,75,15.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2006,75,108.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2006,75,10.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2006,75,46.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2006,75,10.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2006,75,22.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2006,75,12.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2006,75,3.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2006,75,5.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2006,75,141.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2006,75,17.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2006,75,22.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2006,75,22.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2006,75,31.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2006,75,40.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2006,75,11.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2006,75,1.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2006,75,1.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2006,75,46.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2006,75,21.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2006,75,10.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2006,75,3.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2006,75,5.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2006,75,4.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2006,75,13.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2006,75,25.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2006,75,26.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2006,75,21.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2006,75,2.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2006,75,4.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2006,75,2.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2006,75,1.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2006,75,88.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2006,75,73.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2006,75,66.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2006,75,7.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2006,75,55.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2006,75,38.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2006,75,177.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2006,75,8.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2006,75,32.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2006,75,1.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2006,75,71.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2006,75,31.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2006,75,5.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2006,75,105.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2006,75,7.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2006,75,59.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2006,75,29.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2006,75,43.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2006,75,19.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2006,75,10.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2006,75,220.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2006,75,522.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2006,75,51.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2006,75,93.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2006,75,131.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2006,75,5.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2006,75,75.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2006,75,22.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2006,75,6.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2006,75,2.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2006,75,5.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2006,75,29.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2006,75,12.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2006,75,1.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2006,75,39.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2006,75,0.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2006,75,10.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2006,75,6.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2006,75,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,12.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,13.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,11.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,23.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2006,75,54.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2006,75,10.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2006,75,41.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,3.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,2.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,3.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,7.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,3.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,0.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2006,75,1.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2006,75,7.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2006,75,0.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2006,75,37.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2006,75,161.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2006,75,15.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2006,75,42.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2006,75,32.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2006,75,52.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2006,75,17.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2006,75,4.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2006,75,31.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2006,75,48.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2006,75,1.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2006,75,10.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2006,75,8.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2006,75,0.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2006,75,3.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2006,75,4.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2006,75,3.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2006,75,11.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2006,75,4.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2006,75,22.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2006,75,2.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2006,75,17.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2006,75,16.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2006,75,23.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2006,75,2.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2006,75,0.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2006,75,22.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2006,75,24.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2006,75,0.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2006,75,24.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2006,75,3.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2006,75,0.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2006,75,88.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2006,75,98.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2006,75,125.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2006,75,3.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2006,75,48.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2006,75,116.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2006,75,19.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2006,75,7.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2006,75,14.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2006,75,221.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2006,75,15.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2006,75,0.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2006,75,4.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2006,75,3.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2006,75,0.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2006,75,1.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2006,75,3.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2006,75,6.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2006,75,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2006,75,2.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2006,75,4.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2006,75,1.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2006,75,124.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2006,75,2.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2006,75,1.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,3.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2006,75,8.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2006,75,29.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,11.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,0.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2006,75,27.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2006,75,3.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2006,75,10.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2006,75,0.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2006,75,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2006,75,31.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2006,75,155.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2006,75,1.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2006,75,0.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2006,75,5.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2006,75,32.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2006,75,197.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2006,75,72.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2006,75,10.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2006,75,65.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2006,75,6.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2006,75,29.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2006,75,31.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2006,75,130.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2006,75,2.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,2.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,0.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,2.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,88.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2006,75,28.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2006,75,18.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2006,75,40.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2006,75,2.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2006,75,29.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2006,75,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2006,75,5.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2006,75,11.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,7.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,224.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2006,75,41.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,7.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,35.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,251.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2006,75,24.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,23.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,11.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2006,75,177.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,7.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2006,75,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2006,75,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2006,75,1.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,7.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,1.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,381.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,2790.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2006,75,60.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,24.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,439.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,1675.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2006,75,132.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,6.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2006,75,4.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,10.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,7.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,408.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,124.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,1.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,1.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,5.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,2.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,9.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,0.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,269.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,15.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,44.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,32.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2006,75,34.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,5.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2006,75,2.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,3.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,6.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,4.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,1.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2006,75,1.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,1.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,3.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,84.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,1.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,1.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,121.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2006,75,35.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2006,75,2.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2006,75,11.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,2.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,343.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,38.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,2.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,35.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,153.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2006,75,10.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2006,75,6.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2006,75,1120.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,37.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2006,75,2.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,5.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2006,75,8.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,4.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,0.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,5.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,5.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2006,75,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2006,75,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2006,75,5.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2006,75,12.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,6.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,22.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2006,75,111.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2006,75,4.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2006,75,2630.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2006,75,27.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2006,75,6.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,48.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2006,75,22.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2006,75,4882.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,97.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,131.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2006,75,136.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,3320.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,1514.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,61.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,165.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,162.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2006,75,70.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2006,75,345.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2006,75,146.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2006,75,66.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2006,75,146.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2006,75,1775.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2006,75,3.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,264.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,851.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,68.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,193.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2006,75,14.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2006,75,7.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2006,75,3.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2006,75,2.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2006,75,137.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2006,75,11.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2006,75,13.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2006,75,157.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,21.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2006,75,2.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2006,75,10.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2006,75,34.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,444.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,1.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,5.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,91.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2006,75,160.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,85.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,10.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,5.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,4.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2006,75,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,1.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,93.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,3.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,7.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,19.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2006,75,37.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,1.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,173.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,6.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2006,75,19.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,93.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,1.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,397.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,185.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,519.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2006,75,14.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2006,75,3879.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,2.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,2.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,92.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,66.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,6.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,2.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,30.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,14.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,1.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,23.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,4.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,78.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,1.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,3.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2006,75,4.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2006,75,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,1.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,1.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,3.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,1.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,4.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,0.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,1.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,2.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2006,75,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,1.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2006,75,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,1.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,3.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,1.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2006,75,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,1.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2006,75,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2006,75,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2006,75,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2006,75,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2006,75,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2006,75,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,5.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2006,75,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2006,75,2.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2006,75,9.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2006,75,69.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2006,75,307.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2006,75,289.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2006,75,124.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2006,75,545.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2006,75,472.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2006,75,42.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2006,75,567.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2006,75,288.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2006,75,63.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2006,75,10.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2006,75,10.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2006,75,44.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2006,75,170.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,44.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2006,75,182.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,30.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2006,75,13.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,6.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,25.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2006,75,3.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,140.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2006,75,5.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2006,75,13.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,12.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,283.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2006,75,9.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,94.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,29.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,297.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2006,75,11.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2006,75,6.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2006,75,45.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2006,75,6.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2006,75,125.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2006,75,4.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2006,75,29.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2006,75,51.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2006,75,6.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2006,75,33.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2006,75,3649.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2006,75,1.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2006,75,17.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2006,75,694.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2006,75,21.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2006,75,189.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2006,75,18.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2006,75,45.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2006,75,42.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2006,75,80.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2006,76,16.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2006,76,2.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2006,76,22.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2006,76,31.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2006,76,2.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2006,76,18.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2006,76,32.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2006,76,2.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2006,76,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2006,76,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2006,76,2.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2006,76,17.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2006,76,1.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2006,76,1.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2006,76,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2006,76,0.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2006,76,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2006,76,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2006,76,1.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2006,76,70.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2006,76,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2006,76,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2006,76,2.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2006,76,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2006,76,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2006,76,1.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2006,76,4.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2006,76,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2006,76,11.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2006,76,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2006,76,5.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2006,76,3.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2006,76,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2006,76,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2006,76,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2006,76,2.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2006,76,158.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2006,76,11.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2006,76,14.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2006,76,41.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2006,76,41.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2006,76,20.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2006,76,62.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2006,76,21.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2006,76,18.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2006,76,29.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2006,76,21.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2006,76,32.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2006,76,48.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2006,76,39.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2006,76,53.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2006,76,93.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2006,76,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2006,76,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2006,76,122.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2006,76,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2006,76,16.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2006,76,110.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2006,76,59.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2006,76,140.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2006,76,211.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2006,76,312.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2006,76,20.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2006,76,144.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2006,76,4.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2006,76,116.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2006,76,8.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2006,76,15.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2006,76,1.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2006,76,10.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2006,76,14.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2006,76,57.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2006,76,26.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2006,76,35.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2006,76,38.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2006,76,59.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2006,76,24.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2006,76,5.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2006,76,0.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2006,76,11.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2006,76,39.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2006,76,45.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2006,76,20.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2006,76,6.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2006,76,10.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2006,76,5.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2006,76,46.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2006,76,54.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2006,76,56.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2006,76,31.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2006,76,5.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2006,76,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2006,76,5.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2006,76,2.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2006,76,23.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2006,76,129.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2006,76,11.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2006,76,12.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2006,76,38.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2006,76,23.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2006,76,212.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2006,76,5.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2006,76,18.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2006,76,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2006,76,139.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2006,76,57.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2006,76,4.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2006,76,158.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2006,76,22.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2006,76,61.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2006,76,16.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2006,76,58.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2006,76,40.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2006,76,18.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2006,76,375.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2006,76,1221.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2006,76,85.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2006,76,82.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2006,76,68.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2006,76,6.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2006,76,29.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2006,76,23.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2006,76,7.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2006,76,6.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2006,76,9.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2006,76,37.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2006,76,2.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2006,76,2.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2006,76,45.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2006,76,0.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2006,76,21.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2006,76,12.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2006,76,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,10.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,9.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,12.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2006,76,61.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2006,76,14.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2006,76,37.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,10.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,17.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,4.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,13.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,6.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,3.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2006,76,7.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2006,76,25.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2006,76,0.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2006,76,120.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2006,76,336.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2006,76,10.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2006,76,26.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2006,76,47.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2006,76,38.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2006,76,19.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2006,76,5.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2006,76,11.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2006,76,37.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2006,76,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2006,76,45.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2006,76,21.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2006,76,3.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2006,76,5.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2006,76,2.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2006,76,26.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2006,76,26.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2006,76,50.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2006,76,28.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2006,76,0.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2006,76,6.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2006,76,1.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2006,76,18.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2006,76,24.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2006,76,1.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2006,76,1.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2006,76,86.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2006,76,66.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2006,76,2.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2006,76,63.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2006,76,5.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2006,76,1.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2006,76,222.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2006,76,83.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2006,76,42.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2006,76,23.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2006,76,87.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2006,76,101.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2006,76,6.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2006,76,6.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2006,76,54.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2006,76,283.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2006,76,75.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2006,76,5.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2006,76,1.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2006,76,4.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2006,76,3.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2006,76,0.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2006,76,12.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2006,76,7.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2006,76,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2006,76,0.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2006,76,9.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2006,76,6.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2006,76,90.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2006,76,4.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2006,76,2.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2006,76,3.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2006,76,1.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,3.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,4.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2006,76,30.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2006,76,10.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,61.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,1.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,4.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2006,76,50.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2006,76,11.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2006,76,0.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2006,76,5.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2006,76,5.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2006,76,26.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2006,76,159.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2006,76,1.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2006,76,1.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2006,76,5.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2006,76,41.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2006,76,98.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2006,76,97.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2006,76,44.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2006,76,85.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2006,76,7.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2006,76,7.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2006,76,53.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2006,76,354.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2006,76,2.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,1.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,2.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,13.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,69.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2006,76,23.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2006,76,23.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2006,76,30.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2006,76,3.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2006,76,31.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2006,76,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2006,76,9.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2006,76,35.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,8.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,122.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2006,76,20.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,9.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,53.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,156.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2006,76,83.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,18.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,32.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2006,76,192.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,16.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2006,76,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,1.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2006,76,1.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2006,76,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,1.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,45.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,1.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,390.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,2488.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2006,76,113.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,96.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,378.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,1391.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2006,76,114.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,17.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2006,76,16.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,31.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,38.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,2.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,1.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,701.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,127.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,2.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,2.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,5.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,2.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,8.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,3.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,487.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,15.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,83.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,10.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,55.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2006,76,102.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,1.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,2.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2006,76,4.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,4.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,10.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,5.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,3.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2006,76,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,2.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,1.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,3.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,1.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,43.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,32.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,156.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2006,76,131.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2006,76,5.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2006,76,44.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,1.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,154.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,48.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,54.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,170.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2006,76,10.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2006,76,9.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2006,76,1761.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,109.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2006,76,11.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,57.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2006,76,14.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,18.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,0.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,15.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,38.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2006,76,1.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2006,76,3.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2006,76,4.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2006,76,1.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,16.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,96.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2006,76,411.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2006,76,19.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2006,76,2720.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2006,76,63.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2006,76,10.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,41.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2006,76,31.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2006,76,3369.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,112.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,352.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2006,76,145.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,6575.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,1215.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,10.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,135.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,161.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2006,76,132.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2006,76,310.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2006,76,129.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2006,76,44.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2006,76,417.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2006,76,3167.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2006,76,5.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,573.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,1188.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,265.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,103.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2006,76,33.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2006,76,6.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2006,76,3.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2006,76,2.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2006,76,249.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2006,76,14.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2006,76,42.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2006,76,158.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,52.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2006,76,9.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2006,76,17.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2006,76,88.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,626.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,1.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,30.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,82.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2006,76,247.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,183.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,34.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,29.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,5.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2006,76,1.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,2.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,3.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,1.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,276.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,13.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,15.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,28.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2006,76,360.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,1.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,2.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,376.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,12.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2006,76,67.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,100.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,9.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,445.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,287.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,959.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2006,76,18.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2006,76,5228.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,18.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,5.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,3.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,173.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,95.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,12.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,2.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,42.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,1.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,28.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,3.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,1.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,33.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,8.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,116.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,1.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,6.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2006,76,2.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2006,76,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,1.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,1.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,1.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,2.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,2.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,1.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2006,76,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,1.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2006,76,1.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,1.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2006,76,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2006,76,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2006,76,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2006,76,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2006,76,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2006,76,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2006,76,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,8.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,1.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2006,76,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2006,76,0.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2006,76,11.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2006,76,155.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2006,76,606.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2006,76,110.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2006,76,216.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2006,76,1119.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2006,76,443.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2006,76,101.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2006,76,811.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2006,76,114.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2006,76,27.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2006,76,3.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2006,76,4.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2006,76,26.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2006,76,36.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,78.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2006,76,179.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,30.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2006,76,17.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,5.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,24.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2006,76,2.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,42.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2006,76,20.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2006,76,4.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,9.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,116.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2006,76,2.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,93.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,30.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,130.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2006,76,33.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2006,76,38.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2006,76,10.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2006,76,7.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2006,76,204.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2006,76,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2006,76,17.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2006,76,48.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2006,76,5.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2006,76,6.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2006,76,3163.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2006,76,6.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2006,76,18.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2006,76,753.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2006,76,19.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2006,76,309.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2006,76,13.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2006,76,44.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2006,76,46.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2006,76,91.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2006,77,10.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2006,77,1.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2006,77,19.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2006,77,18.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2006,77,2.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2006,77,5.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2006,77,6.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2006,77,1.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2006,77,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2006,77,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2006,77,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2006,77,9.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2006,77,0.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2006,77,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2006,77,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2006,77,1.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2006,77,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2006,77,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2006,77,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2006,77,58.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2006,77,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2006,77,3.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2006,77,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2006,77,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2006,77,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2006,77,0.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2006,77,18.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2006,77,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2006,77,58.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2006,77,1.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2006,77,0.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2006,77,2.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2006,77,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2006,77,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2006,77,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2006,77,2.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2006,77,129.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2006,77,15.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2006,77,29.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2006,77,42.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2006,77,39.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2006,77,14.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2006,77,16.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2006,77,11.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2006,77,27.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2006,77,28.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2006,77,56.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2006,77,23.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2006,77,36.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2006,77,40.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2006,77,21.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2006,77,47.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2006,77,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2006,77,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2006,77,103.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2006,77,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2006,77,43.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2006,77,167.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2006,77,33.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2006,77,109.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2006,77,210.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2006,77,307.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2006,77,4.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2006,77,124.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2006,77,4.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2006,77,193.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2006,77,9.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2006,77,9.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2006,77,3.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2006,77,9.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2006,77,21.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2006,77,57.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2006,77,23.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2006,77,15.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2006,77,48.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2006,77,36.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2006,77,38.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2006,77,13.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2006,77,2.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2006,77,27.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2006,77,103.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2006,77,46.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2006,77,24.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2006,77,23.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2006,77,4.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2006,77,7.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2006,77,18.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2006,77,345.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2006,77,54.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2006,77,44.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2006,77,33.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2006,77,7.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2006,77,2.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2006,77,3.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2006,77,13.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2006,77,105.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2006,77,10.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2006,77,56.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2006,77,16.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2006,77,42.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2006,77,206.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2006,77,19.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2006,77,17.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2006,77,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2006,77,261.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2006,77,147.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2006,77,20.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2006,77,64.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2006,77,40.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2006,77,17.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2006,77,10.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2006,77,60.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2006,77,27.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2006,77,20.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2006,77,232.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2006,77,3960.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2006,77,107.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2006,77,96.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2006,77,119.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2006,77,3.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2006,77,28.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2006,77,31.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2006,77,8.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2006,77,6.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2006,77,5.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2006,77,96.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2006,77,0.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2006,77,1.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2006,77,82.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2006,77,3.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2006,77,32.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2006,77,37.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2006,77,1.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,18.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,3.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,1.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,9.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2006,77,22.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2006,77,20.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2006,77,17.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,29.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,15.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,4.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,9.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,11.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,4.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2006,77,18.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2006,77,52.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2006,77,10.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2006,77,135.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2006,77,732.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2006,77,49.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2006,77,3.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2006,77,18.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2006,77,17.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2006,77,16.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2006,77,5.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2006,77,15.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2006,77,20.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2006,77,3.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2006,77,8.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2006,77,14.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2006,77,1.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2006,77,12.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2006,77,6.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2006,77,15.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2006,77,9.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2006,77,13.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2006,77,41.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2006,77,9.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2006,77,1.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2006,77,8.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2006,77,16.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2006,77,57.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2006,77,6.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2006,77,7.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2006,77,245.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2006,77,75.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2006,77,2.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2006,77,153.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2006,77,8.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2006,77,3.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2006,77,349.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2006,77,94.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2006,77,26.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2006,77,27.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2006,77,40.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2006,77,170.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2006,77,7.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2006,77,50.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2006,77,59.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2006,77,552.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2006,77,71.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2006,77,1.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2006,77,5.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2006,77,6.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2006,77,3.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2006,77,0.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2006,77,33.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2006,77,15.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2006,77,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2006,77,1.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2006,77,16.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2006,77,2.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2006,77,182.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2006,77,3.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2006,77,1.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2006,77,8.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2006,77,5.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,3.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,6.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2006,77,9.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2006,77,19.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,55.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,1.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,11.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2006,77,119.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2006,77,8.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2006,77,2.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2006,77,6.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2006,77,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2006,77,16.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2006,77,78.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2006,77,2.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2006,77,5.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2006,77,3.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2006,77,25.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2006,77,7.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2006,77,50.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2006,77,17.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2006,77,80.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2006,77,7.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2006,77,6.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2006,77,38.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2006,77,263.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2006,77,0.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,1.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,7.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,14.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,90.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2006,77,62.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2006,77,21.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2006,77,28.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2006,77,34.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2006,77,35.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2006,77,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2006,77,14.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2006,77,12.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,7.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,85.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2006,77,14.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,12.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,138.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,102.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2006,77,202.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,22.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,22.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2006,77,281.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,1.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,13.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2006,77,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2006,77,3.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2006,77,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,1.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,87.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,1.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,197.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,902.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2006,77,66.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,71.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,241.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,340.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2006,77,53.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,19.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2006,77,10.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,59.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,36.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,1.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,530.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,69.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,4.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,2.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,5.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,2.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,465.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,12.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,79.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,7.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,39.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2006,77,101.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,1.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2006,77,3.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,2.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,19.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,18.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,1.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2006,77,1.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,2.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,2.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,1.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,36.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,58.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,3.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,84.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2006,77,172.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2006,77,3.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2006,77,141.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,8.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,115.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,58.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,3.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,56.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,137.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2006,77,15.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2006,77,12.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2006,77,1865.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,186.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2006,77,5.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,87.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2006,77,17.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,28.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,1.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,34.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,158.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2006,77,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2006,77,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2006,77,1.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2006,77,1.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,16.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,159.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2006,77,318.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2006,77,20.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2006,77,741.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2006,77,23.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2006,77,9.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,7.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2006,77,16.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2006,77,1619.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,130.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,153.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2006,77,78.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,2562.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,189.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,15.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,51.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,31.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2006,77,74.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2006,77,110.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2006,77,82.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2006,77,16.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2006,77,226.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2006,77,1461.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2006,77,1.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,285.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,223.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,145.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,25.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2006,77,9.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2006,77,3.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2006,77,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2006,77,2.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2006,77,152.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2006,77,6.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2006,77,21.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2006,77,84.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,28.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2006,77,8.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2006,77,7.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2006,77,56.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,282.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,3.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,14.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,36.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2006,77,99.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,69.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,6.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,10.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,0.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2006,77,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,1.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,1.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,2.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,1.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,146.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,1.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,4.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,12.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2006,77,277.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,241.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,5.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2006,77,39.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,40.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,4.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,154.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,92.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,303.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2006,77,7.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2006,77,2170.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,2.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,2.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,16.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,16.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,4.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,20.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,13.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,1.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,3.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,2.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,7.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,3.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,38.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,1.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,1.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2006,77,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2006,77,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,1.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,2.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,1.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,5.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,2.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2006,77,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2006,77,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,1.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,2.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2006,77,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2006,77,1.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2006,77,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2006,77,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2006,77,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2006,77,1.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2006,77,1.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,5.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2006,77,2.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2006,77,2.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2006,77,12.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2006,77,39.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2006,77,302.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2006,77,42.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2006,77,82.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2006,77,378.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2006,77,112.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2006,77,73.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2006,77,280.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2006,77,45.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2006,77,22.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2006,77,2.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2006,77,3.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2006,77,9.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2006,77,17.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,53.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2006,77,253.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,13.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2006,77,41.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,1.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,19.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2006,77,3.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,19.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2006,77,8.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2006,77,4.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,42.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2006,77,1.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,32.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,13.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,41.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2006,77,9.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2006,77,27.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2006,77,9.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2006,77,4.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2006,77,124.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2006,77,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2006,77,17.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2006,77,60.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2006,77,4.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2006,77,11.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2006,77,1746.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2006,77,4.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2006,77,18.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2006,77,399.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2006,77,9.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2006,77,134.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2006,77,8.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2006,77,16.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2006,77,40.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2006,77,81.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2006,78,1.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2006,78,0.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2006,78,4.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2006,78,15.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2006,78,1.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2006,78,4.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2006,78,5.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2006,78,2.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2006,78,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2006,78,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2006,78,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2006,78,8.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2006,78,2.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2006,78,6.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2006,78,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2006,78,0.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2006,78,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2006,78,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2006,78,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2006,78,25.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2006,78,2.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2006,78,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2006,78,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2006,78,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2006,78,1.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2006,78,4.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2006,78,18.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2006,78,1.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2006,78,67.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2006,78,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2006,78,0.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2006,78,0.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2006,78,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2006,78,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2006,78,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2006,78,2.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2006,78,86.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2006,78,10.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2006,78,9.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2006,78,42.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2006,78,21.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2006,78,15.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2006,78,12.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2006,78,3.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2006,78,7.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2006,78,13.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2006,78,26.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2006,78,16.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2006,78,18.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2006,78,14.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2006,78,6.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2006,78,7.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2006,78,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2006,78,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2006,78,61.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2006,78,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2006,78,17.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2006,78,41.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2006,78,1.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2006,78,14.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2006,78,24.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2006,78,137.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2006,78,2.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2006,78,28.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2006,78,1.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2006,78,80.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2006,78,5.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2006,78,6.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2006,78,1.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2006,78,5.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2006,78,13.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2006,78,15.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2006,78,3.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2006,78,17.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2006,78,14.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2006,78,4.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2006,78,22.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2006,78,6.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2006,78,1.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2006,78,22.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2006,78,49.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2006,78,30.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2006,78,2.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2006,78,9.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2006,78,0.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2006,78,18.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2006,78,15.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2006,78,835.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2006,78,36.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2006,78,26.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2006,78,27.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2006,78,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2006,78,0.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2006,78,4.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2006,78,16.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2006,78,91.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2006,78,14.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2006,78,132.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2006,78,1.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2006,78,43.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2006,78,109.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2006,78,18.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2006,78,6.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2006,78,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2006,78,458.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2006,78,383.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2006,78,8.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2006,78,22.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2006,78,36.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2006,78,5.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2006,78,5.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2006,78,12.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2006,78,10.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2006,78,18.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2006,78,105.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2006,78,4300.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2006,78,36.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2006,78,66.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2006,78,26.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2006,78,4.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2006,78,15.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2006,78,25.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2006,78,11.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2006,78,4.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2006,78,7.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2006,78,50.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2006,78,0.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2006,78,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2006,78,31.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2006,78,0.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2006,78,13.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2006,78,21.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2006,78,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,26.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,6.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,25.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2006,78,17.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2006,78,8.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2006,78,3.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,11.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,84.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,7.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,5.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,24.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,10.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2006,78,36.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2006,78,69.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2006,78,13.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2006,78,191.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2006,78,1396.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2006,78,80.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2006,78,2.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2006,78,0.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2006,78,3.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2006,78,31.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2006,78,2.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2006,78,5.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2006,78,13.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2006,78,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2006,78,1.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2006,78,12.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2006,78,0.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2006,78,14.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2006,78,4.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2006,78,9.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2006,78,16.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2006,78,25.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2006,78,25.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2006,78,1.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2006,78,0.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2006,78,6.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2006,78,3.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2006,78,111.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2006,78,36.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2006,78,5.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2006,78,66.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2006,78,49.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2006,78,1.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2006,78,95.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2006,78,6.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2006,78,1.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2006,78,158.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2006,78,55.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2006,78,25.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2006,78,12.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2006,78,5.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2006,78,102.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2006,78,11.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2006,78,88.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2006,78,53.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2006,78,580.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2006,78,65.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2006,78,6.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2006,78,5.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2006,78,7.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2006,78,0.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2006,78,2.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2006,78,16.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2006,78,11.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2006,78,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2006,78,0.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2006,78,17.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2006,78,3.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2006,78,253.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2006,78,6.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2006,78,0.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2006,78,0.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2006,78,3.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,4.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,2.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2006,78,3.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2006,78,10.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,38.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,1.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,5.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2006,78,52.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2006,78,6.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2006,78,2.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2006,78,2.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2006,78,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2006,78,11.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2006,78,26.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2006,78,1.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2006,78,2.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2006,78,1.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2006,78,7.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2006,78,2.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2006,78,30.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2006,78,4.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2006,78,51.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2006,78,0.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2006,78,7.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2006,78,14.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2006,78,91.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2006,78,0.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,5.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,5.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,55.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2006,78,12.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2006,78,3.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2006,78,14.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2006,78,8.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2006,78,13.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2006,78,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2006,78,3.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2006,78,2.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,1.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,17.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2006,78,5.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,25.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,14.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2006,78,42.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,5.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,5.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2006,78,30.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,2.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2006,78,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2006,78,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2006,78,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,40.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,2.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,29.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,125.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2006,78,10.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,13.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,47.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,46.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2006,78,6.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,1.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2006,78,2.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,20.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,8.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,78.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,6.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,1.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,2.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,1.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,5.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,144.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,11.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,35.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,1.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,9.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2006,78,22.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2006,78,1.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,2.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,2.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,5.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,10.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,8.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2006,78,51.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2006,78,1.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2006,78,32.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,24.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,22.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,27.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,27.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2006,78,2.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2006,78,5.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2006,78,536.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,118.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2006,78,2.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,59.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2006,78,23.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,13.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,18.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,70.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2006,78,0.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2006,78,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,5.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,93.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2006,78,33.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2006,78,117.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2006,78,4.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2006,78,1.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,3.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2006,78,8.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2006,78,612.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,34.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,43.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2006,78,21.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,478.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,22.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,0.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,7.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,3.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2006,78,26.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2006,78,34.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2006,78,32.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2006,78,5.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2006,78,44.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2006,78,209.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2006,78,0.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,71.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,42.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,38.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,4.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2006,78,6.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2006,78,1.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2006,78,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2006,78,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2006,78,10.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2006,78,3.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2006,78,1.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2006,78,8.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,12.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2006,78,1.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2006,78,0.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2006,78,2.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,70.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,2.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,1.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2006,78,7.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,7.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,0.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,1.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,1.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2006,78,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,1.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,11.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,1.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,1.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,7.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2006,78,22.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,70.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,1.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2006,78,17.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,7.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,7.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,7.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,45.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2006,78,6.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2006,78,300.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,2.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,2.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,4.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,1.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,3.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,1.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,2.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,1.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,1.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,12.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,2.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2006,78,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2006,78,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,2.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,1.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2006,78,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2006,78,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2006,78,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,1.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2006,78,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,1.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2006,78,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2006,78,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2006,78,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2006,78,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2006,78,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,1.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,1.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,1.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,1.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2006,78,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2006,78,0.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2006,78,14.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2006,78,19.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2006,78,93.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2006,78,15.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2006,78,9.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2006,78,103.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2006,78,19.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2006,78,27.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2006,78,23.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2006,78,15.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2006,78,12.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2006,78,0.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2006,78,3.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2006,78,4.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2006,78,21.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,23.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2006,78,76.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,5.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2006,78,12.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,2.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,8.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2006,78,5.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,5.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2006,78,12.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2006,78,0.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,13.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2006,78,1.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,13.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,2.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,8.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2006,78,1.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2006,78,4.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2006,78,0.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2006,78,3.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2006,78,31.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2006,78,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2006,78,5.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2006,78,7.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2006,78,0.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2006,78,1.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2006,78,495.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2006,78,2.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2006,78,4.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2006,78,91.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2006,78,1.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2006,78,20.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2006,78,1.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2006,78,5.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2006,78,1.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2006,78,33.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2006,79,2.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2006,79,1.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2006,79,6.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2006,79,1.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2006,79,1.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2006,79,1.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2006,79,4.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2006,79,0.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2006,79,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2006,79,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2006,79,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2006,79,4.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2006,79,1.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2006,79,1.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2006,79,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2006,79,0.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2006,79,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2006,79,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2006,79,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2006,79,28.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2006,79,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2006,79,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2006,79,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2006,79,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2006,79,2.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2006,79,5.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2006,79,58.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2006,79,1.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2006,79,59.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2006,79,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2006,79,0.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2006,79,3.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2006,79,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2006,79,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2006,79,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2006,79,3.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2006,79,26.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2006,79,13.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2006,79,4.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2006,79,16.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2006,79,21.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2006,79,6.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2006,79,1.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2006,79,1.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2006,79,0.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2006,79,11.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2006,79,16.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2006,79,5.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2006,79,3.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2006,79,4.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2006,79,5.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2006,79,1.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2006,79,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2006,79,1.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2006,79,46.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2006,79,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2006,79,6.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2006,79,9.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2006,79,1.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2006,79,4.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2006,79,5.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2006,79,57.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2006,79,1.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2006,79,7.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2006,79,2.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2006,79,135.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2006,79,5.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2006,79,2.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2006,79,4.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2006,79,0.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2006,79,23.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2006,79,11.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2006,79,4.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2006,79,9.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2006,79,6.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2006,79,20.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2006,79,10.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2006,79,9.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2006,79,0.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2006,79,7.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2006,79,28.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2006,79,30.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2006,79,1.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2006,79,1.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2006,79,1.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2006,79,9.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2006,79,39.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2006,79,240.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2006,79,63.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2006,79,18.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2006,79,19.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2006,79,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2006,79,3.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2006,79,3.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2006,79,2.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2006,79,33.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2006,79,4.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2006,79,61.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2006,79,1.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2006,79,40.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2006,79,125.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2006,79,13.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2006,79,63.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2006,79,5.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2006,79,472.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2006,79,154.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2006,79,8.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2006,79,6.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2006,79,14.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2006,79,7.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2006,79,4.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2006,79,13.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2006,79,34.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2006,79,17.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2006,79,32.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2006,79,3186.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2006,79,17.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2006,79,50.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2006,79,40.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2006,79,4.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2006,79,7.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2006,79,40.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2006,79,23.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2006,79,3.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2006,79,2.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2006,79,36.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2006,79,0.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2006,79,1.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2006,79,8.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2006,79,0.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2006,79,9.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2006,79,12.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2006,79,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,19.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,1.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,55.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2006,79,19.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2006,79,12.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2006,79,5.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,27.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,91.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,4.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,6.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,25.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,13.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2006,79,46.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2006,79,137.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2006,79,25.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2006,79,187.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2006,79,1102.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2006,79,53.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2006,79,3.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2006,79,1.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2006,79,0.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2006,79,14.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2006,79,2.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2006,79,4.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2006,79,5.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2006,79,1.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2006,79,0.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2006,79,18.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2006,79,3.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2006,79,9.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2006,79,10.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2006,79,6.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2006,79,27.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2006,79,22.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2006,79,40.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2006,79,8.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2006,79,1.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2006,79,11.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2006,79,14.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2006,79,108.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2006,79,10.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2006,79,4.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2006,79,17.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2006,79,7.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2006,79,2.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2006,79,36.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2006,79,2.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2006,79,1.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2006,79,53.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2006,79,28.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2006,79,61.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2006,79,6.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2006,79,3.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2006,79,96.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2006,79,7.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2006,79,46.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2006,79,22.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2006,79,487.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2006,79,59.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2006,79,4.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2006,79,5.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2006,79,3.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2006,79,4.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2006,79,4.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2006,79,19.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2006,79,22.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2006,79,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2006,79,2.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2006,79,22.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2006,79,6.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2006,79,395.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2006,79,3.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2006,79,3.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2006,79,1.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2006,79,3.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,2.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,9.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2006,79,0.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2006,79,6.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,12.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,3.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,2.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2006,79,41.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2006,79,3.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2006,79,4.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2006,79,0.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2006,79,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2006,79,5.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2006,79,4.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2006,79,2.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2006,79,1.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2006,79,1.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2006,79,7.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2006,79,1.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2006,79,3.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2006,79,0.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2006,79,46.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2006,79,5.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2006,79,13.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2006,79,8.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2006,79,44.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2006,79,4.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,2.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,4.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,38.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2006,79,2.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2006,79,2.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2006,79,5.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2006,79,4.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2006,79,0.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2006,79,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2006,79,4.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2006,79,6.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,1.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,10.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2006,79,2.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,7.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,3.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2006,79,10.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,3.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2006,79,5.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,1.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2006,79,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2006,79,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2006,79,1.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,10.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,4.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,34.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2006,79,0.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,2.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,6.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,7.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2006,79,0.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,1.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2006,79,0.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,7.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,2.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,7.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,3.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,1.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,36.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,3.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,18.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,0.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2006,79,2.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2006,79,0.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,2.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,1.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,1.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,1.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2006,79,3.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2006,79,5.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,2.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,11.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,15.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,7.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,7.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2006,79,1.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2006,79,211.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,85.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2006,79,1.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,23.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2006,79,3.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,2.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,5.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,11.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,27.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2006,79,0.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,3.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,56.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2006,79,9.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2006,79,16.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2006,79,1.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,1.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2006,79,4.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2006,79,258.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,12.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,8.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2006,79,9.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,130.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,4.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,3.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,3.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2006,79,2.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2006,79,6.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2006,79,9.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2006,79,1.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2006,79,15.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2006,79,47.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2006,79,0.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,25.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,4.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,14.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2006,79,0.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2006,79,0.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2006,79,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2006,79,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2006,79,2.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2006,79,1.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2006,79,0.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2006,79,3.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,2.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2006,79,0.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2006,79,1.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2006,79,1.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,19.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,2.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,0.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2006,79,2.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,1.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2006,79,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,1.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,8.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,1.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,11.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2006,79,1.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,29.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,2.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2006,79,6.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,6.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,5.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,3.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,41.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2006,79,4.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2006,79,69.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,1.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,1.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,5.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,2.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,2.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2006,79,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2006,79,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2006,79,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2006,79,1.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2006,79,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2006,79,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2006,79,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2006,79,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2006,79,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2006,79,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2006,79,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2006,79,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2006,79,0.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2006,79,6.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2006,79,5.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2006,79,46.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2006,79,2.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2006,79,0.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2006,79,18.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2006,79,2.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2006,79,7.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2006,79,9.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2006,79,4.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2006,79,35.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2006,79,2.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2006,79,3.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2006,79,1.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2006,79,13.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,10.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2006,79,41.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,6.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2006,79,5.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,2.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,3.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2006,79,0.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,3.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2006,79,2.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2006,79,0.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,9.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2006,79,4.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,5.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,0.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,0.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2006,79,2.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2006,79,7.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2006,79,5.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2006,79,2.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2006,79,10.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2006,79,2.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2006,79,167.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2006,79,4.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2006,79,28.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2006,79,8.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2006,79,0.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2006,79,1.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2006,79,3.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2006,79,12.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2006,80,4.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2006,80,0.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2006,80,0.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2006,80,1.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2006,80,2.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2006,80,2.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2006,80,5.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2006,80,1.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2006,80,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2006,80,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2006,80,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2006,80,2.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2006,80,0.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2006,80,1.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2006,80,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2006,80,0.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2006,80,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2006,80,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2006,80,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2006,80,19.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2006,80,1.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2006,80,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2006,80,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2006,80,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2006,80,1.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2006,80,16.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2006,80,115.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2006,80,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2006,80,16.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2006,80,1.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2006,80,1.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2006,80,0.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2006,80,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2006,80,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2006,80,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2006,80,2.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2006,80,43.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2006,80,7.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2006,80,0.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2006,80,24.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2006,80,26.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2006,80,6.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2006,80,3.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2006,80,0.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2006,80,0.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2006,80,1.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2006,80,18.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2006,80,1.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2006,80,4.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2006,80,1.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2006,80,3.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2006,80,1.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2006,80,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2006,80,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2006,80,57.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2006,80,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2006,80,7.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2006,80,10.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2006,80,0.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2006,80,1.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2006,80,4.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2006,80,16.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2006,80,0.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2006,80,8.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2006,80,2.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2006,80,263.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2006,80,2.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2006,80,5.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2006,80,3.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2006,80,1.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2006,80,22.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2006,80,5.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2006,80,5.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2006,80,12.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2006,80,17.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2006,80,12.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2006,80,5.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2006,80,3.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2006,80,1.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2006,80,12.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2006,80,10.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2006,80,10.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2006,80,0.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2006,80,2.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2006,80,0.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2006,80,8.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2006,80,97.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2006,80,54.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2006,80,28.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2006,80,6.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2006,80,21.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2006,80,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2006,80,10.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2006,80,0.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2006,80,1.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2006,80,8.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2006,80,3.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2006,80,8.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2006,80,0.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2006,80,40.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2006,80,73.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2006,80,5.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2006,80,12.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2006,80,1.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2006,80,235.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2006,80,44.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2006,80,11.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2006,80,1.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2006,80,2.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2006,80,2.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2006,80,3.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2006,80,13.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2006,80,31.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2006,80,7.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2006,80,13.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2006,80,1978.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2006,80,3.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2006,80,58.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2006,80,29.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2006,80,9.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2006,80,6.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2006,80,24.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2006,80,65.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2006,80,2.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2006,80,6.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2006,80,8.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2006,80,2.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2006,80,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2006,80,0.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2006,80,1.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2006,80,3.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2006,80,6.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2006,80,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,24.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,1.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,2.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2006,80,5.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2006,80,11.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2006,80,2.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,13.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,43.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,1.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,10.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,26.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,29.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2006,80,37.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2006,80,67.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2006,80,15.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2006,80,78.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2006,80,498.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2006,80,24.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2006,80,1.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2006,80,0.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2006,80,0.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2006,80,0.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2006,80,3.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2006,80,12.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2006,80,2.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2006,80,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2006,80,1.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2006,80,4.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2006,80,17.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2006,80,10.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2006,80,10.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2006,80,8.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2006,80,29.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2006,80,15.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2006,80,30.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2006,80,7.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2006,80,0.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2006,80,11.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2006,80,10.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2006,80,97.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2006,80,8.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2006,80,8.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2006,80,10.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2006,80,11.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2006,80,5.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2006,80,11.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2006,80,3.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2006,80,0.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2006,80,61.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2006,80,22.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2006,80,59.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2006,80,6.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2006,80,3.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2006,80,72.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2006,80,20.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2006,80,19.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2006,80,24.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2006,80,239.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2006,80,73.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2006,80,3.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2006,80,0.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2006,80,2.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2006,80,5.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2006,80,1.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2006,80,14.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2006,80,21.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2006,80,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2006,80,1.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2006,80,23.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2006,80,8.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2006,80,417.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2006,80,2.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2006,80,4.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2006,80,1.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2006,80,3.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,2.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,4.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2006,80,1.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2006,80,2.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,8.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,1.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2006,80,28.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2006,80,2.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2006,80,2.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2006,80,0.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2006,80,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2006,80,1.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2006,80,3.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2006,80,3.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2006,80,1.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2006,80,0.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2006,80,2.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2006,80,0.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2006,80,5.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2006,80,0.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2006,80,40.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2006,80,2.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2006,80,4.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2006,80,7.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2006,80,44.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2006,80,1.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,1.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,0.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,3.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,17.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2006,80,0.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2006,80,1.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2006,80,7.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2006,80,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2006,80,1.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2006,80,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2006,80,1.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2006,80,3.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,1.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,4.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2006,80,2.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,1.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,1.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2006,80,2.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,0.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2006,80,1.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,0.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2006,80,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2006,80,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2006,80,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,1.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,1.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,6.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2006,80,0.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,1.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,2.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,6.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2006,80,0.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,0.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2006,80,0.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,1.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,1.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,6.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,1.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,5.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,1.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,14.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,1.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,10.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2006,80,3.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,1.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2006,80,0.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,1.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,13.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,5.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,1.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2006,80,1.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2006,80,116.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,36.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2006,80,0.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,23.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2006,80,4.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,3.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,5.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,7.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,8.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2006,80,1.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,19.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2006,80,2.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2006,80,8.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2006,80,2.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2006,80,1.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2006,80,209.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,6.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,9.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2006,80,2.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,89.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,1.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2006,80,1.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2006,80,6.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2006,80,0.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2006,80,0.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2006,80,10.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2006,80,23.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2006,80,1.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,8.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,4.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2006,80,0.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2006,80,0.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2006,80,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2006,80,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2006,80,3.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2006,80,1.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2006,80,0.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2006,80,3.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,28.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,1.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,0.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2006,80,2.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2006,80,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,1.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,6.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,1.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2006,80,0.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,22.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,2.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2006,80,1.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,2.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,0.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,3.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,17.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2006,80,1.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2006,80,20.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,1.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,2.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,1.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2006,80,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2006,80,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,1.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2006,80,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,1.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2006,80,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2006,80,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2006,80,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2006,80,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2006,80,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2006,80,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2006,80,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2006,80,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,1.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2006,80,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2006,80,0.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2006,80,3.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2006,80,2.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2006,80,13.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2006,80,1.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2006,80,1.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2006,80,17.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2006,80,2.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2006,80,1.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2006,80,3.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2006,80,1.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2006,80,67.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2006,80,0.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2006,80,3.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2006,80,6.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2006,80,1.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,18.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2006,80,15.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,9.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2006,80,11.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,1.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,18.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2006,80,1.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,2.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2006,80,1.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2006,80,1.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,1.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2006,80,26.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,0.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,0.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,1.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2006,80,0.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2006,80,17.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2006,80,0.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2006,80,2.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2006,80,8.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2006,80,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2006,80,3.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2006,80,2.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2006,80,1.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2006,80,1.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2006,80,111.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2006,80,1.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2006,80,0.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2006,80,4.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2006,80,0.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2006,80,1.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2006,80,0.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2006,80,1.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2006,80,1.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2006,80,8.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2006,81,2.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2006,81,2.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2006,81,0.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2006,81,3.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2006,81,0.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2006,81,2.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2006,81,4.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2006,81,0.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2006,81,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2006,81,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2006,81,2.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2006,81,3.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2006,81,0.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2006,81,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2006,81,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2006,81,1.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2006,81,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2006,81,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2006,81,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2006,81,15.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2006,81,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2006,81,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2006,81,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2006,81,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2006,81,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2006,81,15.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2006,81,96.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2006,81,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2006,81,11.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2006,81,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2006,81,0.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2006,81,0.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2006,81,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2006,81,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2006,81,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2006,81,4.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2006,81,49.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2006,81,12.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2006,81,3.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2006,81,30.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2006,81,15.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2006,81,5.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2006,81,3.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2006,81,1.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2006,81,0.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2006,81,6.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2006,81,6.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2006,81,0.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2006,81,3.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2006,81,4.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2006,81,1.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2006,81,0.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2006,81,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2006,81,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2006,81,59.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2006,81,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2006,81,2.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2006,81,6.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2006,81,0.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2006,81,3.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2006,81,2.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2006,81,18.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2006,81,0.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2006,81,109.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2006,81,0.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2006,81,198.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2006,81,3.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2006,81,2.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2006,81,5.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2006,81,1.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2006,81,11.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2006,81,5.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2006,81,1.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2006,81,6.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2006,81,5.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2006,81,6.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2006,81,11.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2006,81,2.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2006,81,0.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2006,81,0.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2006,81,9.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2006,81,0.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2006,81,1.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2006,81,0.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2006,81,0.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2006,81,3.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2006,81,53.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2006,81,20.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2006,81,7.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2006,81,7.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2006,81,30.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2006,81,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2006,81,5.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2006,81,1.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2006,81,0.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2006,81,0.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2006,81,0.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2006,81,3.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2006,81,0.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2006,81,5.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2006,81,19.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2006,81,5.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2006,81,2.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2006,81,1.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2006,81,111.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2006,81,6.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2006,81,19.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2006,81,5.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2006,81,2.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2006,81,0.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2006,81,1.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2006,81,3.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2006,81,5.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2006,81,1.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2006,81,6.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2006,81,756.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2006,81,1.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2006,81,21.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2006,81,43.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2006,81,1.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2006,81,0.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2006,81,15.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2006,81,32.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2006,81,1.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2006,81,4.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2006,81,6.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2006,81,7.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2006,81,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2006,81,0.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2006,81,2.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2006,81,0.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2006,81,2.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2006,81,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,8.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,2.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,1.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2006,81,6.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2006,81,8.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2006,81,0.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,9.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,25.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,1.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,6.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,9.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,45.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2006,81,10.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2006,81,47.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2006,81,5.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2006,81,29.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2006,81,187.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2006,81,10.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2006,81,1.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2006,81,0.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2006,81,1.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2006,81,3.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2006,81,1.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2006,81,1.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2006,81,2.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2006,81,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2006,81,0.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2006,81,1.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2006,81,5.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2006,81,10.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2006,81,1.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2006,81,2.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2006,81,39.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2006,81,6.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2006,81,13.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2006,81,1.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2006,81,0.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2006,81,4.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2006,81,21.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2006,81,75.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2006,81,1.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2006,81,13.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2006,81,9.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2006,81,3.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2006,81,3.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2006,81,0.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2006,81,2.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2006,81,0.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2006,81,39.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2006,81,10.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2006,81,31.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2006,81,6.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2006,81,1.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2006,81,28.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2006,81,18.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2006,81,7.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2006,81,4.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2006,81,114.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2006,81,42.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2006,81,3.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2006,81,1.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2006,81,0.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2006,81,5.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2006,81,2.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2006,81,4.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2006,81,10.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2006,81,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2006,81,4.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2006,81,6.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2006,81,5.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2006,81,234.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2006,81,3.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2006,81,0.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2006,81,12.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2006,81,8.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,3.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,1.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2006,81,1.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2006,81,0.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,7.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,0.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2006,81,19.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2006,81,0.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2006,81,0.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2006,81,1.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2006,81,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2006,81,1.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2006,81,2.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2006,81,0.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2006,81,4.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2006,81,0.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2006,81,0.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2006,81,1.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2006,81,2.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2006,81,1.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2006,81,20.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2006,81,12.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2006,81,1.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2006,81,8.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2006,81,40.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2006,81,0.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,0.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,5.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,12.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2006,81,10.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2006,81,0.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2006,81,2.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2006,81,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2006,81,0.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2006,81,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2006,81,2.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2006,81,1.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,1.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,9.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2006,81,3.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,0.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,3.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2006,81,3.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,2.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2006,81,7.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,0.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2006,81,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2006,81,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2006,81,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,1.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,9.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2006,81,1.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,1.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,7.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,0.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2006,81,0.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,0.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2006,81,0.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,2.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,1.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,9.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,1.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,6.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,1.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,16.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,1.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,0.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2006,81,4.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2006,81,0.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,1.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2006,81,1.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,20.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,1.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,2.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2006,81,1.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2006,81,1.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2006,81,49.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,10.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2006,81,1.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,6.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,2.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,1.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,4.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,5.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2006,81,0.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2006,81,1.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,2.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,10.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2006,81,2.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2006,81,2.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2006,81,121.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2006,81,6.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,36.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,2.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,1.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2006,81,0.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2006,81,3.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2006,81,2.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2006,81,0.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2006,81,10.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2006,81,6.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2006,81,0.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,6.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,6.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2006,81,1.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2006,81,0.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2006,81,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2006,81,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2006,81,1.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2006,81,0.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2006,81,0.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2006,81,1.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,1.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2006,81,1.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2006,81,0.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,28.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,1.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2006,81,0.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,1.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2006,81,1.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,2.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,1.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2006,81,0.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,7.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,0.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2006,81,2.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,6.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,0.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,4.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,16.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2006,81,1.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2006,81,21.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,1.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,2.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,1.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,1.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,1.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,1.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2006,81,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2006,81,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2006,81,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2006,81,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2006,81,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2006,81,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2006,81,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2006,81,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2006,81,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2006,81,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2006,81,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2006,81,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2006,81,0.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2006,81,8.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2006,81,0.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2006,81,15.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2006,81,4.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2006,81,1.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2006,81,13.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2006,81,1.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2006,81,3.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2006,81,2.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2006,81,1.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2006,81,15.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2006,81,4.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2006,81,1.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2006,81,0.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2006,81,7.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,22.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2006,81,18.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,13.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2006,81,23.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,0.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,0.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2006,81,2.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,1.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2006,81,1.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2006,81,1.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,1.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2006,81,2.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,2.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,1.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,2.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2006,81,0.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2006,81,39.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2006,81,1.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2006,81,7.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2006,81,5.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2006,81,3.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2006,81,107.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2006,81,9.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2006,81,1.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2006,81,0.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2006,81,14.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2006,82,2.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2006,82,1.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2006,82,5.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2006,82,9.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2006,82,1.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2006,82,15.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2006,82,16.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2006,82,0.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2006,82,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2006,82,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2006,82,0.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2006,82,7.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2006,82,0.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2006,82,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2006,82,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2006,82,1.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2006,82,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2006,82,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2006,82,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2006,82,8.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2006,82,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2006,82,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2006,82,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2006,82,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2006,82,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2006,82,19.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2006,82,119.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2006,82,2.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2006,82,4.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2006,82,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2006,82,1.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2006,82,0.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2006,82,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2006,82,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2006,82,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2006,82,1.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2006,82,50.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2006,82,16.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2006,82,4.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2006,82,24.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2006,82,16.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2006,82,3.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2006,82,9.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2006,82,2.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2006,82,2.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2006,82,1.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2006,82,5.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2006,82,3.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2006,82,0.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2006,82,3.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2006,82,1.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2006,82,1.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2006,82,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2006,82,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2006,82,104.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2006,82,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2006,82,10.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2006,82,18.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2006,82,0.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2006,82,1.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2006,82,6.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2006,82,37.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2006,82,0.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2006,82,35.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2006,82,8.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2006,82,127.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2006,82,3.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2006,82,3.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2006,82,12.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2006,82,17.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2006,82,9.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2006,82,102.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2006,82,13.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2006,82,13.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2006,82,10.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2006,82,6.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2006,82,9.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2006,82,28.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2006,82,1.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2006,82,0.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2006,82,3.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2006,82,15.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2006,82,1.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2006,82,1.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2006,82,0.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2006,82,4.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2006,82,41.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2006,82,8.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2006,82,40.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2006,82,0.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2006,82,9.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2006,82,0.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2006,82,0.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2006,82,1.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2006,82,0.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2006,82,0.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2006,82,1.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2006,82,1.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2006,82,0.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2006,82,3.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2006,82,7.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2006,82,4.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2006,82,32.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2006,82,51.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2006,82,48.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2006,82,1.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2006,82,1.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2006,82,3.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2006,82,6.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2006,82,3.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2006,82,448.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2006,82,1.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2006,82,32.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2006,82,29.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2006,82,8.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2006,82,3.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2006,82,7.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2006,82,18.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2006,82,2.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2006,82,6.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2006,82,8.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2006,82,6.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2006,82,0.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2006,82,15.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2006,82,21.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2006,82,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,2.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,6.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,1.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2006,82,1.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2006,82,6.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2006,82,0.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,3.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,29.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,0.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,0.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,13.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,35.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2006,82,14.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2006,82,5.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2006,82,2.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2006,82,8.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2006,82,65.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2006,82,6.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2006,82,0.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2006,82,0.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2006,82,0.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2006,82,1.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2006,82,1.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2006,82,1.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2006,82,0.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2006,82,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2006,82,0.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2006,82,2.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2006,82,39.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2006,82,16.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2006,82,0.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2006,82,7.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2006,82,22.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2006,82,15.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2006,82,5.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2006,82,1.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2006,82,0.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2006,82,18.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2006,82,4.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2006,82,53.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2006,82,1.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2006,82,15.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2006,82,13.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2006,82,2.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2006,82,3.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2006,82,4.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2006,82,5.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2006,82,2.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2006,82,21.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2006,82,7.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2006,82,15.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2006,82,0.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2006,82,1.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2006,82,37.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2006,82,6.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2006,82,1.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2006,82,6.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2006,82,51.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2006,82,25.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2006,82,4.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2006,82,0.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2006,82,2.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2006,82,3.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2006,82,1.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2006,82,2.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2006,82,10.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2006,82,2.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2006,82,7.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2006,82,23.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2006,82,2.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2006,82,179.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2006,82,17.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2006,82,2.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2006,82,34.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2006,82,2.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,13.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,0.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2006,82,0.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2006,82,0.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,4.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,4.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2006,82,11.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2006,82,0.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2006,82,4.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2006,82,1.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2006,82,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2006,82,1.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2006,82,3.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2006,82,1.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2006,82,99.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2006,82,1.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2006,82,7.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2006,82,0.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2006,82,5.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2006,82,1.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2006,82,32.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2006,82,2.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2006,82,6.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2006,82,4.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2006,82,17.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2006,82,0.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,0.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,0.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,14.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2006,82,1.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2006,82,0.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2006,82,3.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2006,82,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2006,82,0.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2006,82,0.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2006,82,7.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2006,82,0.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,0.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,8.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2006,82,7.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,1.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,17.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2006,82,3.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,3.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2006,82,12.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,0.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2006,82,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2006,82,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2006,82,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,0.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,13.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2006,82,2.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,2.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,2.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,1.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2006,82,1.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,0.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2006,82,0.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,1.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,1.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,14.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,1.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,15.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,125.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,1.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2006,82,3.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2006,82,0.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,1.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2006,82,1.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2006,82,1.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2006,82,14.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,30.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,2.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2006,82,1.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2006,82,50.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,17.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,2.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,15.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,4.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2006,82,0.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2006,82,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,6.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2006,82,5.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2006,82,1.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2006,82,1.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2006,82,164.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,2.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,2.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2006,82,5.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,74.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,6.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2006,82,0.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2006,82,0.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2006,82,2.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2006,82,1.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2006,82,10.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2006,82,9.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2006,82,0.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,14.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,2.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,6.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2006,82,1.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2006,82,0.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2006,82,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2006,82,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2006,82,1.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2006,82,0.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2006,82,0.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2006,82,2.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,2.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2006,82,2.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,39.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,0.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2006,82,1.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,1.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,0.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,1.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,1.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2006,82,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,0.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,1.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,3.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,1.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,3.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2006,82,0.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,6.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,0.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2006,82,0.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,13.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,2.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,1.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,22.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2006,82,0.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2006,82,10.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,1.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,1.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,4.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,3.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,1.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,1.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2006,82,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2006,82,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,1.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2006,82,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2006,82,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2006,82,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2006,82,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2006,82,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2006,82,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2006,82,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2006,82,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2006,82,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2006,82,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2006,82,2.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2006,82,22.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2006,82,6.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2006,82,42.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2006,82,13.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2006,82,0.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2006,82,14.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2006,82,0.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2006,82,3.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2006,82,2.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2006,82,1.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2006,82,25.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2006,82,3.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2006,82,2.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2006,82,4.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2006,82,3.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,94.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2006,82,62.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,29.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2006,82,52.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,1.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,12.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2006,82,0.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,15.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2006,82,30.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2006,82,0.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,1.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2006,82,15.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,0.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,1.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,5.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2006,82,0.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2006,82,27.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2006,82,1.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2006,82,1.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2006,82,9.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2006,82,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2006,82,16.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2006,82,1.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2006,82,0.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2006,82,1.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2006,82,249.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2006,82,0.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2006,82,17.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2006,82,12.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2006,82,2.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2006,82,1.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2006,82,0.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2006,82,0.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2006,82,1.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2006,82,9.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2006,83,5.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2006,83,0.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2006,83,9.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2006,83,11.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2006,83,14.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2006,83,24.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2006,83,22.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2006,83,1.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2006,83,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2006,83,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2006,83,1.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2006,83,22.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2006,83,8.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2006,83,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2006,83,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2006,83,1.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2006,83,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2006,83,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2006,83,0.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2006,83,14.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2006,83,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2006,83,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2006,83,1.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2006,83,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2006,83,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2006,83,12.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2006,83,126.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2006,83,1.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2006,83,14.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2006,83,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2006,83,2.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2006,83,6.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2006,83,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2006,83,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2006,83,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2006,83,0.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2006,83,83.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2006,83,12.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2006,83,6.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2006,83,16.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2006,83,50.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2006,83,7.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2006,83,4.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2006,83,3.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2006,83,2.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2006,83,3.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2006,83,9.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2006,83,5.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2006,83,7.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2006,83,2.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2006,83,7.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2006,83,4.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2006,83,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2006,83,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2006,83,97.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2006,83,1.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2006,83,5.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2006,83,66.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2006,83,7.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2006,83,28.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2006,83,64.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2006,83,164.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2006,83,2.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2006,83,32.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2006,83,9.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2006,83,66.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2006,83,15.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2006,83,2.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2006,83,7.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2006,83,30.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2006,83,8.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2006,83,51.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2006,83,9.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2006,83,15.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2006,83,31.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2006,83,5.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2006,83,17.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2006,83,23.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2006,83,0.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2006,83,1.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2006,83,8.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2006,83,19.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2006,83,0.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2006,83,4.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2006,83,2.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2006,83,4.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2006,83,9.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2006,83,8.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2006,83,17.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2006,83,3.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2006,83,4.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2006,83,6.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2006,83,1.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2006,83,0.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2006,83,2.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2006,83,3.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2006,83,5.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2006,83,3.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2006,83,0.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2006,83,9.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2006,83,22.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2006,83,1.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2006,83,19.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2006,83,259.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2006,83,14.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2006,83,5.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2006,83,1.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2006,83,0.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2006,83,6.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2006,83,1.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2006,83,389.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2006,83,2.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2006,83,33.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2006,83,25.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2006,83,9.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2006,83,2.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2006,83,12.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2006,83,31.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2006,83,0.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2006,83,4.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2006,83,1.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2006,83,2.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2006,83,4.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2006,83,59.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2006,83,0.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,1.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,2.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,2.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,2.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2006,83,2.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2006,83,3.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2006,83,1.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,2.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,6.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,4.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,1.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,35.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,25.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2006,83,25.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2006,83,24.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2006,83,3.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2006,83,10.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2006,83,48.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2006,83,8.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2006,83,0.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2006,83,0.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2006,83,1.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2006,83,0.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2006,83,1.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2006,83,0.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2006,83,2.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2006,83,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2006,83,0.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2006,83,4.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2006,83,23.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2006,83,11.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2006,83,6.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2006,83,6.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2006,83,7.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2006,83,9.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2006,83,3.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2006,83,2.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2006,83,0.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2006,83,7.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2006,83,3.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2006,83,58.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2006,83,1.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2006,83,24.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2006,83,3.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2006,83,5.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2006,83,5.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2006,83,3.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2006,83,0.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2006,83,2.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2006,83,25.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2006,83,15.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2006,83,10.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2006,83,3.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2006,83,13.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2006,83,19.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2006,83,16.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2006,83,9.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2006,83,3.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2006,83,57.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2006,83,20.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2006,83,4.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2006,83,1.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2006,83,5.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2006,83,5.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2006,83,11.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2006,83,4.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2006,83,4.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2006,83,7.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2006,83,1.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2006,83,43.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2006,83,1.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2006,83,118.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2006,83,14.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2006,83,1.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2006,83,29.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2006,83,7.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,23.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,0.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2006,83,0.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2006,83,0.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,8.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,0.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,1.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2006,83,11.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2006,83,5.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2006,83,4.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2006,83,0.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2006,83,1.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2006,83,4.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2006,83,9.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2006,83,3.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2006,83,142.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2006,83,1.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2006,83,3.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2006,83,1.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2006,83,7.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2006,83,1.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2006,83,54.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2006,83,2.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2006,83,14.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2006,83,12.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2006,83,40.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2006,83,1.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,0.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,2.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,8.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,10.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2006,83,15.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2006,83,0.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2006,83,12.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2006,83,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2006,83,1.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2006,83,1.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2006,83,11.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2006,83,3.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,0.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,9.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2006,83,4.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,1.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,3.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,22.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2006,83,10.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,11.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2006,83,32.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,0.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2006,83,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,0.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2006,83,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2006,83,0.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,2.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,1.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,17.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2006,83,0.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,1.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,6.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,15.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2006,83,0.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,1.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2006,83,1.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,8.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,0.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,20.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,1.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,4.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,29.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,37.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,234.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,3.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2006,83,1.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2006,83,0.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,1.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,0.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2006,83,3.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2006,83,2.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2006,83,173.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,37.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,4.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2006,83,1.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2006,83,67.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,23.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2006,83,1.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,7.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,6.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,5.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,11.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2006,83,2.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2006,83,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,2.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,8.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2006,83,4.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2006,83,2.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2006,83,9.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2006,83,0.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,2.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2006,83,2.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2006,83,227.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,3.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2006,83,2.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,120.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,33.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2006,83,3.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2006,83,7.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2006,83,7.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2006,83,0.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2006,83,22.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2006,83,8.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2006,83,0.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,56.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,12.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,19.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,7.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2006,83,1.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2006,83,1.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2006,83,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2006,83,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2006,83,10.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2006,83,2.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2006,83,2.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2006,83,5.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,2.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2006,83,1.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,46.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,0.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,1.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2006,83,2.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,3.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,2.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,1.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,2.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2006,83,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,1.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,3.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,2.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,1.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,2.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2006,83,0.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,13.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,1.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2006,83,1.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,7.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,3.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,3.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,13.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2006,83,0.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2006,83,8.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,1.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,1.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,1.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,3.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,11.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,1.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,1.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,3.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2006,83,0.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2006,83,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2006,83,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2006,83,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,1.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2006,83,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2006,83,1.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2006,83,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2006,83,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2006,83,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2006,83,1.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,1.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2006,83,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,1.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2006,83,1.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2006,83,2.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2006,83,178.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2006,83,187.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2006,83,300.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2006,83,14.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2006,83,2.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2006,83,43.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2006,83,0.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2006,83,11.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2006,83,19.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2006,83,6.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2006,83,175.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2006,83,12.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2006,83,6.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2006,83,16.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2006,83,18.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,323.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2006,83,90.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,44.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2006,83,69.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,10.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,36.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2006,83,5.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,44.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2006,83,551.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2006,83,1.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,0.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,17.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2006,83,442.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,3.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,7.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,13.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2006,83,1.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2006,83,12.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2006,83,0.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2006,83,14.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2006,83,69.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2006,83,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2006,83,34.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2006,83,27.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2006,83,4.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2006,83,3.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2006,83,413.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2006,83,0.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2006,83,4.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2006,83,47.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2006,83,9.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2006,83,4.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2006,83,0.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2006,83,0.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2006,83,0.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2006,83,24.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2006,84,56.0,497936.0,7.58999195214692,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2006,84,2.0,71427.0,1.75253885989689,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2006,84,9.0,170055.0,6.98120099008198,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2006,84,46.0,326630.0,13.0285310092017,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2006,84,55.0,84970.0,5.3157605825333,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2006,84,58.0,237645.0,9.67936907818038,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2006,84,27.0,118734.0,4.44462175773445,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2006,84,0.0,55020.0,3.7548432186622,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2006,84,0.0,123163.0,3.85601489693519,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2006,84,0.0,74738.0,1.39701096232717,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2006,84,1.0,45040.0,1.11068543484611,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2006,84,26.0,392416.0,17.6281487472798,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2006,84,12.0,51295.0,3.22978701181656,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2006,84,0.0,82053.0,0.246928375570537,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2006,84,0.0,33932.0,0.467211149164832,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2006,84,0.0,245047.0,1.14903893383456,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2006,84,0.0,115888.0,1.02894620411861,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2006,84,0.0,100480.0,2.51846529584777,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2006,84,1.0,151649.0,1.35284360865474,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2006,84,25.0,1900791.0,46.0278457118801,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2006,84,0.0,50294.0,1.6136053626654,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2006,84,0.0,139654.0,5.48708467491985,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2006,84,0.0,248520.0,2.32256818570628,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2006,84,0.0,45611.0,0.717755899178492,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2006,84,0.0,52903.0,0.283025474926815,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2006,84,3.0,144204.0,0.652434650262414,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2006,84,127.0,287175.0,4.22934025212641,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2006,84,0.0,35780.0,1.16417579172925,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2006,84,7.0,36379.0,0.490608966093071,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2006,84,0.0,44010.0,0.855332161546024,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2006,84,4.0,173083.0,1.09854011292739,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2006,84,5.0,458639.0,4.9601212904634,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2006,84,0.0,64228.0,0.710751537836961,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2006,84,0.0,110037.0,2.43919578460344,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2006,84,0.0,187176.0,6.22128200228864,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2006,84,1.0,127950.0,4.42425081744707,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2006,84,123.0,2162977.0,690.794833575969,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2006,84,16.0,265414.0,70.5041305484193,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2006,84,2.0,238830.0,40.2331252171326,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2006,84,17.0,364759.0,41.4318884195293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2006,84,65.0,393038.0,23.5755117714477,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2006,84,14.0,255936.0,10.797587098635,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2006,84,6.0,412198.0,14.5612080357825,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2006,84,55.0,235781.0,1.24338664998349,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2006,84,1.0,247642.0,1.09500792926354,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2006,84,7.0,313424.0,9.54149927459618,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2006,84,5.0,266570.0,5.50661485431668,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2006,84,39.0,92245.0,0.760875733400793,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2006,84,6.0,199243.0,8.86400549398226,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2006,84,4.0,259514.0,12.9200594041147,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2006,84,11.0,165831.0,7.8489773838498,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2006,84,1.0,115950.0,3.71636424446976,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2006,84,0.0,24704.0,0.669724888085358,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2006,84,0.0,19307.0,0.929908657943274,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2006,84,121.0,508764.0,13.1797881190358,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2006,84,0.0,62940.0,1.35046560590867,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2006,84,11.0,198388.0,12.5773243870965,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2006,84,110.0,260490.0,9.85024418698621,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2006,84,15.0,145535.0,4.18535956067985,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2006,84,43.0,112020.0,2.17670724603228,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2006,84,141.0,127816.0,4.66158793410432,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2006,84,290.0,304110.0,14.3585649640163,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2006,84,0.0,65705.0,1.22744060383591,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2006,84,12.0,118377.0,2.50826751356846,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2006,84,3.0,183340.0,19.4305983612119,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2006,84,53.0,1255879.0,879.152929727711,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2006,84,21.0,140697.0,21.8681617822576,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2006,84,4.0,147894.0,13.7152870589009,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2006,84,8.0,518241.0,30.0937707473142,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2006,84,66.0,164473.0,23.3246749880256,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2006,84,6.0,211082.0,9.78418423683557,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2006,84,78.0,600491.0,16.6837821848256,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2006,84,13.0,550108.0,18.8242362697919,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2006,84,38.0,412270.0,37.5308900131172,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2006,84,23.0,283974.0,7.70817860381973,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2006,84,8.0,185946.0,28.4355851473997,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2006,84,32.0,129381.0,21.4462079941741,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2006,84,28.0,190178.0,17.6242537883241,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2006,84,1.0,259813.0,26.1480767765783,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2006,84,0.0,77962.0,21.6562013663473,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2006,84,7.0,389518.0,25.389342630416,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2006,84,47.0,201599.0,8.06553779267388,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2006,84,1.0,96746.0,6.80250417436497,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2006,84,8.0,119312.0,3.26939271397488,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2006,84,5.0,65634.0,3.86635844011544,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2006,84,5.0,319885.0,25.6591049230179,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2006,84,7.0,293192.0,30.1316771205845,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2006,84,5.0,976962.0,106.445127320461,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2006,84,57.0,213502.0,8.76632377093336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2006,84,46.0,130502.0,15.7025550673934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2006,84,1.0,107383.0,7.99424886459056,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2006,84,8.0,39309.0,1.54334685126294,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2006,84,1.0,38374.0,3.45276018837601,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2006,84,1.0,121544.0,6.59158987312999,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2006,84,0.0,82756.0,2.99630933629746,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2006,84,11.0,128083.0,4.65464969627155,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2006,84,30.0,82207.0,4.60882890004491,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2006,84,1.0,196562.0,19.0851609888617,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2006,84,7.0,53059.0,12.3032581528156,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2006,84,54.0,252970.0,8.02211754050474,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2006,84,5.0,347331.0,40.1861980796726,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2006,84,4.0,284972.0,56.2781639610042,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2006,84,2.0,55200.0,26.6454882848017,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,22243.0,82.3915519142912,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2006,84,19.0,362491.0,43.9835835412565,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2006,84,80.0,145404.0,34.4203485966167,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2006,84,7.0,70904.0,11.8137076640934,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2006,84,4.0,195221.0,52.597457884668,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,102352.0,71.4055581855139,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2006,84,28.0,96702.0,92.1328740310712,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2006,84,2.0,78920.0,26.1222175302693,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2006,84,3.0,121441.0,22.8647965765518,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2006,84,18.0,184010.0,68.3972576789281,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,62663.0,48.3195551454735,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2006,84,1.0,128225.0,50.434619323207,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2006,84,228.0,3255701.0,965.040555754878,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2006,84,3.0,98390.0,247.800477693545,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2006,84,11.0,240013.0,18.7250938506425,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2006,84,18.0,247472.0,20.6955194351629,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2006,84,1.0,144364.0,12.3193470883541,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2006,84,0.0,210032.0,21.4711068173719,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2006,84,8.0,107587.0,49.9652704328137,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2006,84,1.0,313662.0,31.5893046930413,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2006,84,1.0,64862.0,15.1166491677757,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,40022.0,19.5030150208982,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2006,84,2.0,219485.0,46.1640485429398,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,96402.0,27.2058310287181,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,56313.0,34.8188381131237,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2006,84,0.0,95047.0,21.389154998974,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2006,84,0.0,63340.0,49.1681992425127,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2006,84,8.0,90188.0,33.8823843778478,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2006,84,19.0,519055.0,113.934523805474,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2006,84,2.0,97071.0,50.0448845383856,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,1.0,296189.0,70.9023034920194,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,3.0,72048.0,17.6076270347229,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,0.0,38972.0,13.6261652675272,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,1.0,134253.0,28.0480411948194,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2006,84,4.0,61370.0,61.8904085195155,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2006,84,1.0,116160.0,43.6987295964543,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2006,84,3.0,62447.0,38.275479895194,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,1.0,46729.0,24.5255729283576,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,4.0,49324.0,12.0949827760898,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,2.0,64213.0,21.3280024524623,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,0.0,96094.0,31.3425653268483,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,8.0,118004.0,31.2836898479246,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,0.0,61451.0,32.1458582771081,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2006,84,8.0,129566.0,32.979179332088,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2006,84,46.0,223004.0,63.6750303923595,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2006,84,1.0,85448.0,33.5163196264933,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2006,84,3.0,283561.0,136.668448847479,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2006,84,44.0,982946.0,2245.8796671368,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2006,84,6.0,121981.0,87.9021114212021,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2006,84,0.0,108186.0,35.488242602159,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2006,84,0.0,161485.0,47.6119545358068,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2006,84,1.0,175204.0,36.4653416613537,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2006,84,0.0,124018.0,48.6600887347257,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2006,84,4.0,69538.0,21.1145129280529,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2006,84,0.0,82841.0,27.1899286197654,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2006,84,38.0,109759.0,42.2520434883925,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2006,84,0.0,37163.0,21.2329922955548,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2006,84,0.0,70892.0,27.1576768247993,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2006,84,1.0,114164.0,16.3574310326552,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2006,84,17.0,61388.0,14.5772299920556,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2006,84,5.0,110457.0,28.2686136305055,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2006,84,5.0,96388.0,72.9056065315291,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2006,84,0.0,49605.0,185.201377279824,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2006,84,12.0,114418.0,96.9774220364503,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2006,84,11.0,160087.0,124.096965306811,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2006,84,1.0,492019.0,233.547375198036,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2006,84,0.0,105567.0,62.5588345871395,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2006,84,6.0,52345.0,44.2545146813785,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2006,84,2.0,135467.0,68.158147005624,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2006,84,0.0,126115.0,112.637453492162,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2006,84,24.0,983925.0,788.283463370727,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2006,84,1.0,82184.0,94.9166202343443,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2006,84,40.0,295800.0,25.6322441896317,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2006,84,17.0,156236.0,17.8333366881443,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2006,84,0.0,297846.0,33.7449732373388,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2006,84,4.0,189998.0,21.5975860847379,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2006,84,1.0,406016.0,27.1228788575407,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2006,84,0.0,122246.0,12.8463408754245,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2006,84,0.0,167781.0,30.8943209096131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2006,84,17.0,802412.0,102.053615048023,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2006,84,27.0,238224.0,132.704502112144,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2006,84,5.0,263509.0,150.557734056142,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2006,84,3.0,433851.0,84.7398651529778,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2006,84,9.0,217704.0,85.0391734587416,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2006,84,71.0,529948.0,180.380967041495,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2006,84,9.0,210380.0,224.143114840488,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2006,84,7.0,522127.0,115.370189928681,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2006,84,1.0,152213.0,282.635085077791,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2006,84,27.0,3252318.0,2599.63557108273,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2006,84,7.0,241673.0,250.237848638221,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2006,84,2.0,2321.0,178.617625897387,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2006,84,2.0,90671.0,34.5242280387831,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2006,84,0.0,75955.0,55.6228481498975,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2006,84,7.0,178268.0,58.1700664750494,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2006,84,1.0,94739.0,52.4690401597989,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2006,84,5.0,175002.0,73.1729067479247,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2006,84,10.0,401698.0,165.602764283835,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2006,84,0.0,35895.0,38.3600572560328,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2006,84,1.0,143804.0,78.0412013832667,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2006,84,28.0,279240.0,70.8030142300049,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2006,84,2.0,63324.0,62.9127734259641,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2006,84,97.0,1125835.0,628.659073261919,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2006,84,10.0,263337.0,88.6408288162188,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2006,84,3.0,122884.0,71.8027114176529,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2006,84,4.0,151320.0,27.7869552489423,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2006,84,5.0,66102.0,35.3968693996586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,17.0,62650.0,50.4897959638738,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,3.0,161393.0,142.654820138674,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2006,84,0.0,109210.0,54.2150123995357,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2006,84,1.0,112440.0,74.5748461908973,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,3.0,94780.0,89.8565115723089,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,0.0,42423.0,55.408723914448,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,2.0,53914.0,37.6820537759125,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,0.0,84639.0,114.256020665359,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2006,84,6.0,783186.0,897.7286492095,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2006,84,4.0,156961.0,85.3775334173964,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2006,84,2.0,121720.0,60.1363864277631,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2006,84,7.0,237203.0,4.48783695363417,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2006,84,0.0,110794.0,4.89762935392707,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2006,84,29.0,181226.0,4.31604874278163,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2006,84,9.0,455339.0,8.32207421717908,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2006,84,1.0,163150.0,13.0944531585156,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2006,84,14.0,169646.0,5.21003725113741,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2006,84,1.0,169605.0,11.7476583837144,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2006,84,21.0,252203.0,15.1705802104525,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2006,84,5.0,357242.0,19.5901305714668,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2006,84,14.0,309547.0,16.4510042021154,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2006,84,2.0,246024.0,14.9409625981376,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2006,84,49.0,963074.0,75.5642612586307,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2006,84,0.0,112646.0,14.0523150733077,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2006,84,0.0,307664.0,16.460879985475,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2006,84,3.0,304469.0,35.1903763198746,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2006,84,24.0,377075.0,35.4113758191346,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2006,84,2.0,305993.0,53.2416115655994,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,1.0,119088.0,27.2112410958395,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,0.0,199858.0,72.7148958482841,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,1.0,536319.0,94.0734874867753,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,33.0,3408273.0,1179.14694934218,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2006,84,6.0,185601.0,11.5419496419541,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2006,84,5.0,266720.0,12.8565416362738,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2006,84,40.0,532441.0,30.952553342988,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2006,84,0.0,95365.0,18.5394755201385,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2006,84,7.0,365073.0,15.5738636811499,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2006,84,1.0,270675.0,17.6442081207552,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2006,84,10.0,667232.0,35.462866362432,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2006,84,3.0,232733.0,20.6412068554138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,0.0,244115.0,42.430916088564,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,21.0,1071646.0,50.4165306222521,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2006,84,18.0,732107.0,26.4161861424748,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,0.0,145630.0,5.31375139289328,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,2.0,210480.0,6.01211564901058,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,46.0,271328.0,8.16962135129796,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2006,84,54.0,251500.0,16.7245563851498,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,211158.0,11.8395892614544,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,13.0,160798.0,6.98475988696544,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2006,84,96.0,588321.0,26.3348659043352,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,0.0,41682.0,4.59995016892696,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,1.0,66720.0,8.43001946725456,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2006,84,0.0,82063.0,11.1073851079383,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,1.0,196571.0,16.3609122386736,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2006,84,0.0,153657.0,14.9620366499393,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2006,84,1.0,86759.0,17.1803245821261,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,3.0,175070.0,11.326301979718,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,56.0,253658.0,21.8328994122307,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,63.0,116545.0,13.7399971593122,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,18.0,135147.0,15.478807538162,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,84.0,803615.0,42.7734881068625,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2006,84,0.0,204279.0,17.0795285586095,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,5.0,256774.0,23.9436463571322,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,23.0,161284.0,9.551507411208,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,52.0,326409.0,34.9794975414038,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2006,84,4.0,185072.0,13.1541955256493,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,1.0,95900.0,9.06189250795896,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2006,84,1.0,149274.0,10.8914901599883,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,14.0,159969.0,21.3620968518679,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,0.0,391965.0,45.8812669665889,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,88449.0,12.9730239224345,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,1.0,118221.0,66.7776680167183,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,78.0,4867529.0,835.153446736972,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,2.0,370865.0,46.0471474786059,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,59364.0,24.5558793990812,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,168100.0,53.3338053003113,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,1.0,238172.0,80.3663497342261,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,127945.0,22.2123375278835,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,0.0,81821.0,17.8555981757666,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,6.0,407815.0,36.0350326278142,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,8.0,58957.0,31.8727661029103,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,35.0,520991.0,119.733282685129,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,15.0,247115.0,44.6162981567398,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,204.0,143478.0,17.2156552428138,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,0.0,80316.0,10.4385054136537,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,3.0,449710.0,88.5664495489215,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2006,84,2.0,152995.0,33.5044262238345,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,112649.0,41.8240198416791,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,126986.0,31.6603232690694,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2006,84,1.0,228509.0,32.2166282617709,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,1.0,276761.0,53.5082347635353,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,230411.0,46.0837634590181,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,446905.0,58.9874746430827,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,338261.0,73.019507125283,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,320419.0,65.1549154121366,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,138860.0,42.3880214375588,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,213717.0,55.5732939967894,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,75631.0,15.0087141673128,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,194144.0,65.1101186433872,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,145075.0,41.9655759691716,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,181376.0,31.5038315036053,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,219556.0,65.4187944919695,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,186801.0,38.3986930485972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,1.0,271143.0,56.0490503552314,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,1.0,227203.0,47.090407615257,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,275348.0,58.1428314242523,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2006,84,2.0,264265.0,73.4456625760766,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2006,84,1.0,724273.0,81.0755003798256,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2006,84,8.0,217592.0,55.7171790913335,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,1.0,86322.0,21.3592374338855,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,16.0,120744.0,32.9196221444658,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,5.0,195644.0,45.0742815592862,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,2.0,50728.0,17.2033591497812,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,8.0,176355.0,38.10288632428,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,5.0,277354.0,39.9112239085892,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2006,84,4.0,136407.0,35.5685782480868,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2006,84,1.0,106039.0,32.2772903956959,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2006,84,57.0,1538424.0,1078.11068594563,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,12.0,188512.0,89.6069975187235,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,163999.0,47.4419807152448,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,2.0,344869.0,83.8044499616484,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2006,84,4.0,78888.0,62.2394083089316,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,57.0,191224.0,60.9796314918995,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,19.0,124678.0,55.6267179445292,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,17.0,556204.0,77.6543951376254,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,7.0,207033.0,80.1838983825661,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2006,84,2.0,154542.0,93.3293275918564,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,61120.0,48.2578875640095,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2006,84,0.0,227982.0,109.53397147863,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2006,84,0.0,28602.0,15.7716835277905,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,2.0,100420.0,61.2180137498675,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,11.0,478811.0,244.153566110431,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2006,84,11.0,678159.0,177.816559265908,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,174248.0,73.5890118273402,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2006,84,25.0,177832.0,106.35008873842,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2006,84,5.0,161990.0,103.289964794938,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2006,84,1.0,482512.0,270.318474460698,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,1.0,107742.0,75.9866260880007,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2006,84,0.0,202602.0,230.663303927561,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2006,84,587.0,11446019.0,2513.70017482332,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,5.0,151096.0,38.3602927991576,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,2.0,104216.0,37.0402481694261,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2006,84,4.0,135516.0,42.24640519231,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,251.0,760615.0,72.9789639757798,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,8.0,220261.0,97.1747303428065,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,1.0,44154.0,19.2333069363349,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,31.0,60439.0,30.0828417624709,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,3.0,76118.0,31.4399616875322,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2006,84,2.0,133868.0,49.2854549861157,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2006,84,24.0,207907.0,37.4956583565883,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2006,84,14.0,96935.0,48.0800566631902,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2006,84,1.0,396217.0,114.997649845502,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2006,84,43.0,415120.0,87.484497862831,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2006,84,28.0,967890.0,161.141478620674,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2006,84,2.0,106620.0,34.649645800874,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,172.0,179591.0,26.1361633647487,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,19.0,248388.0,46.2584726878899,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,82.0,250376.0,55.6079254038978,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,16.0,157748.0,40.7472274148835,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2006,84,0.0,568117.0,66.9246761955018,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2006,84,0.0,343904.0,85.1577472594217,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2006,84,0.0,178609.0,30.2653901375698,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2006,84,0.0,202201.0,46.3997301377432,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2006,84,6.0,493407.0,78.5391923651272,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2006,84,1.0,307237.0,96.8765301532565,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2006,84,0.0,247183.0,83.9209041173734,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,574322.0,247.026563722642,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,7.0,552710.0,146.250112637706,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2006,84,1.0,184996.0,104.901157376119,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2006,84,0.0,423624.0,78.0580848505996,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2006,84,2.0,391221.0,167.432863798211,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,159.0,2530029.0,813.772686850913,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,1.0,178422.0,111.501233092679,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,4.0,108316.0,37.779117950335,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,1.0,150269.0,40.9430716248663,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2006,84,5.0,584998.0,33.4417926651311,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,2.0,113542.0,49.356593685142,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,1.0,338113.0,69.1916575565837,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,0.0,265736.0,37.2162376391533,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,0.0,294902.0,52.9877794178522,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2006,84,0.0,250235.0,32.528019459039,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,4.0,185482.0,49.7752160755246,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,0.0,245794.0,110.11690493742,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,145399.0,22.0767432896854,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,203299.0,49.0689330085642,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,7.0,1313295.0,309.442120913789,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,597997.0,743.604910138489,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,1.0,486724.0,155.079315076156,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,71930.0,70.7380511197878,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,2.0,1386456.0,345.085385156258,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2006,84,2.0,403678.0,149.310799445479,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,26895.0,12.835047509432,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,73296.0,16.5806962485127,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,21.0,281532.0,147.731659847478,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,0.0,269549.0,24.1610124993263,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2006,84,23.0,228667.0,112.165265894798,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,5.0,1867383.0,2752.60269679092,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,0.0,465408.0,780.410475203621,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,5.0,1406376.0,1809.16312893793,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,1.0,977388.0,665.961797092609,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,17.0,13597629.0,5762.12818951946,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2006,84,3.0,1363322.0,662.183986465141,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2006,84,34.0,1463067.0,1074.39823327498,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,2.0,263088.0,25.8626269678397,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,237362.0,23.1378224014158,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,129971.0,32.0942416196203,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,110999.0,22.8513018826179,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,1.0,205493.0,29.0412716600737,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,2.0,177399.0,34.7075472397135,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,81816.0,34.5954020950066,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,33508.0,25.7331478012552,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,4.0,517275.0,332.416111390122,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,1.0,278277.0,122.84597721204,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,9.0,709944.0,201.916131900792,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,43165.0,18.9617187376428,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,1.0,128261.0,20.8072633093428,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,69720.0,30.8720444614824,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,179933.0,39.7533405877162,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,119534.0,43.3335688776641,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,76498.0,25.1695933199195,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,97225.0,30.7781007900933,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,1.0,150837.0,15.9466797446054,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,104383.0,18.3380508534532,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,424159.0,63.5015405388114,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,6.0,340095.0,38.9235999343446,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,2.0,428510.0,50.1076079163734,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,3.0,460220.0,82.8888925168914,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,90618.0,38.996355961673,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,223883.0,41.3670695709254,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,154058.0,39.4687565851889,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,82063.0,16.678967313406,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,385796.0,23.8148671794591,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,89173.0,16.4956232744786,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,123770.0,20.3732306440707,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,95714.0,33.7212524758865,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,120208.0,21.9861258070589,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,1.0,58761.0,23.2252374261861,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,0.0,28885.0,8.36381816010879,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,49897.0,21.7074066366563,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,1.0,3149373.0,369.533831296404,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2006,84,1.0,280833.0,46.0747550172239,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2006,84,0.0,86674.0,35.4183430441253,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,159601.0,37.4457856427441,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,376551.0,62.5228117483758,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,151427.0,31.2343367532531,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,333082.0,36.872047108842,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,1.0,143249.0,45.5447547082762,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,240980.0,25.6282038870502,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,133933.0,70.1554461635017,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,790936.0,170.361489477847,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,125048.0,18.9872729117888,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,296487.0,18.8309422429643,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,189560.0,35.7976992649744,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,625440.0,132.184353685234,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,499358.0,325.163021120694,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,51072.0,33.5753137289784,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,74198.0,34.8309847020682,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,842627.0,290.827949713478,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2006,84,0.0,22239.0,9.48086719528757,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,367365.0,79.3334155253385,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,359334.0,170.016898005974,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2006,84,0.0,175779.0,59.157915712897,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,162612.0,47.0337790021562,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,140002.0,36.7253958668331,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,173707.0,33.3541640087613,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,218760.0,38.5796919407539,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2006,84,0.0,58602.0,19.0419835741368,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,66222.0,29.8320127721614,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,207024.0,19.1199106849846,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,183746.0,36.0779700306672,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,162753.0,33.3118820287591,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2006,84,0.0,324427.0,45.839045381162,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,160080.0,19.0133988358012,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,42512.0,28.3657253260017,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2006,84,0.0,71851.0,19.907139952698,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2006,84,0.0,122674.0,33.7976322716429,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2006,84,0.0,159842.0,9.27609425463505,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2006,84,0.0,742716.0,149.33811367071,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,115499.0,10.2943159522179,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,377361.0,32.1617673612946,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,68442.0,22.7900150851435,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,321149.0,57.7606933477135,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,300880.0,74.3631211358999,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,160835.0,21.1987477011624,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,199258.0,96.19163916048,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2006,84,0.0,304892.0,116.949563290459,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,1.0,141932.0,29.0823805482835,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,3770472.0,673.033963815711,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,332204.0,37.7839101163426,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,132652.0,22.547297804042,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,403261.0,12.9757781097841,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,204984.0,11.8525592313254,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,180252.0,12.6537577251823,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,122431.0,7.45665085325525,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,506348.0,49.0056443708933,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,59349.0,9.36542515890834,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2006,84,0.0,263488.0,28.448527695027,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2006,84,2.0,132556.0,1.59643799986651,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2006,84,293.0,105688.0,3.80932982453989,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2006,84,293.0,114252.0,2.74215427352015,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2006,84,910.0,833909.0,29.5197880262368,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2006,84,7.0,54087.0,3.36258521732869,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2006,84,4.0,75402.0,4.38735942105851,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2006,84,47.0,141196.0,2.98802849781501,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2006,84,1.0,82948.0,6.15872318754175,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2006,84,35.0,110877.0,4.91079126711429,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2006,84,19.0,445370.0,11.9107092896569,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2006,84,3.0,201696.0,8.97147399117318,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2006,84,267.0,116588.0,0.940135992830922,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2006,84,5.0,90169.0,1.75420573586591,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2006,84,12.0,125113.0,2.92552325415647,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2006,84,50.0,83511.0,1.40120105857671,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2006,84,23.0,81292.0,1.48022124592755,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,298.0,137893.0,2.52806077837556,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2006,84,75.0,176041.0,3.51783101607484,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,51.0,29020.0,0.620562036529999,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2006,84,30.0,110683.0,1.30304675214482,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,6.0,87979.0,1.45659987434491,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,51.0,65705.0,2.05398160457865,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2006,84,2.0,68364.0,2.17995695365618,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,76.0,138202.0,6.19096161619463,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2006,84,537.0,99617.0,5.27660065250038,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2006,84,1.0,26084.0,3.89235635355336,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,10.0,32415.0,3.50985184887132,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,37.0,844367.0,30.581914379058,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2006,84,142.0,132883.0,2.49210177210601,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,12.0,85593.0,8.34792459462959,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,7.0,49086.0,1.81277954285467,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,35.0,250598.0,10.2705721520785,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2006,84,0.0,25796.0,2.4077771509845,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2006,84,23.0,75676.0,3.10409889083318,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2006,84,2.0,92899.0,4.58818704011439,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2006,84,16.0,53561.0,4.84556274981566,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2006,84,49.0,216200.0,6.14946648702601,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2006,84,0.0,60658.0,2.84798093532644,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2006,84,13.0,215282.0,16.3600110711284,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2006,84,33.0,511952.0,61.1830269808826,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2006,84,14.0,62202.0,8.79620714621382,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2006,84,2.0,104214.0,19.0858516212122,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2006,84,490.0,2006598.0,297.056838487597,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2006,84,0.0,96646.0,5.56110099246367,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2006,84,2.0,1068417.0,28.0008614811142,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2006,84,101.0,386668.0,6.89772179473671,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2006,84,27.0,110423.0,8.11729449171327,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2006,84,16.0,349451.0,16.5451363488223,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2006,84,4.0,94452.0,9.91524923590476,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2006,84,0.0,128488.0,8.43715072737493,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2006,84,4.0,96966.0,6.03195051684996,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2006,84,40.0,2383784.0,412.116188673698,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2007,85,26.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2007,85,1.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2007,85,13.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2007,85,39.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2007,85,64.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2007,85,85.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2007,85,41.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2007,85,5.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2007,85,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2007,85,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2007,85,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2007,85,43.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2007,85,23.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2007,85,1.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2007,85,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2007,85,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2007,85,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2007,85,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2007,85,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2007,85,33.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2007,85,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2007,85,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2007,85,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2007,85,0.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2007,85,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2007,85,2.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2007,85,133.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2007,85,3.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2007,85,5.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2007,85,3.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2007,85,1.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2007,85,4.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2007,85,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2007,85,1.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2007,85,1.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2007,85,15.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2007,85,399.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2007,85,29.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2007,85,7.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2007,85,18.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2007,85,37.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2007,85,28.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2007,85,18.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2007,85,27.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2007,85,5.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2007,85,166.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2007,85,60.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2007,85,35.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2007,85,14.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2007,85,68.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2007,85,26.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2007,85,14.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2007,85,13.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2007,85,1.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2007,85,453.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2007,85,1.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2007,85,37.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2007,85,128.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2007,85,25.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2007,85,179.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2007,85,326.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2007,85,884.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2007,85,7.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2007,85,170.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2007,85,16.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2007,85,90.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2007,85,129.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2007,85,35.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2007,85,25.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2007,85,358.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2007,85,23.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2007,85,343.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2007,85,44.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2007,85,93.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2007,85,13.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2007,85,28.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2007,85,20.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2007,85,18.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2007,85,21.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2007,85,9.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2007,85,21.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2007,85,123.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2007,85,0.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2007,85,42.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2007,85,28.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2007,85,12.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2007,85,53.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2007,85,64.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2007,85,158.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2007,85,25.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2007,85,23.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2007,85,132.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2007,85,5.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2007,85,1.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2007,85,1.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2007,85,22.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2007,85,44.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2007,85,12.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2007,85,1.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2007,85,160.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2007,85,54.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2007,85,1.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2007,85,0.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2007,85,0.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2007,85,16.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2007,85,243.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2007,85,17.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2007,85,2.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2007,85,1.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2007,85,13.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2007,85,1.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2007,85,2.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2007,85,5.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2007,85,4.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2007,85,1.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2007,85,291.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2007,85,2.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2007,85,38.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2007,85,9.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2007,85,14.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2007,85,3.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2007,85,2.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2007,85,1.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2007,85,1.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2007,85,0.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2007,85,10.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2007,85,2.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2007,85,15.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2007,85,5.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2007,85,1.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2007,85,0.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2007,85,100.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2007,85,996.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,5.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,0.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,0.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,2.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2007,85,4.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2007,85,5.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2007,85,0.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,2.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,4.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,3.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,0.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,17.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,3.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2007,85,144.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2007,85,103.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2007,85,0.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2007,85,12.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2007,85,157.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2007,85,42.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2007,85,0.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2007,85,6.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2007,85,1.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2007,85,1.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2007,85,3.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2007,85,0.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2007,85,40.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2007,85,1.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2007,85,0.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2007,85,25.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2007,85,7.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2007,85,19.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2007,85,27.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2007,85,11.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2007,85,20.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2007,85,31.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2007,85,13.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2007,85,1.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2007,85,0.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2007,85,35.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2007,85,9.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2007,85,59.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2007,85,3.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2007,85,34.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2007,85,74.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2007,85,32.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2007,85,49.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2007,85,16.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2007,85,3.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2007,85,1.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2007,85,161.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2007,85,145.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2007,85,31.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2007,85,8.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2007,85,8.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2007,85,22.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2007,85,71.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2007,85,13.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2007,85,4.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2007,85,109.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2007,85,38.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2007,85,0.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2007,85,0.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2007,85,1.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2007,85,18.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2007,85,2.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2007,85,10.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2007,85,29.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2007,85,1.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2007,85,6.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2007,85,93.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2007,85,3.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2007,85,63.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2007,85,30.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2007,85,0.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2007,85,10.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2007,85,4.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,6.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,0.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2007,85,1.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2007,85,0.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,4.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,3.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,1.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,1.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2007,85,13.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2007,85,0.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2007,85,3.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2007,85,27.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2007,85,1.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2007,85,47.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2007,85,230.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2007,85,0.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2007,85,5.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2007,85,10.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2007,85,42.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2007,85,18.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2007,85,29.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2007,85,4.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2007,85,83.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2007,85,1.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2007,85,6.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2007,85,13.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2007,85,20.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2007,85,9.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,1.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,4.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,28.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,53.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2007,85,1.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2007,85,3.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2007,85,26.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2007,85,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2007,85,11.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2007,85,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2007,85,27.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2007,85,2.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,2.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,26.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2007,85,26.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,0.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,26.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2007,85,67.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,0.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,61.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2007,85,220.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,1.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,5.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2007,85,1.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2007,85,0.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2007,85,4.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,3.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,100.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,283.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,1.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,9.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2007,85,2.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,0.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,7.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,32.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2007,85,2.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,4.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2007,85,6.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,54.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,1.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,0.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,305.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,1.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,6.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,4.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,57.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,28.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,41.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,66.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,139.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,0.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,21.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2007,85,4.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,2.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,1.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2007,85,2.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,1.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,3.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,3.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2007,85,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,1.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,2.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,8.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,2.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,9.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2007,85,9.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2007,85,4.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2007,85,20.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,3.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,107.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,31.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,0.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,9.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,5.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2007,85,1.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2007,85,2.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2007,85,214.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,11.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,178.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2007,85,0.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,519.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,385.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,86.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,36.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2007,85,3.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2007,85,5.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2007,85,0.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2007,85,1.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,7.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,30.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2007,85,12.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2007,85,0.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2007,85,8.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2007,85,53.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2007,85,7.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,5.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2007,85,13.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2007,85,1408.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,55.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,33.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2007,85,16.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,448.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,44.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,5.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,33.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,8.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2007,85,26.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2007,85,55.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2007,85,49.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2007,85,2.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2007,85,571.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2007,85,50.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2007,85,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,1427.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,220.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,639.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,175.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2007,85,19.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2007,85,2.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2007,85,1.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2007,85,2.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2007,85,18.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2007,85,3.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2007,85,1.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2007,85,20.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,129.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2007,85,1.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2007,85,14.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2007,85,9.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,732.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,0.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,75.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,18.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2007,85,93.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,10.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,13.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,5.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,2.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2007,85,5.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,3.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,0.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,19.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,9.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,3.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,1.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,24.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2007,85,3.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,85.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,1.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2007,85,41.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,23.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,2.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,18.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,14.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,141.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2007,85,6.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2007,85,19.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,10.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,11.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,7.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,298.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,5.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,6.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,3.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,4.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,60.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,5.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,37.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,0.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,1.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,1.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,4.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,1.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,108.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,23.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,41.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,8.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,4.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,3.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,2.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,2.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,1.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,18.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2007,85,0.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2007,85,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,3.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,3.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,1.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,1.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,1.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,1.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,4.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,6.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2007,85,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,1.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2007,85,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,1.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,2.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2007,85,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,1.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2007,85,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2007,85,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2007,85,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2007,85,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2007,85,2.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,1.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,1.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,5.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2007,85,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,8.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2007,85,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2007,85,69.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2007,85,1518.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2007,85,964.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2007,85,12320.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2007,85,20.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2007,85,142.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2007,85,705.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2007,85,138.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2007,85,651.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2007,85,1109.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2007,85,110.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2007,85,326.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2007,85,111.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2007,85,51.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2007,85,147.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2007,85,35.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,333.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2007,85,332.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,3.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2007,85,35.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,15.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,210.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2007,85,166.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,310.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2007,85,558.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2007,85,2.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,2.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,183.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2007,85,174.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,58.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,12.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,61.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2007,85,1.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2007,85,44.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2007,85,32.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2007,85,46.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2007,85,168.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2007,85,2.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2007,85,36.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2007,85,106.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2007,85,3.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2007,85,12.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2007,85,1245.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2007,85,7.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2007,85,33.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2007,85,122.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2007,85,32.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2007,85,16.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2007,85,4.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2007,85,7.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2007,85,16.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2007,85,105.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2007,86,32.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2007,86,3.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2007,86,7.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2007,86,46.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2007,86,54.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2007,86,122.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2007,86,34.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2007,86,6.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2007,86,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2007,86,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2007,86,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2007,86,67.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2007,86,36.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2007,86,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2007,86,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2007,86,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2007,86,1.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2007,86,1.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2007,86,9.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2007,86,109.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2007,86,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2007,86,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2007,86,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2007,86,1.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2007,86,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2007,86,4.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2007,86,49.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2007,86,0.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2007,86,1.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2007,86,2.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2007,86,2.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2007,86,12.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2007,86,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2007,86,0.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2007,86,3.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2007,86,26.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2007,86,670.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2007,86,53.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2007,86,14.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2007,86,28.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2007,86,46.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2007,86,38.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2007,86,26.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2007,86,47.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2007,86,5.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2007,86,153.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2007,86,74.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2007,86,95.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2007,86,52.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2007,86,69.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2007,86,57.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2007,86,6.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2007,86,117.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2007,86,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2007,86,443.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2007,86,2.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2007,86,53.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2007,86,160.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2007,86,39.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2007,86,229.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2007,86,274.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2007,86,1557.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2007,86,32.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2007,86,184.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2007,86,14.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2007,86,173.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2007,86,180.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2007,86,68.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2007,86,78.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2007,86,379.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2007,86,29.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2007,86,582.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2007,86,48.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2007,86,299.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2007,86,76.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2007,86,16.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2007,86,34.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2007,86,81.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2007,86,38.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2007,86,44.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2007,86,28.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2007,86,119.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2007,86,15.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2007,86,104.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2007,86,27.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2007,86,19.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2007,86,125.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2007,86,137.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2007,86,68.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2007,86,43.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2007,86,10.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2007,86,7.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2007,86,6.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2007,86,3.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2007,86,2.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2007,86,19.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2007,86,27.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2007,86,5.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2007,86,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2007,86,115.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2007,86,117.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2007,86,1.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2007,86,0.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2007,86,0.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2007,86,50.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2007,86,72.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2007,86,5.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2007,86,2.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2007,86,2.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2007,86,2.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2007,86,1.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2007,86,12.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2007,86,6.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2007,86,15.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2007,86,3.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2007,86,451.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2007,86,3.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2007,86,114.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2007,86,10.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2007,86,12.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2007,86,45.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2007,86,2.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2007,86,5.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2007,86,4.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2007,86,0.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2007,86,122.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2007,86,2.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2007,86,25.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2007,86,4.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2007,86,7.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2007,86,6.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2007,86,360.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2007,86,1158.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,3.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,14.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,1.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,2.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2007,86,0.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2007,86,1.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2007,86,2.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,3.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,9.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,16.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,3.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,36.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,5.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2007,86,180.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2007,86,115.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2007,86,10.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2007,86,40.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2007,86,178.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2007,86,20.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2007,86,0.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2007,86,9.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2007,86,1.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2007,86,3.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2007,86,36.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2007,86,1.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2007,86,82.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2007,86,1.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2007,86,13.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2007,86,202.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2007,86,2.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2007,86,89.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2007,86,50.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2007,86,29.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2007,86,44.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2007,86,37.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2007,86,8.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2007,86,0.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2007,86,0.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2007,86,45.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2007,86,8.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2007,86,148.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2007,86,0.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2007,86,20.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2007,86,42.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2007,86,87.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2007,86,50.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2007,86,44.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2007,86,2.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2007,86,15.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2007,86,514.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2007,86,213.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2007,86,50.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2007,86,44.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2007,86,90.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2007,86,23.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2007,86,17.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2007,86,32.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2007,86,5.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2007,86,93.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2007,86,52.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2007,86,0.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2007,86,0.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2007,86,1.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2007,86,5.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2007,86,3.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2007,86,7.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2007,86,18.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2007,86,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2007,86,13.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2007,86,35.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2007,86,4.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2007,86,88.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2007,86,62.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2007,86,2.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2007,86,2.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2007,86,4.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,1.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,1.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2007,86,0.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2007,86,0.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,5.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,2.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,3.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,2.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2007,86,16.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2007,86,0.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2007,86,3.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2007,86,21.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2007,86,3.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2007,86,11.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2007,86,101.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2007,86,2.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2007,86,11.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2007,86,16.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2007,86,21.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2007,86,32.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2007,86,64.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2007,86,3.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2007,86,144.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2007,86,7.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2007,86,26.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2007,86,75.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2007,86,32.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2007,86,1.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,1.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,10.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,39.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,79.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2007,86,27.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2007,86,5.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2007,86,22.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2007,86,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2007,86,5.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2007,86,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2007,86,35.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2007,86,2.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,0.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,19.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2007,86,26.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,5.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,28.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2007,86,83.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,0.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,89.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2007,86,194.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,0.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2007,86,1.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2007,86,5.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2007,86,15.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,31.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,825.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,55.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,14.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,19.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2007,86,10.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,1.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,26.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,66.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2007,86,4.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,27.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2007,86,44.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,112.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,7.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,1.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,642.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,5.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,4.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,2.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,205.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,46.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,93.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,125.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,22.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,1.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,26.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2007,86,1.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2007,86,2.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,3.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,2.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,3.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2007,86,2.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,4.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,1.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,5.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,28.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,0.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,73.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2007,86,21.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2007,86,10.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2007,86,198.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,14.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,110.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,30.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,1.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,12.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,9.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2007,86,2.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2007,86,2.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2007,86,236.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,28.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2007,86,2.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,435.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2007,86,2.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,981.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,324.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,202.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,143.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2007,86,8.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2007,86,15.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2007,86,2.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2007,86,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,24.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,138.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2007,86,31.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2007,86,3.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2007,86,20.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2007,86,84.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2007,86,11.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,16.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2007,86,39.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2007,86,3062.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,295.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,102.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2007,86,43.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,1639.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,64.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,60.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,65.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,110.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2007,86,49.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2007,86,97.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2007,86,70.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2007,86,11.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2007,86,1180.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2007,86,178.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2007,86,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,3212.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,707.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,2055.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,591.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2007,86,86.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2007,86,11.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2007,86,4.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2007,86,0.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2007,86,63.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2007,86,8.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2007,86,16.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2007,86,37.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,423.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2007,86,14.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2007,86,100.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2007,86,15.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,2174.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,4.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,174.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,41.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2007,86,270.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,120.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,195.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,20.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,3.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2007,86,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,0.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,2.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,18.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,13.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,1.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,2.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,60.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2007,86,33.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,4.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,636.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,3.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2007,86,161.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,75.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,4.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,37.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,21.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,218.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2007,86,3.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2007,86,31.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,99.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,110.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,30.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,410.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,41.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,75.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,70.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,58.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,748.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,6.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,118.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,3.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,3.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,8.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,2.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,0.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,1.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,1.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,2.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,371.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,42.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,129.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,5.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,2.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,1.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,1.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,19.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2007,86,1.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2007,86,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,1.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,3.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,1.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,4.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,0.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,1.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,3.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,3.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,1.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,4.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2007,86,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,0.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,1.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2007,86,1.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,2.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,2.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,3.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2007,86,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,1.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,1.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2007,86,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,1.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2007,86,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2007,86,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2007,86,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2007,86,3.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,1.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,1.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2007,86,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,6.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2007,86,1.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2007,86,122.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2007,86,456.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2007,86,643.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2007,86,16082.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2007,86,32.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2007,86,193.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2007,86,1950.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2007,86,409.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2007,86,831.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2007,86,2823.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2007,86,258.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2007,86,338.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2007,86,258.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2007,86,128.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2007,86,158.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2007,86,60.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,217.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2007,86,470.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,3.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2007,86,22.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,22.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,149.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2007,86,152.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,396.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2007,86,266.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2007,86,10.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,2.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,313.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2007,86,52.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,166.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,24.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,87.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2007,86,3.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2007,86,88.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2007,86,81.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2007,86,19.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2007,86,167.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2007,86,4.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2007,86,28.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2007,86,63.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2007,86,11.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2007,86,9.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2007,86,1829.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2007,86,10.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2007,86,39.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2007,86,212.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2007,86,26.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2007,86,15.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2007,86,1.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2007,86,23.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2007,86,36.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2007,86,141.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2007,87,3.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2007,87,1.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2007,87,7.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2007,87,77.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2007,87,20.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2007,87,101.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2007,87,48.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2007,87,3.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2007,87,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2007,87,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2007,87,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2007,87,46.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2007,87,52.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2007,87,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2007,87,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2007,87,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2007,87,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2007,87,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2007,87,2.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2007,87,145.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2007,87,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2007,87,2.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2007,87,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2007,87,6.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2007,87,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2007,87,6.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2007,87,21.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2007,87,0.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2007,87,5.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2007,87,0.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2007,87,1.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2007,87,12.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2007,87,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2007,87,6.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2007,87,8.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2007,87,38.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2007,87,1061.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2007,87,66.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2007,87,77.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2007,87,86.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2007,87,30.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2007,87,28.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2007,87,81.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2007,87,192.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2007,87,17.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2007,87,99.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2007,87,88.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2007,87,45.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2007,87,27.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2007,87,64.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2007,87,222.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2007,87,19.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2007,87,338.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2007,87,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2007,87,558.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2007,87,1.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2007,87,136.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2007,87,156.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2007,87,56.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2007,87,183.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2007,87,287.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2007,87,1621.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2007,87,89.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2007,87,251.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2007,87,36.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2007,87,391.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2007,87,238.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2007,87,225.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2007,87,66.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2007,87,168.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2007,87,70.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2007,87,337.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2007,87,52.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2007,87,395.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2007,87,150.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2007,87,49.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2007,87,44.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2007,87,79.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2007,87,70.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2007,87,43.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2007,87,105.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2007,87,50.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2007,87,20.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2007,87,53.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2007,87,12.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2007,87,38.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2007,87,226.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2007,87,232.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2007,87,96.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2007,87,39.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2007,87,43.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2007,87,11.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2007,87,0.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2007,87,15.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2007,87,2.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2007,87,23.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2007,87,29.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2007,87,27.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2007,87,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2007,87,94.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2007,87,268.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2007,87,4.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2007,87,6.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2007,87,1.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2007,87,229.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2007,87,60.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2007,87,16.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2007,87,2.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2007,87,0.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2007,87,3.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2007,87,3.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2007,87,24.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2007,87,40.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2007,87,18.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2007,87,13.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2007,87,1302.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2007,87,3.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2007,87,192.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2007,87,33.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2007,87,39.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2007,87,128.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2007,87,2.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2007,87,14.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2007,87,13.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2007,87,2.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2007,87,90.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2007,87,8.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2007,87,5.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2007,87,18.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2007,87,15.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2007,87,44.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2007,87,516.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2007,87,164.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,16.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,1.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,3.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,6.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2007,87,11.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2007,87,3.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2007,87,4.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,1.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,6.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,15.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,5.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,55.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,8.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2007,87,134.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2007,87,254.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2007,87,70.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2007,87,104.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2007,87,632.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2007,87,28.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2007,87,5.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2007,87,187.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2007,87,8.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2007,87,7.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2007,87,114.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2007,87,8.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2007,87,130.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2007,87,3.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2007,87,6.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2007,87,171.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2007,87,19.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2007,87,111.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2007,87,119.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2007,87,92.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2007,87,76.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2007,87,59.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2007,87,31.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2007,87,5.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2007,87,4.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2007,87,82.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2007,87,32.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2007,87,465.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2007,87,4.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2007,87,51.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2007,87,51.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2007,87,376.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2007,87,51.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2007,87,63.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2007,87,4.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2007,87,14.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2007,87,1178.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2007,87,269.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2007,87,73.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2007,87,140.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2007,87,145.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2007,87,115.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2007,87,21.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2007,87,146.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2007,87,9.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2007,87,254.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2007,87,184.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2007,87,1.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2007,87,4.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2007,87,5.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2007,87,3.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2007,87,7.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2007,87,39.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2007,87,24.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2007,87,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2007,87,10.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2007,87,53.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2007,87,9.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2007,87,266.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2007,87,201.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2007,87,12.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2007,87,4.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2007,87,4.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,1.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,8.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2007,87,3.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2007,87,4.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,4.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,4.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,8.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,6.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2007,87,20.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2007,87,16.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2007,87,8.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2007,87,56.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2007,87,4.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2007,87,8.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2007,87,337.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2007,87,2.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2007,87,4.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2007,87,10.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2007,87,40.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2007,87,51.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2007,87,155.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2007,87,7.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2007,87,149.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2007,87,2.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2007,87,62.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2007,87,48.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2007,87,64.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2007,87,3.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,3.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,2.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,77.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,213.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2007,87,111.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2007,87,21.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2007,87,25.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2007,87,1.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2007,87,9.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2007,87,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2007,87,54.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2007,87,2.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,2.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,30.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2007,87,76.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,6.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,19.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2007,87,185.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,1.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,86.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2007,87,231.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,6.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2007,87,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,1.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2007,87,32.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2007,87,73.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,135.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,1347.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,39.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,40.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,45.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2007,87,8.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,4.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,36.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,77.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2007,87,3.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,149.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2007,87,129.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,435.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,18.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,4.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,1879.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,23.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,6.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,1.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,2.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,2.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,485.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,16.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,188.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,637.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,35.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,10.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,96.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2007,87,34.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,1.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,3.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2007,87,22.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,3.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,7.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,8.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,6.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2007,87,2.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,1.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,4.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,3.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,182.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,1.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,154.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,160.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,5.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,271.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2007,87,61.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2007,87,20.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2007,87,475.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,48.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,186.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,66.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,4.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,61.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,9.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2007,87,2.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2007,87,4.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2007,87,259.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,213.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2007,87,15.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,200.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2007,87,10.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,837.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,114.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,363.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,438.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2007,87,23.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2007,87,110.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2007,87,10.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2007,87,4.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,128.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,466.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2007,87,222.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2007,87,21.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2007,87,68.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2007,87,538.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2007,87,24.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,70.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2007,87,84.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2007,87,8558.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,584.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,361.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2007,87,220.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,3830.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,188.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,238.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,151.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,274.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2007,87,138.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2007,87,148.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2007,87,211.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2007,87,14.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2007,87,1439.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2007,87,830.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2007,87,2.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,2553.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,1350.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,4356.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,825.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2007,87,363.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2007,87,28.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2007,87,4.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2007,87,5.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2007,87,150.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2007,87,16.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2007,87,173.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2007,87,289.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,2108.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2007,87,82.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2007,87,191.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2007,87,68.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,7264.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,1.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,65.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,255.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2007,87,246.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,836.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,690.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,125.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,13.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2007,87,1.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,1.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,7.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,3.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,1.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,157.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,49.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,16.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,1.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,168.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2007,87,260.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,1.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,1.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,1339.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,4.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2007,87,371.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,563.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,7.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,161.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,190.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,891.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2007,87,17.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2007,87,210.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,422.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,1153.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,141.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,458.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,101.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,450.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,428.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,570.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,2431.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,28.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,347.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,163.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,19.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,119.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,15.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,5.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,2.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,2.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,871.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,85.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,858.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,3.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,2.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,5.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,2.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,1.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,1.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,1.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,1.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,1.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,21.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2007,87,0.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2007,87,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,0.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,1.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,2.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,1.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,1.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,1.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,1.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,1.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,5.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,1.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2007,87,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,2.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,2.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2007,87,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,3.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,2.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,5.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2007,87,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,1.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,31.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,1.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2007,87,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2007,87,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2007,87,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2007,87,2.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2007,87,1.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,2.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2007,87,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,9.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,1.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2007,87,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2007,87,74.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2007,87,119.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2007,87,461.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2007,87,11758.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2007,87,30.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2007,87,171.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2007,87,1457.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2007,87,601.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2007,87,497.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2007,87,2676.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2007,87,638.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2007,87,246.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2007,87,254.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2007,87,136.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2007,87,273.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2007,87,67.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,313.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2007,87,447.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,9.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2007,87,32.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,36.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,159.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2007,87,95.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,289.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2007,87,173.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2007,87,7.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,1.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,379.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2007,87,33.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,236.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,24.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,144.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2007,87,1.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2007,87,52.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2007,87,15.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2007,87,37.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2007,87,126.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2007,87,8.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2007,87,24.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2007,87,61.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2007,87,8.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2007,87,6.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2007,87,2168.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2007,87,8.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2007,87,41.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2007,87,415.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2007,87,21.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2007,87,47.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2007,87,6.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2007,87,11.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2007,87,52.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2007,87,214.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2007,88,2.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2007,88,10.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2007,88,4.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2007,88,61.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2007,88,3.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2007,88,47.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2007,88,40.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2007,88,2.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2007,88,2.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2007,88,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2007,88,5.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2007,88,49.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2007,88,28.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2007,88,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2007,88,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2007,88,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2007,88,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2007,88,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2007,88,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2007,88,160.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2007,88,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2007,88,3.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2007,88,1.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2007,88,3.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2007,88,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2007,88,7.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2007,88,26.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2007,88,3.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2007,88,18.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2007,88,1.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2007,88,3.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2007,88,11.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2007,88,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2007,88,1.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2007,88,0.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2007,88,42.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2007,88,694.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2007,88,37.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2007,88,80.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2007,88,88.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2007,88,27.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2007,88,31.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2007,88,82.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2007,88,181.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2007,88,16.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2007,88,133.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2007,88,107.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2007,88,18.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2007,88,71.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2007,88,36.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2007,88,127.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2007,88,24.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2007,88,109.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2007,88,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2007,88,551.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2007,88,1.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2007,88,163.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2007,88,153.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2007,88,56.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2007,88,93.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2007,88,122.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2007,88,815.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2007,88,79.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2007,88,169.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2007,88,15.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2007,88,804.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2007,88,78.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2007,88,84.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2007,88,33.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2007,88,39.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2007,88,101.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2007,88,121.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2007,88,56.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2007,88,309.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2007,88,69.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2007,88,11.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2007,88,56.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2007,88,22.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2007,88,82.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2007,88,9.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2007,88,124.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2007,88,102.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2007,88,30.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2007,88,13.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2007,88,0.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2007,88,86.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2007,88,387.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2007,88,380.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2007,88,93.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2007,88,29.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2007,88,33.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2007,88,12.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2007,88,3.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2007,88,34.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2007,88,0.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2007,88,38.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2007,88,8.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2007,88,39.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2007,88,1.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2007,88,42.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2007,88,320.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2007,88,10.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2007,88,16.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2007,88,2.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2007,88,771.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2007,88,53.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2007,88,48.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2007,88,7.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2007,88,1.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2007,88,4.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2007,88,4.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2007,88,28.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2007,88,10.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2007,88,17.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2007,88,18.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2007,88,2168.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2007,88,9.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2007,88,305.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2007,88,17.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2007,88,31.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2007,88,76.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2007,88,2.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2007,88,9.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2007,88,0.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2007,88,0.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2007,88,52.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2007,88,6.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2007,88,11.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2007,88,29.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2007,88,5.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2007,88,125.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2007,88,1042.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2007,88,125.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,6.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,1.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,5.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,1.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2007,88,4.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2007,88,10.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2007,88,5.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,3.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,14.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,16.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,5.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,70.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,10.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2007,88,212.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2007,88,198.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2007,88,57.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2007,88,88.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2007,88,767.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2007,88,24.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2007,88,64.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2007,88,328.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2007,88,38.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2007,88,22.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2007,88,33.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2007,88,6.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2007,88,190.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2007,88,17.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2007,88,13.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2007,88,109.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2007,88,33.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2007,88,120.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2007,88,125.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2007,88,55.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2007,88,74.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2007,88,50.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2007,88,56.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2007,88,1.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2007,88,29.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2007,88,89.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2007,88,42.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2007,88,815.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2007,88,4.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2007,88,33.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2007,88,98.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2007,88,688.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2007,88,46.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2007,88,29.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2007,88,9.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2007,88,14.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2007,88,2098.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2007,88,347.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2007,88,108.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2007,88,271.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2007,88,408.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2007,88,161.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2007,88,18.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2007,88,170.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2007,88,14.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2007,88,247.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2007,88,506.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2007,88,2.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2007,88,14.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2007,88,11.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2007,88,25.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2007,88,16.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2007,88,41.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2007,88,30.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2007,88,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2007,88,9.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2007,88,58.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2007,88,94.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2007,88,295.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2007,88,96.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2007,88,106.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2007,88,0.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2007,88,1.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,18.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,6.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2007,88,2.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2007,88,4.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,6.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,20.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,3.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,38.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2007,88,112.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2007,88,10.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2007,88,3.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2007,88,102.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2007,88,6.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2007,88,23.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2007,88,160.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2007,88,5.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2007,88,2.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2007,88,1.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2007,88,34.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2007,88,126.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2007,88,108.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2007,88,9.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2007,88,154.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2007,88,17.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2007,88,51.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2007,88,32.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2007,88,84.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2007,88,4.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,1.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,2.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,32.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,165.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2007,88,30.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2007,88,12.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2007,88,43.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2007,88,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2007,88,12.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2007,88,4.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2007,88,117.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2007,88,2.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,0.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,19.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2007,88,120.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,2.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,4.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,15.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2007,88,146.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,2.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,43.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2007,88,162.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,2.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,1.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2007,88,1.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,5.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2007,88,75.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2007,88,59.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,117.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,645.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,25.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,26.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,77.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2007,88,1.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,4.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,61.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,55.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2007,88,4.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,93.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2007,88,111.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,459.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,26.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,8.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,3037.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,121.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,11.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,2.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,11.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,2.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,229.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,7.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,268.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,501.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,40.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,18.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,115.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2007,88,68.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,30.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,15.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2007,88,58.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,7.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,6.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,17.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,9.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2007,88,5.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,1.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,5.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,2.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,1.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,176.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,204.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,220.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,4.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,327.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2007,88,89.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2007,88,124.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2007,88,401.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,43.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,238.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,72.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,2.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,83.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,6.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2007,88,3.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2007,88,4.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2007,88,483.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,371.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2007,88,29.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,188.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2007,88,42.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,244.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,33.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,503.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,611.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2007,88,56.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2007,88,252.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2007,88,26.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2007,88,4.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,129.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,755.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2007,88,449.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2007,88,83.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2007,88,86.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2007,88,509.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2007,88,21.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,78.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2007,88,86.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2007,88,8840.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,466.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,295.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2007,88,311.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,4310.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,177.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,327.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,215.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,86.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2007,88,207.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2007,88,48.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2007,88,144.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2007,88,47.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2007,88,739.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2007,88,1252.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2007,88,5.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,439.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,1087.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,1904.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,277.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2007,88,978.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2007,88,80.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2007,88,5.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2007,88,17.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2007,88,307.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2007,88,55.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2007,88,310.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2007,88,555.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,2757.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2007,88,109.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2007,88,231.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2007,88,370.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,8082.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,6.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,22.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,336.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2007,88,120.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,480.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,1206.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,157.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,16.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2007,88,1.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,38.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,3.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,1.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,332.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,279.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,21.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,1.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,255.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2007,88,266.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,5.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,1129.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,6.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2007,88,470.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,997.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,36.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,482.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,451.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,1851.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2007,88,10.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2007,88,460.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,745.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,1068.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,118.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,321.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,148.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,599.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,383.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,299.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,3566.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,29.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,675.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,95.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,11.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,241.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,91.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,30.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,1.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,2.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,2.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,3.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,579.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,45.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,1697.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,30.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,1.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,3.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,2.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,2.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,37.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2007,88,1.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2007,88,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,1.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,1.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,2.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,2.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,1.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,1.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,1.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,1.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,1.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,6.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,3.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2007,88,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,6.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,1.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2007,88,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,15.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,2.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,2.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,29.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2007,88,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,1.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,185.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,1.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,1.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2007,88,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,1.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2007,88,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2007,88,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2007,88,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2007,88,2.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,1.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,1.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,1.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2007,88,3.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,9.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2007,88,1.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2007,88,27.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2007,88,21.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2007,88,259.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2007,88,3806.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2007,88,26.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2007,88,80.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2007,88,525.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2007,88,214.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2007,88,154.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2007,88,1458.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2007,88,359.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2007,88,62.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2007,88,118.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2007,88,54.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2007,88,216.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2007,88,35.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,242.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2007,88,289.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,10.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2007,88,27.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,24.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,92.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2007,88,99.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,195.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2007,88,71.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2007,88,10.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,5.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,171.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2007,88,10.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,292.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,5.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,112.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2007,88,13.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2007,88,11.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2007,88,4.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2007,88,15.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2007,88,83.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2007,88,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2007,88,26.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2007,88,32.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2007,88,6.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2007,88,6.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2007,88,1214.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2007,88,1.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2007,88,75.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2007,88,369.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2007,88,22.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2007,88,66.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2007,88,2.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2007,88,6.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2007,88,49.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2007,88,166.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2007,89,6.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2007,89,11.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2007,89,4.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2007,89,22.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2007,89,1.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2007,89,52.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2007,89,30.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2007,89,0.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2007,89,1.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2007,89,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2007,89,1.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2007,89,19.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2007,89,6.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2007,89,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2007,89,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2007,89,1.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2007,89,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2007,89,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2007,89,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2007,89,120.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2007,89,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2007,89,1.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2007,89,1.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2007,89,0.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2007,89,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2007,89,2.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2007,89,41.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2007,89,0.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2007,89,27.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2007,89,3.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2007,89,4.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2007,89,9.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2007,89,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2007,89,1.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2007,89,1.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2007,89,26.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2007,89,137.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2007,89,11.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2007,89,27.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2007,89,39.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2007,89,12.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2007,89,23.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2007,89,13.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2007,89,138.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2007,89,7.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2007,89,67.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2007,89,73.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2007,89,26.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2007,89,128.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2007,89,55.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2007,89,78.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2007,89,20.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2007,89,28.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2007,89,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2007,89,443.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2007,89,1.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2007,89,203.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2007,89,165.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2007,89,59.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2007,89,26.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2007,89,68.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2007,89,533.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2007,89,27.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2007,89,57.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2007,89,7.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2007,89,988.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2007,89,55.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2007,89,52.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2007,89,14.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2007,89,26.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2007,89,8.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2007,89,114.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2007,89,47.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2007,89,71.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2007,89,28.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2007,89,6.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2007,89,94.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2007,89,13.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2007,89,68.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2007,89,4.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2007,89,190.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2007,89,75.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2007,89,25.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2007,89,23.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2007,89,2.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2007,89,78.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2007,89,435.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2007,89,1465.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2007,89,171.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2007,89,24.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2007,89,95.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2007,89,10.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2007,89,5.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2007,89,44.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2007,89,2.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2007,89,73.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2007,89,14.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2007,89,67.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2007,89,8.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2007,89,23.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2007,89,322.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2007,89,23.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2007,89,18.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2007,89,15.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2007,89,1207.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2007,89,94.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2007,89,28.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2007,89,14.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2007,89,6.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2007,89,7.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2007,89,11.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2007,89,29.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2007,89,22.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2007,89,17.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2007,89,14.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2007,89,2471.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2007,89,13.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2007,89,218.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2007,89,20.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2007,89,75.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2007,89,39.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2007,89,6.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2007,89,23.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2007,89,0.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2007,89,2.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2007,89,108.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2007,89,34.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2007,89,26.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2007,89,22.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2007,89,37.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2007,89,67.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2007,89,774.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2007,89,145.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,5.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,2.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,3.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,5.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2007,89,3.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2007,89,3.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2007,89,4.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,0.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,0.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,16.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,9.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,51.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,7.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2007,89,133.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2007,89,109.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2007,89,28.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2007,89,115.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2007,89,886.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2007,89,19.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2007,89,75.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2007,89,195.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2007,89,72.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2007,89,23.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2007,89,5.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2007,89,31.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2007,89,109.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2007,89,62.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2007,89,16.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2007,89,75.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2007,89,21.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2007,89,64.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2007,89,41.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2007,89,20.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2007,89,70.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2007,89,22.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2007,89,50.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2007,89,1.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2007,89,0.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2007,89,25.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2007,89,59.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2007,89,694.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2007,89,0.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2007,89,40.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2007,89,102.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2007,89,178.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2007,89,39.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2007,89,31.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2007,89,8.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2007,89,5.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2007,89,2688.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2007,89,336.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2007,89,62.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2007,89,155.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2007,89,400.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2007,89,125.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2007,89,26.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2007,89,95.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2007,89,7.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2007,89,269.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2007,89,470.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2007,89,1.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2007,89,8.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2007,89,49.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2007,89,44.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2007,89,8.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2007,89,50.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2007,89,98.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2007,89,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2007,89,16.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2007,89,71.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2007,89,212.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2007,89,608.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2007,89,65.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2007,89,253.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2007,89,1.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2007,89,1.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,7.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,3.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2007,89,0.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2007,89,1.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,7.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,13.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,1.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,12.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2007,89,45.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2007,89,2.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2007,89,2.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2007,89,49.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2007,89,0.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2007,89,9.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2007,89,147.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2007,89,7.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2007,89,0.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2007,89,1.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2007,89,27.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2007,89,94.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2007,89,75.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2007,89,22.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2007,89,143.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2007,89,3.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2007,89,28.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2007,89,20.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2007,89,78.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2007,89,1.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,0.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,4.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,13.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,196.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2007,89,14.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2007,89,20.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2007,89,18.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2007,89,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2007,89,35.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2007,89,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2007,89,53.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2007,89,1.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,0.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,15.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2007,89,77.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,2.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,2.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,11.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2007,89,26.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,7.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,43.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2007,89,127.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,3.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,0.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2007,89,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,1.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2007,89,20.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2007,89,25.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,54.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,149.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,10.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,16.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,25.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2007,89,1.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,3.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,26.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,28.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2007,89,2.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,21.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2007,89,74.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,277.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,28.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,5.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,1862.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,54.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,4.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,1.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,5.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,1.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,61.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,0.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,87.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,125.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,6.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,31.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,65.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2007,89,25.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,43.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,4.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2007,89,87.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,3.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,8.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,13.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,1.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2007,89,1.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,1.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,89.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,2.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,2.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,12.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,173.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,4.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,202.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2007,89,85.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2007,89,160.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2007,89,352.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,10.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,127.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,18.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,2.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,118.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,17.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2007,89,2.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2007,89,2.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2007,89,334.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,294.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2007,89,15.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,144.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2007,89,47.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,118.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,2.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,598.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,333.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2007,89,30.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2007,89,169.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2007,89,16.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2007,89,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,108.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,626.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2007,89,246.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2007,89,84.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2007,89,81.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2007,89,90.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2007,89,18.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,69.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2007,89,76.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2007,89,6913.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,117.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,125.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2007,89,357.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,2199.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,81.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,106.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,27.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,43.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2007,89,93.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2007,89,31.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2007,89,85.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2007,89,26.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2007,89,290.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2007,89,817.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2007,89,4.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,35.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,451.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,546.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,52.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2007,89,554.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2007,89,62.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2007,89,2.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2007,89,6.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2007,89,154.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2007,89,7.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2007,89,211.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2007,89,245.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,549.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2007,89,55.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2007,89,62.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2007,89,263.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,3366.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,6.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,25.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,156.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2007,89,42.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,185.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,387.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,50.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,16.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2007,89,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,1.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,8.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,1.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,295.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,185.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,3.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,178.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2007,89,81.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,1.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,740.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,12.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2007,89,460.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,437.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,5.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,201.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,283.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,915.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2007,89,8.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2007,89,414.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,273.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,359.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,58.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,68.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,59.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,237.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,148.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,69.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,1235.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,13.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,238.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,7.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,6.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,51.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,34.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,18.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,1.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,1.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,1.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,169.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,15.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,762.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,3.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,1.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,3.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,1.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,2.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,10.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2007,89,1.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2007,89,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,2.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,3.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,1.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,1.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,4.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,1.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,1.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,6.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2007,89,1.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,2.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2007,89,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,6.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,3.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2007,89,1.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,1.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,12.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,1.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,3.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2007,89,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,1.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2007,89,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2007,89,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2007,89,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2007,89,1.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,1.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2007,89,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,4.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,2.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2007,89,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2007,89,5.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2007,89,1.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2007,89,151.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2007,89,931.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2007,89,7.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2007,89,35.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2007,89,58.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2007,89,30.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2007,89,45.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2007,89,400.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2007,89,105.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2007,89,29.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2007,89,122.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2007,89,41.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2007,89,78.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2007,89,12.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,217.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2007,89,260.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,53.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2007,89,10.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,12.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,50.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2007,89,59.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,68.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2007,89,21.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2007,89,0.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,1.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,68.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2007,89,3.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,120.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,2.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,96.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2007,89,11.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2007,89,1.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2007,89,1.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2007,89,4.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2007,89,66.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2007,89,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2007,89,22.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2007,89,24.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2007,89,4.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2007,89,10.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2007,89,788.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2007,89,1.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2007,89,70.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2007,89,229.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2007,89,15.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2007,89,20.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2007,89,0.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2007,89,4.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2007,89,8.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2007,89,142.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2007,90,12.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2007,90,0.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2007,90,4.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2007,90,19.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2007,90,1.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2007,90,27.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2007,90,31.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2007,90,0.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2007,90,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2007,90,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2007,90,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2007,90,7.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2007,90,1.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2007,90,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2007,90,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2007,90,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2007,90,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2007,90,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2007,90,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2007,90,162.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2007,90,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2007,90,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2007,90,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2007,90,1.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2007,90,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2007,90,2.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2007,90,48.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2007,90,0.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2007,90,16.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2007,90,1.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2007,90,2.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2007,90,3.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2007,90,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2007,90,0.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2007,90,2.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2007,90,36.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2007,90,59.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2007,90,2.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2007,90,11.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2007,90,17.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2007,90,19.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2007,90,8.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2007,90,5.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2007,90,64.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2007,90,0.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2007,90,22.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2007,90,48.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2007,90,12.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2007,90,59.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2007,90,35.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2007,90,45.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2007,90,23.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2007,90,12.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2007,90,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2007,90,142.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2007,90,0.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2007,90,65.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2007,90,81.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2007,90,34.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2007,90,18.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2007,90,25.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2007,90,217.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2007,90,28.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2007,90,18.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2007,90,45.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2007,90,615.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2007,90,12.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2007,90,9.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2007,90,3.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2007,90,7.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2007,90,9.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2007,90,14.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2007,90,24.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2007,90,16.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2007,90,14.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2007,90,1.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2007,90,22.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2007,90,11.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2007,90,16.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2007,90,1.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2007,90,172.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2007,90,36.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2007,90,4.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2007,90,5.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2007,90,2.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2007,90,62.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2007,90,222.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2007,90,1870.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2007,90,124.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2007,90,29.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2007,90,52.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2007,90,9.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2007,90,1.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2007,90,17.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2007,90,1.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2007,90,29.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2007,90,5.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2007,90,64.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2007,90,4.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2007,90,12.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2007,90,233.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2007,90,42.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2007,90,25.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2007,90,35.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2007,90,1608.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2007,90,35.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2007,90,29.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2007,90,16.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2007,90,1.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2007,90,18.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2007,90,12.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2007,90,12.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2007,90,30.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2007,90,14.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2007,90,9.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2007,90,2141.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2007,90,13.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2007,90,96.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2007,90,18.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2007,90,242.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2007,90,13.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2007,90,18.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2007,90,39.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2007,90,2.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2007,90,2.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2007,90,108.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2007,90,58.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2007,90,15.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2007,90,29.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2007,90,12.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2007,90,35.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2007,90,270.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2007,90,9.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,15.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,1.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,2.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,1.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2007,90,8.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2007,90,8.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2007,90,3.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,1.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,7.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,4.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,21.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,28.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,16.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2007,90,89.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2007,90,37.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2007,90,11.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2007,90,106.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2007,90,1151.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2007,90,27.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2007,90,19.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2007,90,31.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2007,90,58.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2007,90,14.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2007,90,6.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2007,90,3.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2007,90,47.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2007,90,13.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2007,90,12.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2007,90,70.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2007,90,11.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2007,90,27.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2007,90,8.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2007,90,16.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2007,90,15.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2007,90,9.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2007,90,52.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2007,90,1.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2007,90,1.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2007,90,6.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2007,90,13.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2007,90,473.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2007,90,3.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2007,90,19.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2007,90,56.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2007,90,94.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2007,90,18.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2007,90,50.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2007,90,5.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2007,90,5.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2007,90,1365.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2007,90,194.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2007,90,57.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2007,90,56.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2007,90,175.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2007,90,70.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2007,90,27.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2007,90,71.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2007,90,5.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2007,90,349.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2007,90,385.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2007,90,1.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2007,90,2.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2007,90,63.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2007,90,41.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2007,90,4.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2007,90,75.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2007,90,149.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2007,90,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2007,90,17.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2007,90,101.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2007,90,25.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2007,90,895.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2007,90,60.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2007,90,166.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2007,90,59.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2007,90,3.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,8.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,1.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2007,90,2.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2007,90,0.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,41.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,5.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,0.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,10.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2007,90,38.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2007,90,1.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2007,90,1.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2007,90,16.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2007,90,5.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2007,90,1.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2007,90,52.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2007,90,9.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2007,90,1.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2007,90,0.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2007,90,12.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2007,90,80.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2007,90,41.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2007,90,26.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2007,90,65.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2007,90,8.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2007,90,16.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2007,90,13.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2007,90,18.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2007,90,2.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,0.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,0.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,19.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,172.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2007,90,7.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2007,90,5.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2007,90,9.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2007,90,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2007,90,10.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2007,90,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2007,90,8.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2007,90,0.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,2.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,7.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2007,90,37.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,1.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,1.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2007,90,6.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,1.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,16.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2007,90,55.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,0.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2007,90,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2007,90,4.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2007,90,14.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,8.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,38.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,2.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,8.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,11.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2007,90,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,1.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,12.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,16.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2007,90,0.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,3.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2007,90,14.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,49.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,8.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,3.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,317.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,11.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,1.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,14.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,1.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,33.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,6.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,1.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,2.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,13.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2007,90,5.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,5.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2007,90,30.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,3.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,1.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,1.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,2.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2007,90,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,1.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,14.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,3.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,50.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,0.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,97.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2007,90,19.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2007,90,35.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2007,90,126.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,2.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,52.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,5.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,2.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,23.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,5.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2007,90,2.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2007,90,1.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2007,90,141.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,208.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2007,90,5.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,70.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2007,90,30.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,10.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,0.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,346.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,63.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2007,90,50.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2007,90,38.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2007,90,14.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2007,90,2.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,34.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,187.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2007,90,34.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2007,90,23.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2007,90,27.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2007,90,21.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2007,90,5.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,14.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2007,90,46.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2007,90,2919.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,6.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,23.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2007,90,69.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,421.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,9.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,1.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,1.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,4.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2007,90,16.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2007,90,10.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2007,90,14.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2007,90,2.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2007,90,22.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2007,90,143.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2007,90,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,3.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,56.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,56.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,7.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2007,90,94.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2007,90,14.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2007,90,2.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2007,90,1.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2007,90,33.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2007,90,2.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2007,90,29.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2007,90,36.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,55.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2007,90,6.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2007,90,0.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2007,90,22.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,425.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,0.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,2.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,7.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2007,90,2.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,15.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,217.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,7.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,0.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2007,90,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,1.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,2.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,0.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,32.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,15.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,1.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,38.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2007,90,3.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,1.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,225.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,9.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2007,90,28.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,68.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,1.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,18.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,32.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,128.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2007,90,6.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2007,90,158.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,25.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,35.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,11.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,4.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,18.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,14.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,0.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,108.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,0.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,32.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,4.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,6.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,13.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,6.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,35.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,0.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,1.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,1.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,4.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2007,90,0.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2007,90,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,1.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,1.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2007,90,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,1.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2007,90,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2007,90,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,2.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,1.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2007,90,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2007,90,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2007,90,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2007,90,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2007,90,1.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,1.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2007,90,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,1.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2007,90,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2007,90,10.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2007,90,0.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2007,90,21.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2007,90,101.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2007,90,3.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2007,90,9.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2007,90,15.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2007,90,2.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2007,90,5.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2007,90,49.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2007,90,21.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2007,90,17.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2007,90,62.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2007,90,33.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2007,90,35.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2007,90,9.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,80.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2007,90,232.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,25.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2007,90,0.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,14.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,26.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2007,90,49.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,15.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2007,90,6.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2007,90,1.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,0.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,33.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2007,90,0.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,28.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,3.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,31.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2007,90,5.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2007,90,0.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2007,90,1.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2007,90,1.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2007,90,19.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2007,90,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2007,90,6.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2007,90,24.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2007,90,0.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2007,90,1.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2007,90,576.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2007,90,0.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2007,90,28.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2007,90,60.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2007,90,10.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2007,90,11.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2007,90,1.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2007,90,1.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2007,90,9.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2007,90,61.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2007,91,6.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2007,91,2.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2007,91,1.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2007,91,8.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2007,91,1.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2007,91,28.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2007,91,23.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2007,91,0.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2007,91,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2007,91,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2007,91,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2007,91,2.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2007,91,0.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2007,91,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2007,91,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2007,91,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2007,91,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2007,91,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2007,91,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2007,91,139.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2007,91,10.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2007,91,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2007,91,1.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2007,91,1.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2007,91,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2007,91,0.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2007,91,116.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2007,91,6.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2007,91,16.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2007,91,2.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2007,91,4.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2007,91,2.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2007,91,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2007,91,4.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2007,91,0.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2007,91,37.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2007,91,82.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2007,91,0.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2007,91,25.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2007,91,19.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2007,91,12.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2007,91,3.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2007,91,4.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2007,91,49.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2007,91,2.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2007,91,28.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2007,91,48.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2007,91,24.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2007,91,40.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2007,91,17.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2007,91,34.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2007,91,12.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2007,91,6.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2007,91,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2007,91,57.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2007,91,0.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2007,91,58.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2007,91,52.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2007,91,19.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2007,91,13.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2007,91,25.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2007,91,60.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2007,91,8.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2007,91,5.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2007,91,92.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2007,91,334.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2007,91,6.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2007,91,5.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2007,91,8.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2007,91,27.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2007,91,1.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2007,91,3.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2007,91,15.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2007,91,1.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2007,91,22.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2007,91,0.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2007,91,31.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2007,91,5.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2007,91,7.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2007,91,1.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2007,91,56.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2007,91,24.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2007,91,12.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2007,91,0.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2007,91,0.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2007,91,25.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2007,91,59.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2007,91,412.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2007,91,64.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2007,91,10.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2007,91,13.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2007,91,6.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2007,91,3.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2007,91,6.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2007,91,0.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2007,91,10.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2007,91,4.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2007,91,24.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2007,91,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2007,91,13.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2007,91,124.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2007,91,19.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2007,91,8.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2007,91,4.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2007,91,319.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2007,91,9.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2007,91,17.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2007,91,21.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2007,91,5.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2007,91,15.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2007,91,24.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2007,91,17.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2007,91,17.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2007,91,8.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2007,91,8.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2007,91,1810.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2007,91,11.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2007,91,89.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2007,91,45.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2007,91,352.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2007,91,3.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2007,91,17.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2007,91,131.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2007,91,2.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2007,91,4.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2007,91,122.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2007,91,47.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2007,91,29.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2007,91,24.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2007,91,9.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2007,91,10.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2007,91,142.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2007,91,18.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,23.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,0.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,0.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,5.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2007,91,18.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2007,91,21.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2007,91,4.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,8.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,12.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,5.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,15.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,35.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,13.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2007,91,88.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2007,91,27.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2007,91,16.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2007,91,120.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2007,91,1363.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2007,91,21.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2007,91,48.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2007,91,29.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2007,91,70.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2007,91,43.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2007,91,14.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2007,91,3.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2007,91,21.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2007,91,25.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2007,91,1.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2007,91,55.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2007,91,10.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2007,91,7.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2007,91,10.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2007,91,10.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2007,91,12.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2007,91,25.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2007,91,70.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2007,91,2.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2007,91,2.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2007,91,9.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2007,91,9.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2007,91,588.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2007,91,4.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2007,91,11.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2007,91,37.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2007,91,75.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2007,91,18.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2007,91,18.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2007,91,10.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2007,91,2.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2007,91,478.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2007,91,87.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2007,91,37.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2007,91,13.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2007,91,99.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2007,91,94.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2007,91,30.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2007,91,90.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2007,91,10.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2007,91,464.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2007,91,202.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2007,91,6.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2007,91,3.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2007,91,49.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2007,91,44.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2007,91,41.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2007,91,160.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2007,91,185.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2007,91,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2007,91,50.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2007,91,112.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2007,91,23.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2007,91,977.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2007,91,86.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2007,91,165.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2007,91,81.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2007,91,4.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,2.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,3.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2007,91,1.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2007,91,1.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,84.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,4.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,1.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,11.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2007,91,48.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2007,91,0.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2007,91,2.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2007,91,6.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2007,91,1.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2007,91,14.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2007,91,27.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2007,91,13.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2007,91,2.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2007,91,1.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2007,91,6.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2007,91,127.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2007,91,28.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2007,91,8.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2007,91,74.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2007,91,9.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2007,91,21.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2007,91,3.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2007,91,30.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2007,91,3.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,1.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,4.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,21.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,258.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2007,91,3.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2007,91,1.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2007,91,0.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2007,91,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2007,91,6.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2007,91,4.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2007,91,10.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2007,91,1.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,2.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,13.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2007,91,9.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,0.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,9.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2007,91,0.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,3.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,8.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2007,91,28.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,0.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2007,91,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2007,91,5.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2007,91,5.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,6.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,7.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,0.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,0.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,10.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2007,91,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,0.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,3.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,5.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2007,91,0.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,0.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2007,91,4.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,20.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,9.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,0.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,63.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,1.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,1.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,3.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,20.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,2.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,2.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,2.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2007,91,2.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,3.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2007,91,5.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,1.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,3.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,1.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,13.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,2.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,29.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2007,91,10.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2007,91,18.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2007,91,37.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,4.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,43.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,2.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,13.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2007,91,3.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2007,91,118.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,198.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2007,91,7.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,23.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2007,91,20.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,8.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,184.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,22.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2007,91,5.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2007,91,13.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2007,91,4.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2007,91,1.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,16.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,95.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2007,91,19.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2007,91,3.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2007,91,22.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2007,91,5.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2007,91,3.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,4.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2007,91,11.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2007,91,1494.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,5.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,8.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2007,91,27.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,124.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,2.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,0.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,3.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2007,91,5.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2007,91,4.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2007,91,4.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2007,91,4.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2007,91,14.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2007,91,56.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2007,91,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,1.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,5.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,11.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,2.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2007,91,18.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2007,91,3.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2007,91,1.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2007,91,1.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2007,91,18.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2007,91,0.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2007,91,8.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2007,91,14.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,74.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2007,91,3.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2007,91,2.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2007,91,10.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,109.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,0.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,2.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2007,91,8.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,6.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,33.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,7.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,0.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2007,91,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,0.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,8.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,3.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,3.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,22.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2007,91,1.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,83.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,3.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2007,91,5.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,22.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,0.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,16.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,13.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,82.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2007,91,6.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2007,91,56.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,10.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,7.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,5.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,2.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,1.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,6.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,8.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,7.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,11.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,5.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,1.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,1.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,3.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,6.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,1.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,3.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2007,91,0.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2007,91,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,1.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,1.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,1.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2007,91,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2007,91,1.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2007,91,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2007,91,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2007,91,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2007,91,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2007,91,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2007,91,0.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,1.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2007,91,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,2.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2007,91,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2007,91,4.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2007,91,0.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2007,91,5.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2007,91,27.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2007,91,0.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2007,91,8.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2007,91,5.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2007,91,0.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2007,91,3.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2007,91,17.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2007,91,4.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2007,91,15.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2007,91,26.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2007,91,12.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2007,91,42.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2007,91,5.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,17.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2007,91,122.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,6.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2007,91,2.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,1.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,22.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2007,91,44.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,2.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2007,91,3.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2007,91,0.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,0.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,25.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2007,91,1.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,6.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,0.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,10.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2007,91,0.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2007,91,1.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2007,91,0.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2007,91,2.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2007,91,3.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2007,91,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2007,91,3.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2007,91,4.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2007,91,0.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2007,91,2.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2007,91,347.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2007,91,0.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2007,91,15.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2007,91,25.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2007,91,0.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2007,91,10.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2007,91,0.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2007,91,2.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2007,91,10.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2007,91,78.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2007,92,4.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2007,92,0.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2007,92,2.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2007,92,4.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2007,92,0.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2007,92,12.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2007,92,33.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2007,92,5.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2007,92,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2007,92,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2007,92,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2007,92,2.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2007,92,1.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2007,92,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2007,92,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2007,92,1.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2007,92,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2007,92,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2007,92,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2007,92,91.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2007,92,4.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2007,92,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2007,92,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2007,92,0.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2007,92,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2007,92,0.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2007,92,72.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2007,92,6.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2007,92,1.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2007,92,3.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2007,92,0.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2007,92,3.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2007,92,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2007,92,23.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2007,92,1.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2007,92,7.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2007,92,89.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2007,92,6.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2007,92,36.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2007,92,36.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2007,92,27.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2007,92,9.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2007,92,7.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2007,92,44.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2007,92,2.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2007,92,18.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2007,92,23.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2007,92,26.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2007,92,37.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2007,92,26.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2007,92,50.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2007,92,7.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2007,92,15.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2007,92,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2007,92,49.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2007,92,1.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2007,92,90.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2007,92,23.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2007,92,17.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2007,92,13.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2007,92,12.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2007,92,16.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2007,92,5.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2007,92,2.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2007,92,30.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2007,92,212.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2007,92,5.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2007,92,9.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2007,92,3.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2007,92,2.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2007,92,5.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2007,92,7.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2007,92,8.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2007,92,1.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2007,92,4.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2007,92,1.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2007,92,14.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2007,92,3.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2007,92,0.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2007,92,0.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2007,92,23.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2007,92,8.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2007,92,2.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2007,92,0.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2007,92,0.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2007,92,17.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2007,92,33.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2007,92,148.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2007,92,55.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2007,92,6.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2007,92,2.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2007,92,2.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2007,92,1.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2007,92,3.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2007,92,0.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2007,92,1.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2007,92,1.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2007,92,7.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2007,92,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2007,92,8.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2007,92,48.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2007,92,9.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2007,92,3.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2007,92,1.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2007,92,110.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2007,92,5.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2007,92,22.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2007,92,34.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2007,92,2.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2007,92,10.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2007,92,30.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2007,92,30.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2007,92,8.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2007,92,0.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2007,92,5.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2007,92,1009.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2007,92,12.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2007,92,73.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2007,92,75.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2007,92,202.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2007,92,3.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2007,92,6.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2007,92,173.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2007,92,44.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2007,92,20.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2007,92,133.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2007,92,34.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2007,92,15.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2007,92,7.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2007,92,1.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2007,92,8.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2007,92,21.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2007,92,7.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,26.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,0.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,2.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,2.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2007,92,22.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2007,92,29.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2007,92,3.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,34.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,8.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,1.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,15.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,18.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,20.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2007,92,40.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2007,92,12.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2007,92,15.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2007,92,52.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2007,92,870.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2007,92,6.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2007,92,126.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2007,92,35.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2007,92,26.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2007,92,24.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2007,92,10.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2007,92,3.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2007,92,13.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2007,92,8.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2007,92,0.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2007,92,23.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2007,92,9.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2007,92,13.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2007,92,10.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2007,92,2.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2007,92,5.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2007,92,7.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2007,92,44.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2007,92,0.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2007,92,2.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2007,92,14.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2007,92,5.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2007,92,290.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2007,92,1.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2007,92,1.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2007,92,9.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2007,92,13.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2007,92,2.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2007,92,11.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2007,92,7.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2007,92,1.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2007,92,120.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2007,92,20.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2007,92,13.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2007,92,9.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2007,92,31.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2007,92,47.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2007,92,11.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2007,92,44.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2007,92,5.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2007,92,251.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2007,92,60.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2007,92,2.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2007,92,1.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2007,92,30.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2007,92,19.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2007,92,20.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2007,92,95.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2007,92,147.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2007,92,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2007,92,74.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2007,92,60.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2007,92,3.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2007,92,802.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2007,92,45.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2007,92,133.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2007,92,17.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2007,92,0.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,3.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,5.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2007,92,0.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2007,92,1.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,16.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,3.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,3.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,6.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2007,92,77.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2007,92,2.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2007,92,2.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2007,92,2.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2007,92,0.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2007,92,1.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2007,92,50.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2007,92,9.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2007,92,0.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2007,92,0.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2007,92,5.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2007,92,56.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2007,92,9.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2007,92,12.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2007,92,64.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2007,92,7.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2007,92,15.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2007,92,7.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2007,92,24.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2007,92,1.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,0.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,3.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,10.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,120.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2007,92,0.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2007,92,1.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2007,92,2.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2007,92,1.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2007,92,22.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2007,92,1.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2007,92,12.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2007,92,2.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,1.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,4.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2007,92,11.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,1.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,3.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2007,92,1.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,0.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,0.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2007,92,9.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,0.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2007,92,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2007,92,2.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2007,92,1.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,4.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,1.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,6.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2007,92,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,0.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,1.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,2.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2007,92,0.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,1.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2007,92,2.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,9.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,6.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,1.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,20.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,2.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,6.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,7.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,2.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,0.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,0.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2007,92,1.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,1.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2007,92,2.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,1.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,0.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,1.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,1.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,11.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2007,92,2.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2007,92,3.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2007,92,6.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,2.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,21.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,10.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,3.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,3.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2007,92,2.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2007,92,52.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,38.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2007,92,6.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,6.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2007,92,5.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,2.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,54.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2007,92,1.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2007,92,3.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2007,92,1.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,8.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,21.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2007,92,8.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2007,92,2.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2007,92,1.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,9.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2007,92,4.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2007,92,778.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,4.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2007,92,13.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,78.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2007,92,1.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2007,92,0.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2007,92,1.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2007,92,3.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2007,92,2.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2007,92,13.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2007,92,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,8.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,4.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2007,92,3.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2007,92,1.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2007,92,0.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2007,92,0.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2007,92,6.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2007,92,1.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2007,92,0.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2007,92,2.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,2.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2007,92,0.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2007,92,0.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2007,92,2.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,51.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,1.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,0.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2007,92,4.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,7.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,2.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2007,92,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,10.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,2.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,2.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,8.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2007,92,3.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,7.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2007,92,0.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,13.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,1.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,8.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,5.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,38.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2007,92,0.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2007,92,14.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,2.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,2.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,2.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,6.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,1.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,8.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,3.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,1.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,1.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,1.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,1.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,2.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,1.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,2.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2007,92,0.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2007,92,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2007,92,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,1.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2007,92,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2007,92,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2007,92,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2007,92,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2007,92,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2007,92,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2007,92,0.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,1.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2007,92,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,1.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2007,92,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2007,92,1.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2007,92,0.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2007,92,2.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2007,92,17.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2007,92,0.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2007,92,1.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2007,92,2.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2007,92,0.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2007,92,2.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2007,92,4.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2007,92,1.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2007,92,18.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2007,92,24.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2007,92,5.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2007,92,42.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2007,92,3.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,4.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2007,92,59.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,3.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2007,92,2.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,2.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,7.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2007,92,19.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,1.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2007,92,4.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2007,92,1.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,0.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,12.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2007,92,0.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,4.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,0.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,4.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2007,92,0.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2007,92,0.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2007,92,1.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2007,92,1.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2007,92,15.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2007,92,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2007,92,1.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2007,92,5.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2007,92,0.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2007,92,1.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2007,92,239.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2007,92,0.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2007,92,5.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2007,92,11.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2007,92,1.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2007,92,2.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2007,92,0.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2007,92,0.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2007,92,8.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2007,92,36.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2007,93,3.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2007,93,0.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2007,93,2.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2007,93,1.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2007,93,2.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2007,93,30.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2007,93,67.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2007,93,4.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2007,93,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2007,93,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2007,93,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2007,93,1.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2007,93,1.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2007,93,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2007,93,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2007,93,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2007,93,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2007,93,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2007,93,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2007,93,118.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2007,93,2.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2007,93,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2007,93,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2007,93,1.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2007,93,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2007,93,0.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2007,93,53.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2007,93,3.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2007,93,0.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2007,93,14.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2007,93,3.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2007,93,0.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2007,93,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2007,93,11.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2007,93,1.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2007,93,2.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2007,93,176.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2007,93,11.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2007,93,18.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2007,93,31.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2007,93,46.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2007,93,6.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2007,93,17.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2007,93,43.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2007,93,1.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2007,93,31.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2007,93,25.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2007,93,21.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2007,93,19.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2007,93,21.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2007,93,76.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2007,93,2.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2007,93,4.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2007,93,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2007,93,72.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2007,93,0.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2007,93,61.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2007,93,22.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2007,93,15.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2007,93,56.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2007,93,5.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2007,93,13.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2007,93,7.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2007,93,2.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2007,93,2.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2007,93,114.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2007,93,2.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2007,93,11.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2007,93,2.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2007,93,4.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2007,93,2.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2007,93,4.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2007,93,16.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2007,93,2.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2007,93,2.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2007,93,2.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2007,93,3.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2007,93,2.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2007,93,2.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2007,93,0.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2007,93,9.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2007,93,7.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2007,93,6.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2007,93,1.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2007,93,1.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2007,93,5.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2007,93,5.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2007,93,47.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2007,93,51.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2007,93,1.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2007,93,0.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2007,93,1.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2007,93,0.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2007,93,2.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2007,93,1.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2007,93,4.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2007,93,1.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2007,93,1.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2007,93,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2007,93,24.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2007,93,12.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2007,93,3.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2007,93,3.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2007,93,0.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2007,93,34.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2007,93,5.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2007,93,14.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2007,93,23.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2007,93,4.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2007,93,22.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2007,93,14.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2007,93,23.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2007,93,8.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2007,93,0.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2007,93,11.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2007,93,525.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2007,93,4.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2007,93,51.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2007,93,125.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2007,93,88.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2007,93,2.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2007,93,5.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2007,93,123.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2007,93,58.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2007,93,60.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2007,93,54.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2007,93,12.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2007,93,3.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2007,93,2.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2007,93,0.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2007,93,15.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2007,93,14.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2007,93,2.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,38.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,1.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,2.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,2.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2007,93,49.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2007,93,19.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2007,93,3.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,58.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,26.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,2.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,0.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,9.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,7.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2007,93,26.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2007,93,7.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2007,93,5.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2007,93,73.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2007,93,501.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2007,93,3.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2007,93,73.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2007,93,42.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2007,93,4.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2007,93,5.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2007,93,11.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2007,93,3.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2007,93,2.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2007,93,4.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2007,93,1.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2007,93,16.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2007,93,0.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2007,93,1.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2007,93,7.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2007,93,8.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2007,93,10.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2007,93,9.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2007,93,17.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2007,93,1.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2007,93,2.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2007,93,9.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2007,93,11.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2007,93,92.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2007,93,3.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2007,93,9.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2007,93,1.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2007,93,5.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2007,93,5.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2007,93,3.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2007,93,3.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2007,93,2.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2007,93,58.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2007,93,8.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2007,93,19.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2007,93,9.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2007,93,5.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2007,93,36.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2007,93,8.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2007,93,11.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2007,93,4.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2007,93,150.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2007,93,24.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2007,93,0.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2007,93,0.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2007,93,15.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2007,93,15.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2007,93,10.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2007,93,38.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2007,93,62.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2007,93,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2007,93,20.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2007,93,34.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2007,93,6.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2007,93,432.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2007,93,37.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2007,93,44.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2007,93,9.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2007,93,3.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,1.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,2.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2007,93,1.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2007,93,0.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,16.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,2.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,2.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,15.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2007,93,50.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2007,93,3.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2007,93,0.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2007,93,3.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2007,93,0.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2007,93,0.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2007,93,21.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2007,93,6.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2007,93,0.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2007,93,0.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2007,93,8.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2007,93,20.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2007,93,5.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2007,93,5.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2007,93,31.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2007,93,3.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2007,93,17.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2007,93,7.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2007,93,16.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2007,93,1.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,0.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,0.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,5.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,73.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2007,93,1.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2007,93,0.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2007,93,2.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2007,93,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2007,93,26.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2007,93,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2007,93,8.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2007,93,2.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,3.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,11.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2007,93,7.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,1.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,1.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2007,93,0.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,1.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,0.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2007,93,5.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,0.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2007,93,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2007,93,0.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2007,93,0.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,3.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,1.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,7.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2007,93,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,0.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,0.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,1.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2007,93,2.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,0.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2007,93,1.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,40.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,2.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,11.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,2.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,6.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,2.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,2.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,0.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,2.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2007,93,1.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2007,93,0.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,2.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,1.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,3.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,1.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,2.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,8.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2007,93,2.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2007,93,4.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2007,93,7.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,7.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,8.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2007,93,1.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2007,93,2.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2007,93,40.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,38.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2007,93,6.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,3.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,3.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,29.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2007,93,2.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2007,93,1.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2007,93,0.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2007,93,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,3.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,7.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2007,93,6.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2007,93,4.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2007,93,4.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2007,93,1.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,3.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2007,93,7.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2007,93,588.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,3.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2007,93,15.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,85.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,2.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,5.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,0.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2007,93,0.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2007,93,2.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2007,93,3.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2007,93,1.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2007,93,6.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2007,93,14.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2007,93,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,2.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,9.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2007,93,4.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2007,93,2.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2007,93,1.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2007,93,1.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2007,93,9.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2007,93,3.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2007,93,2.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2007,93,4.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,2.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2007,93,1.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2007,93,1.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2007,93,2.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,96.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,1.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,1.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,2.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2007,93,5.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,0.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,3.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,0.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,1.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2007,93,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,0.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,0.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,25.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,12.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,3.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,12.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2007,93,0.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,6.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,0.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2007,93,1.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,11.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,2.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,6.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,2.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,56.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2007,93,0.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2007,93,6.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,2.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,1.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,4.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,2.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,6.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,1.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,17.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,1.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,7.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,2.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,1.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,1.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,2.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,1.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,2.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,1.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2007,93,0.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2007,93,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,1.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2007,93,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,1.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2007,93,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2007,93,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2007,93,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2007,93,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2007,93,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2007,93,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2007,93,0.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2007,93,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,2.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2007,93,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2007,93,0.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2007,93,0.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2007,93,5.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2007,93,6.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2007,93,0.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2007,93,1.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2007,93,1.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2007,93,0.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2007,93,2.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2007,93,3.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2007,93,0.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2007,93,11.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2007,93,23.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2007,93,2.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2007,93,2.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2007,93,2.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,2.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2007,93,31.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,0.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2007,93,18.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,0.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,5.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2007,93,22.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,1.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2007,93,3.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2007,93,0.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,0.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,13.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2007,93,1.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,0.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,1.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,1.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2007,93,0.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2007,93,3.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2007,93,1.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2007,93,0.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2007,93,6.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2007,93,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2007,93,0.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2007,93,6.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2007,93,0.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2007,93,2.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2007,93,164.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2007,93,1.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2007,93,6.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2007,93,10.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2007,93,2.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2007,93,2.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2007,93,0.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2007,93,1.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2007,93,5.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2007,93,21.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2007,94,27.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2007,94,1.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2007,94,2.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2007,94,17.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2007,94,5.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2007,94,42.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2007,94,120.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2007,94,3.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2007,94,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2007,94,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2007,94,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2007,94,8.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2007,94,2.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2007,94,1.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2007,94,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2007,94,1.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2007,94,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2007,94,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2007,94,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2007,94,164.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2007,94,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2007,94,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2007,94,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2007,94,0.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2007,94,1.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2007,94,0.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2007,94,24.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2007,94,2.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2007,94,3.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2007,94,28.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2007,94,15.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2007,94,9.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2007,94,1.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2007,94,15.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2007,94,4.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2007,94,2.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2007,94,199.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2007,94,11.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2007,94,1.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2007,94,51.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2007,94,28.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2007,94,17.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2007,94,18.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2007,94,45.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2007,94,1.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2007,94,122.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2007,94,62.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2007,94,156.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2007,94,99.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2007,94,33.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2007,94,136.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2007,94,9.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2007,94,2.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2007,94,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2007,94,46.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2007,94,0.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2007,94,169.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2007,94,45.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2007,94,9.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2007,94,80.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2007,94,23.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2007,94,49.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2007,94,47.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2007,94,1.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2007,94,8.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2007,94,56.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2007,94,5.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2007,94,3.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2007,94,2.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2007,94,3.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2007,94,7.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2007,94,13.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2007,94,35.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2007,94,3.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2007,94,0.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2007,94,8.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2007,94,0.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2007,94,1.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2007,94,0.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2007,94,0.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2007,94,4.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2007,94,9.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2007,94,8.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2007,94,3.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2007,94,2.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2007,94,10.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2007,94,5.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2007,94,28.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2007,94,24.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2007,94,2.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2007,94,0.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2007,94,0.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2007,94,0.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2007,94,1.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2007,94,0.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2007,94,4.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2007,94,0.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2007,94,1.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2007,94,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2007,94,10.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2007,94,6.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2007,94,2.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2007,94,1.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2007,94,2.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2007,94,28.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2007,94,3.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2007,94,21.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2007,94,19.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2007,94,8.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2007,94,21.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2007,94,7.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2007,94,25.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2007,94,21.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2007,94,3.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2007,94,6.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2007,94,492.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2007,94,3.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2007,94,60.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2007,94,187.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2007,94,210.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2007,94,0.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2007,94,1.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2007,94,76.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2007,94,18.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2007,94,2.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2007,94,29.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2007,94,25.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2007,94,2.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2007,94,1.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2007,94,3.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2007,94,7.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2007,94,3.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2007,94,1.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,49.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,2.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,0.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,11.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2007,94,67.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2007,94,77.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2007,94,2.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,27.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,35.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,1.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,13.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,46.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,3.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2007,94,18.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2007,94,7.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2007,94,7.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2007,94,57.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2007,94,406.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2007,94,2.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2007,94,105.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2007,94,60.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2007,94,13.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2007,94,15.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2007,94,4.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2007,94,13.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2007,94,1.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2007,94,6.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2007,94,0.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2007,94,9.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2007,94,1.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2007,94,1.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2007,94,6.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2007,94,4.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2007,94,3.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2007,94,6.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2007,94,11.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2007,94,1.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2007,94,0.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2007,94,6.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2007,94,11.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2007,94,63.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2007,94,0.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2007,94,4.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2007,94,1.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2007,94,9.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2007,94,6.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2007,94,4.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2007,94,3.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2007,94,2.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2007,94,77.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2007,94,13.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2007,94,25.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2007,94,3.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2007,94,18.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2007,94,21.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2007,94,5.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2007,94,18.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2007,94,2.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2007,94,149.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2007,94,26.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2007,94,0.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2007,94,3.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2007,94,5.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2007,94,21.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2007,94,17.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2007,94,33.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2007,94,38.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2007,94,2.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2007,94,7.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2007,94,40.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2007,94,2.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2007,94,402.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2007,94,15.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2007,94,24.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2007,94,6.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2007,94,0.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,2.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,1.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2007,94,3.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2007,94,1.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,4.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,0.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,1.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,12.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2007,94,35.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2007,94,2.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2007,94,1.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2007,94,1.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2007,94,1.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2007,94,0.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2007,94,72.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2007,94,10.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2007,94,1.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2007,94,1.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2007,94,8.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2007,94,39.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2007,94,13.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2007,94,8.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2007,94,30.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2007,94,0.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2007,94,26.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2007,94,2.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2007,94,21.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2007,94,1.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,1.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,4.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,6.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,56.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2007,94,2.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2007,94,7.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2007,94,11.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2007,94,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2007,94,19.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2007,94,1.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2007,94,26.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2007,94,0.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,17.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,10.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2007,94,11.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,1.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,1.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,2.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2007,94,2.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,1.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,1.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2007,94,32.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,2.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2007,94,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,7.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2007,94,5.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2007,94,43.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,9.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,2.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,0.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,1.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,10.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2007,94,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,1.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,1.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,4.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2007,94,3.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,1.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2007,94,0.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,30.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,1.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,1.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,28.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,0.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,3.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,7.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,2.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,11.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,12.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,3.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,1.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,0.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2007,94,3.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2007,94,1.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,1.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,1.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,3.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,2.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,2.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,0.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,5.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2007,94,4.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2007,94,7.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2007,94,9.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,1.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,10.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,2.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,1.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,2.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,0.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2007,94,1.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2007,94,42.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,31.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2007,94,3.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,5.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2007,94,0.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,5.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,0.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,31.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,3.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2007,94,2.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2007,94,0.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2007,94,0.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2007,94,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,2.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,8.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2007,94,20.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2007,94,1.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2007,94,6.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2007,94,4.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,12.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2007,94,8.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2007,94,919.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,2.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,4.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2007,94,17.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,56.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,1.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,1.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,15.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,1.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2007,94,2.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2007,94,3.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2007,94,6.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2007,94,5.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2007,94,2.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2007,94,17.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2007,94,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,3.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,7.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,3.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,12.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2007,94,7.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2007,94,4.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2007,94,0.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2007,94,2.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2007,94,7.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2007,94,2.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2007,94,7.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2007,94,8.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,12.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2007,94,4.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2007,94,1.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2007,94,11.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,142.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,1.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,1.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,5.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2007,94,10.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,1.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,0.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,5.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,1.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2007,94,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,2.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,5.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,1.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,25.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,5.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,5.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,17.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2007,94,1.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,9.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,0.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2007,94,3.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,11.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,1.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,18.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,15.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,70.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2007,94,3.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2007,94,20.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,1.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,2.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,1.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,7.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,5.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,13.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,17.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,7.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,1.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,1.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,4.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,3.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,7.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2007,94,1.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2007,94,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,1.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,1.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,2.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,3.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,1.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2007,94,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2007,94,1.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,1.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2007,94,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,1.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2007,94,1.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2007,94,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2007,94,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2007,94,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2007,94,0.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2007,94,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2007,94,0.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2007,94,0.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2007,94,5.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2007,94,4.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2007,94,13.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2007,94,0.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2007,94,1.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2007,94,7.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2007,94,2.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2007,94,6.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2007,94,30.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2007,94,4.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2007,94,17.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2007,94,73.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2007,94,8.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2007,94,15.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2007,94,3.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,6.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2007,94,34.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,0.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2007,94,29.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,1.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,13.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2007,94,32.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,10.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2007,94,10.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2007,94,1.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,3.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,32.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2007,94,0.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,1.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,1.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,4.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2007,94,0.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2007,94,3.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2007,94,0.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2007,94,2.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2007,94,21.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2007,94,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2007,94,13.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2007,94,19.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2007,94,1.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2007,94,2.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2007,94,358.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2007,94,0.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2007,94,11.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2007,94,12.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2007,94,1.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2007,94,11.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2007,94,1.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2007,94,3.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2007,94,5.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2007,94,66.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2007,95,47.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2007,95,6.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2007,95,2.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2007,95,38.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2007,95,7.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2007,95,161.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2007,95,202.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2007,95,15.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2007,95,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2007,95,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2007,95,0.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2007,95,53.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2007,95,7.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2007,95,1.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2007,95,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2007,95,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2007,95,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2007,95,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2007,95,0.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2007,95,325.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2007,95,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2007,95,2.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2007,95,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2007,95,0.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2007,95,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2007,95,0.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2007,95,29.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2007,95,1.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2007,95,6.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2007,95,44.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2007,95,24.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2007,95,10.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2007,95,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2007,95,6.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2007,95,2.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2007,95,5.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2007,95,161.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2007,95,8.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2007,95,10.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2007,95,63.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2007,95,44.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2007,95,49.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2007,95,16.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2007,95,179.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2007,95,3.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2007,95,50.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2007,95,40.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2007,95,385.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2007,95,205.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2007,95,89.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2007,95,261.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2007,95,32.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2007,95,5.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2007,95,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2007,95,48.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2007,95,2.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2007,95,273.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2007,95,73.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2007,95,27.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2007,95,62.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2007,95,86.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2007,95,100.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2007,95,68.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2007,95,4.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2007,95,12.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2007,95,59.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2007,95,1.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2007,95,2.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2007,95,2.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2007,95,4.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2007,95,13.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2007,95,15.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2007,95,23.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2007,95,2.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2007,95,0.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2007,95,3.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2007,95,1.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2007,95,2.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2007,95,5.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2007,95,0.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2007,95,8.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2007,95,7.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2007,95,10.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2007,95,6.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2007,95,3.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2007,95,6.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2007,95,4.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2007,95,40.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2007,95,7.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2007,95,3.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2007,95,0.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2007,95,0.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2007,95,0.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2007,95,1.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2007,95,2.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2007,95,5.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2007,95,1.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2007,95,2.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2007,95,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2007,95,0.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2007,95,5.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2007,95,6.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2007,95,1.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2007,95,14.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2007,95,37.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2007,95,5.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2007,95,13.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2007,95,25.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2007,95,11.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2007,95,10.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2007,95,18.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2007,95,59.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2007,95,21.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2007,95,3.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2007,95,9.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2007,95,498.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2007,95,2.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2007,95,35.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2007,95,120.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2007,95,95.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2007,95,5.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2007,95,1.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2007,95,12.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2007,95,9.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2007,95,5.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2007,95,25.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2007,95,5.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2007,95,1.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2007,95,0.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2007,95,0.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2007,95,3.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2007,95,2.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2007,95,0.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,32.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,0.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,0.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,24.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2007,95,52.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2007,95,24.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2007,95,2.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,24.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,30.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,7.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,3.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,35.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,2.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2007,95,18.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2007,95,3.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2007,95,6.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2007,95,47.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2007,95,375.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2007,95,2.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2007,95,108.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2007,95,71.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2007,95,27.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2007,95,7.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2007,95,6.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2007,95,1.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2007,95,12.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2007,95,13.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2007,95,0.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2007,95,11.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2007,95,1.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2007,95,2.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2007,95,1.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2007,95,5.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2007,95,3.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2007,95,0.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2007,95,3.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2007,95,2.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2007,95,0.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2007,95,9.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2007,95,4.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2007,95,38.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2007,95,2.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2007,95,2.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2007,95,5.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2007,95,16.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2007,95,3.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2007,95,4.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2007,95,1.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2007,95,0.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2007,95,64.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2007,95,9.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2007,95,7.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2007,95,13.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2007,95,10.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2007,95,12.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2007,95,5.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2007,95,29.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2007,95,4.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2007,95,128.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2007,95,25.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2007,95,0.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2007,95,0.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2007,95,12.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2007,95,14.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2007,95,17.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2007,95,17.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2007,95,24.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2007,95,1.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2007,95,4.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2007,95,44.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2007,95,0.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2007,95,361.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2007,95,18.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2007,95,31.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2007,95,4.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2007,95,1.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,1.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,3.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2007,95,3.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2007,95,0.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,2.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,2.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,1.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,17.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2007,95,59.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2007,95,1.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2007,95,0.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2007,95,1.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2007,95,0.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2007,95,0.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2007,95,107.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2007,95,6.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2007,95,1.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2007,95,0.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2007,95,20.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2007,95,91.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2007,95,27.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2007,95,3.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2007,95,37.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2007,95,2.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2007,95,9.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2007,95,7.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2007,95,60.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2007,95,0.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,0.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,1.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,8.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,62.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2007,95,5.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2007,95,2.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2007,95,15.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2007,95,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2007,95,64.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2007,95,2.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2007,95,29.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2007,95,4.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,1.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,17.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2007,95,9.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,1.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,8.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2007,95,3.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,0.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,34.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2007,95,39.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,1.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2007,95,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2007,95,2.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2007,95,39.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,8.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,1.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,0.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,7.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,23.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2007,95,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,2.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,5.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,7.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2007,95,2.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,0.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2007,95,0.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,26.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,1.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,1.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,0.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,37.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,1.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,3.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,1.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,7.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,16.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,4.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,22.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,16.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,3.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,0.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,3.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2007,95,4.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2007,95,0.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,1.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,1.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,3.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2007,95,1.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,1.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,4.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,0.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,4.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,3.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,1.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,2.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2007,95,9.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2007,95,5.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2007,95,3.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,1.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,14.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,0.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,0.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,0.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,1.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2007,95,0.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2007,95,1.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2007,95,74.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,40.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2007,95,4.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,7.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2007,95,0.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,16.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,5.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,52.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,10.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2007,95,3.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2007,95,0.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2007,95,2.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2007,95,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,6.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,23.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2007,95,26.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2007,95,2.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2007,95,6.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2007,95,2.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2007,95,8.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,6.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2007,95,7.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2007,95,2109.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,1.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,9.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2007,95,42.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,187.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,2.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,2.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,9.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,5.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2007,95,0.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2007,95,3.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2007,95,6.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2007,95,0.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2007,95,6.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2007,95,36.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2007,95,0.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,4.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,5.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,6.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,16.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2007,95,31.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2007,95,12.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2007,95,1.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2007,95,3.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2007,95,31.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2007,95,5.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2007,95,4.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2007,95,23.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,21.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2007,95,2.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2007,95,4.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2007,95,38.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,196.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,14.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,8.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,9.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2007,95,8.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,1.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,4.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,13.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,2.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2007,95,0.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,2.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,2.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,0.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,41.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,5.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,3.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,25.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2007,95,2.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,12.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,1.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2007,95,4.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,19.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,4.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,25.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,22.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,185.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2007,95,7.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2007,95,15.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,1.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,13.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,6.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,14.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,29.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,4.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,28.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,1.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,1.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,10.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,1.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,1.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,1.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,1.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,5.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,9.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,2.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,6.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2007,95,1.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2007,95,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,1.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,1.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,2.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,3.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,5.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,2.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2007,95,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2007,95,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2007,95,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,2.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2007,95,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2007,95,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2007,95,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2007,95,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2007,95,1.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,1.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2007,95,1.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,1.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2007,95,1.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2007,95,7.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2007,95,20.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2007,95,17.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2007,95,39.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2007,95,2.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2007,95,3.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2007,95,6.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2007,95,1.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2007,95,9.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2007,95,45.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2007,95,5.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2007,95,108.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2007,95,177.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2007,95,36.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2007,95,25.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2007,95,2.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,22.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2007,95,41.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,2.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2007,95,42.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,3.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,52.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2007,95,31.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,14.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2007,95,16.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2007,95,1.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,1.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,58.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2007,95,2.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,2.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,28.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,10.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2007,95,1.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2007,95,2.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2007,95,1.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2007,95,0.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2007,95,18.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2007,95,0.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2007,95,53.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2007,95,37.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2007,95,1.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2007,95,2.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2007,95,513.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2007,95,0.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2007,95,79.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2007,95,22.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2007,95,3.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2007,95,12.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2007,95,4.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2007,95,5.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2007,95,2.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2007,95,64.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2007,96,299.0,474532.0,7.23324696554614,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2007,96,7.0,68825.0,1.68869596976498,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2007,96,11.0,160456.0,6.58713702075561,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2007,96,45.0,286631.0,11.4330614814882,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2007,96,22.0,68034.0,4.25623697154373,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2007,96,311.0,221267.0,9.01228705767737,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2007,96,281.0,121668.0,4.55445146310269,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2007,96,9.0,52343.0,3.57215119219258,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2007,96,0.0,121392.0,3.80056803072965,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2007,96,0.0,69518.0,1.29943814497391,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2007,96,1.0,45326.0,1.11773818871747,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2007,96,55.0,366985.0,16.4857349547941,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2007,96,2.0,52164.0,3.28450355169898,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2007,96,0.0,95248.0,0.286637099391156,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2007,96,0.0,22788.0,0.313768939855246,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2007,96,0.0,212548.0,0.996649325674944,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2007,96,0.0,118974.0,1.05634617638416,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2007,96,0.0,85789.0,2.15024501657528,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2007,96,1.0,127589.0,1.13820706489755,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2007,96,294.0,1864944.0,45.1598069926134,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2007,96,0.0,49218.0,1.57908356344029,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2007,96,0.0,148396.0,5.83056280106124,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2007,96,0.0,230847.0,2.15740342011,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2007,96,0.0,48143.0,0.757600628228939,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2007,96,0.0,67825.0,0.362856602402723,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2007,96,3.0,149631.0,0.676988496528635,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2007,96,67.0,280465.0,4.13051941782061,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2007,96,6.0,35871.0,1.16713666364225,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2007,96,4.0,36390.0,0.490757312628903,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2007,96,4.0,42999.0,0.835683426819302,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2007,96,23.0,168312.0,1.06825906349575,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2007,96,11.0,457265.0,4.94526165869834,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2007,96,0.0,57392.0,0.635103883968657,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2007,96,5.0,106395.0,2.35846338506941,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2007,96,3.0,196471.0,6.53022554318743,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2007,96,3.0,135828.0,4.69665603776632,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2007,96,179.0,2128097.0,679.655129457464,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2007,96,22.0,260830.0,69.28644446391,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2007,96,12.0,237933.0,40.0820172603442,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2007,96,24.0,354282.0,40.2418371940039,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2007,96,39.0,395370.0,23.7153916137302,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2007,96,47.0,244528.0,10.3162993016028,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2007,96,23.0,390289.0,13.7872559378685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2007,96,182.0,244742.0,1.2906423142249,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2007,96,16.0,273506.0,1.20937174914253,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2007,96,179.0,295577.0,8.99818690045215,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2007,96,26.0,252769.0,5.22152354019872,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2007,96,149.0,120430.0,0.993357521529161,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2007,96,243.0,232036.0,10.3229141239676,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2007,96,160.0,243835.0,12.1394710297028,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2007,96,451.0,169195.0,8.00819948297041,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2007,96,167.0,125296.0,4.01591698469239,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2007,96,2.0,27837.0,0.754660448090678,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2007,96,0.0,23240.0,1.11933895533235,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2007,96,107.0,474116.0,12.2822141972404,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2007,96,0.0,62118.0,1.33282844785248,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2007,96,100.0,180500.0,11.44326799943,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2007,96,87.0,237169.0,8.96837714915479,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2007,96,126.0,137168.0,3.94473769347121,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2007,96,136.0,108820.0,2.11452671409778,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2007,96,87.0,130184.0,4.7479514584515,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2007,96,132.0,265375.0,12.5296904979311,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2007,96,26.0,67439.0,1.25983360295396,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2007,96,18.0,116972.0,2.47849723845958,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2007,96,1.0,183017.0,19.3963664245332,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2007,96,50.0,1211270.0,847.925293114452,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2007,96,16.0,159707.0,24.822835694855,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2007,96,2.0,154358.0,14.3147408267937,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2007,96,16.0,521859.0,30.3038646275047,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2007,96,42.0,179790.0,25.4968494287641,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2007,96,11.0,202063.0,9.36613079015599,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2007,96,34.0,582102.0,16.1728701635018,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2007,96,41.0,529961.0,18.1348227580315,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2007,96,15.0,387641.0,35.288795535874,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2007,96,6.0,287633.0,7.80749834968159,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2007,96,10.0,180238.0,27.5626955987062,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2007,96,1.0,128059.0,21.2270731369053,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2007,96,8.0,202636.0,18.7787666851626,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2007,96,3.0,248699.0,25.0295425796948,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2007,96,2.0,81711.0,22.6975945953875,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2007,96,9.0,389591.0,25.394100875252,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2007,96,8.0,201799.0,8.07353935795215,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2007,96,7.0,97157.0,6.83140282873481,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2007,96,4.0,124465.0,3.41059544844511,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2007,96,11.0,65239.0,3.84308983567497,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2007,96,6.0,322204.0,25.8451200982105,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2007,96,0.0,292082.0,30.0176011512407,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2007,96,44.0,952101.0,103.736391146164,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2007,96,19.0,220857.0,9.06831771635408,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2007,96,16.0,129388.0,15.5685138546528,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2007,96,0.0,102896.0,7.6602090756536,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2007,96,22.0,41825.0,1.64212984441406,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2007,96,0.0,40553.0,3.64881909415782,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2007,96,2.0,119810.0,6.49755136164438,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2007,96,9.0,83588.0,3.02643318674697,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2007,96,6.0,134659.0,4.89362736233716,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2007,96,9.0,83051.0,4.65614666607016,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2007,96,3.0,195663.0,18.9978727046105,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2007,96,0.0,56145.0,13.0188361821714,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2007,96,21.0,257613.0,8.16935512496362,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2007,96,6.0,345000.0,39.9165013704134,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2007,96,2.0,283224.0,55.9329573070037,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2007,96,0.0,54979.0,26.5388097900382,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2007,96,0.0,22418.0,83.0397792930171,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2007,96,23.0,362636.0,44.0011774114864,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2007,96,29.0,135267.0,32.0206960855173,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2007,96,8.0,72386.0,12.0606318821655,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2007,96,16.0,193414.0,52.1106065397942,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2007,96,7.0,99169.0,69.1849480195719,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2007,96,1.0,96189.0,91.6441130501407,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2007,96,6.0,81020.0,26.8173094817843,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2007,96,51.0,121117.0,22.8037941631099,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2007,96,21.0,179317.0,66.6528506886166,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2007,96,0.0,60073.0,46.3224013573246,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2007,96,0.0,127230.0,50.0432569038146,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2007,96,553.0,3273342.0,970.269623302565,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2007,96,1.0,103541.0,260.773546710716,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2007,96,17.0,239929.0,18.7185404227721,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2007,96,57.0,258633.0,21.6288884321236,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2007,96,43.0,141066.0,12.0379112269386,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2007,96,1.0,214414.0,21.9190689853926,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2007,96,1.0,105769.0,49.1209596736434,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2007,96,3.0,304184.0,30.6347630849388,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2007,96,0.0,62868.0,14.6519302500651,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2007,96,6.0,43009.0,20.9586020946931,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2007,96,11.0,217105.0,45.6634656533018,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2007,96,4.0,94774.0,26.7463893893875,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2007,96,1.0,54834.0,33.9043590129282,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2007,96,0.0,93851.0,21.120009950958,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2007,96,0.0,56917.0,44.1822923316403,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2007,96,1.0,86832.0,32.6215815884295,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2007,96,1.0,508563.0,111.631490362453,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2007,96,12.0,92180.0,47.5233329907839,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,47.0,304293.0,72.8422548997331,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,1.0,72425.0,17.6997611035671,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,1.0,38018.0,13.2926088253323,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,15.0,134757.0,28.1533365160576,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2007,96,48.0,62846.0,63.3789247811222,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2007,96,21.0,112259.0,42.2311956419453,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2007,96,5.0,64411.0,39.4792693889113,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,52.0,50931.0,26.7309797944356,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,18.0,50518.0,12.3877694404854,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,13.0,60163.0,19.9828167434552,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,3.0,95077.0,31.0108548252832,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,25.0,117125.0,31.0506607694499,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,10.0,58936.0,30.830227391249,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2007,96,12.0,130369.0,33.1835715414922,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2007,96,26.0,222232.0,63.4545988150654,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2007,96,2.0,80684.0,31.6476773329275,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2007,96,72.0,266046.0,128.22671009792,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2007,96,412.0,968773.0,2213.49655298574,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2007,96,12.0,123877.0,89.2684094779043,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2007,96,80.0,112040.0,36.7524698310863,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2007,96,65.0,164138.0,48.3941604086959,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2007,96,3.0,178132.0,37.074748526405,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2007,96,2.0,123168.0,48.3265800873961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2007,96,2.0,72526.0,22.0217890163646,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2007,96,1.0,83264.0,27.3287649424337,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2007,96,11.0,114064.0,43.9092656498328,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2007,96,20.0,38370.0,21.9226088954185,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2007,96,0.0,71057.0,27.2208858847228,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2007,96,26.0,119999.0,17.1934705028519,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2007,96,3.0,62050.0,14.7344288950129,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2007,96,6.0,114868.0,29.3974950479273,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2007,96,3.0,94193.0,71.2453603770628,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2007,96,3.0,51501.0,192.280135697777,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2007,96,3.0,115998.0,98.3165848151879,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2007,96,7.0,163168.0,126.485308833208,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2007,96,5.0,485409.0,230.409796872689,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2007,96,0.0,107954.0,63.9733669519836,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2007,96,0.0,53815.0,45.497310298565,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2007,96,5.0,137650.0,69.2564900331752,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2007,96,14.0,127340.0,113.731541273377,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2007,96,18.0,970703.0,777.690497491531,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2007,96,2.0,79990.0,92.3827077356323,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2007,96,19.0,297648.0,25.7923807253398,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2007,96,22.0,156467.0,17.8597038556023,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2007,96,4.0,309503.0,35.0656730386712,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2007,96,4.0,200474.0,22.7884213136546,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2007,96,2.0,412231.0,27.5380563187728,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2007,96,2.0,127925.0,13.4431241634792,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2007,96,2.0,169285.0,31.1712596490893,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2007,96,48.0,796562.0,101.309591219827,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2007,96,15.0,244000.0,135.922067110631,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2007,96,35.0,243797.0,139.295143200745,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2007,96,24.0,428988.0,83.7900230084652,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2007,96,13.0,217194.0,84.8399581091662,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2007,96,15.0,500998.0,170.527115350666,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2007,96,16.0,199639.0,212.699435800172,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2007,96,10.0,520808.0,115.078741142244,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2007,96,5.0,150693.0,279.812689294788,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2007,96,113.0,3274416.0,2617.29889516414,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2007,96,35.0,233209.0,241.47388596604,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2007,96,0.0,2801.0,215.557074596545,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2007,96,2.0,89554.0,34.0989149539013,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2007,96,7.0,78648.0,57.5949675635987,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2007,96,5.0,166185.0,54.227301013957,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2007,96,10.0,91456.0,50.6508252868889,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2007,96,1.0,174416.0,72.9278848432934,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2007,96,26.0,394290.0,162.548765314922,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2007,96,0.0,36548.0,39.0579014512742,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2007,96,7.0,146052.0,79.2611717645467,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2007,96,65.0,304094.0,77.1048983285314,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2007,96,7.0,64555.0,64.1357793018936,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2007,96,279.0,1096606.0,612.337786348319,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2007,96,21.0,273099.0,91.9267771292318,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2007,96,8.0,121728.0,71.1272456580844,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2007,96,0.0,147564.0,27.0972393890756,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2007,96,3.0,64111.0,34.3307115379491,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,0.0,61279.0,49.3849035414242,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,7.0,154416.0,136.487869402845,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2007,96,3.0,105493.0,52.3697857619652,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2007,96,0.0,107999.0,71.629391798032,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,5.0,90089.0,85.40919256212,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,5.0,43573.0,56.9107400967457,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,2.0,52467.0,36.6707036291279,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,20.0,83014.0,112.062397943196,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2007,96,75.0,759998.0,871.149353974563,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2007,96,2.0,149794.0,81.4791078084714,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2007,96,2.0,119629.0,59.1033172195767,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2007,96,4.0,259501.0,4.90971099566624,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2007,96,7.0,114387.0,5.05645728927249,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2007,96,8.0,179870.0,4.28375446880763,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2007,96,86.0,481464.0,8.79955185235595,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2007,96,1.0,158546.0,12.7249351545818,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2007,96,1.0,168630.0,5.17883464189725,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2007,96,1.0,169774.0,11.7593641368871,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2007,96,39.0,279651.0,16.8216394191713,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2007,96,120.0,373790.0,20.4975756106744,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2007,96,24.0,326074.0,17.3293384985174,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2007,96,1.0,250764.0,15.228821354662,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2007,96,23.0,993800.0,77.9750702841393,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2007,96,1.0,102243.0,12.7545660746072,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2007,96,9.0,296150.0,15.8448489511233,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2007,96,6.0,305155.0,35.2696638603317,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2007,96,55.0,405875.0,38.1160038734767,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2007,96,2.0,294583.0,51.2563152092662,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,0.0,110076.0,25.1520268613599,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,1.0,197451.0,71.8391502974088,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,2.0,525404.0,92.1589326865199,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,35.0,3599538.0,1245.31815724306,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2007,96,7.0,185546.0,11.5385293628052,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2007,96,2.0,253358.0,12.212461292303,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2007,96,10.0,515187.0,29.9495213537537,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2007,96,0.0,95282.0,18.5233398679792,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2007,96,44.0,367616.0,15.6823470128155,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2007,96,0.0,235514.0,15.3522047893287,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2007,96,43.0,621901.0,33.0535586627483,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2007,96,1.0,206252.0,18.2925936431138,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,1.0,246949.0,42.9235085806067,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,21.0,1081803.0,50.8943756396648,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2007,96,6.0,678536.0,24.4832152682194,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,0.0,142122.0,5.18575139367424,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,0.0,208367.0,5.95176026908679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,13.0,269999.0,8.1296054783476,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2007,96,5.0,243080.0,16.1646328672056,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,1.0,208739.0,11.7039563873816,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,71.0,159963.0,6.94848907199501,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2007,96,42.0,592000.0,26.4995480619703,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,0.0,42046.0,4.64012055090214,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,2.0,66040.0,8.34410200266024,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2007,96,0.0,82840.0,11.2125535544839,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,0.0,196894.0,16.3877960346206,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2007,96,2.0,154850.0,15.0782025891635,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2007,96,16.0,84313.0,16.6959589955255,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,3.0,175991.0,11.385886855044,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,9.0,258080.0,22.2135106336425,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,81.0,118587.0,13.98073742444,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,9.0,136376.0,15.6195687423648,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,4.0,818395.0,43.5601734651739,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2007,96,0.0,194138.0,16.2316513949614,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,0.0,245875.0,22.9273370670702,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,4.0,172124.0,10.1934702862452,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,9.0,333696.0,35.7604061517185,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2007,96,1.0,191527.0,13.6129917353302,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,0.0,93984.0,8.88084364408775,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2007,96,1.0,145426.0,10.6107282447476,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,59.0,158065.0,21.1078386368015,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,2.0,394264.0,46.1503752613503,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,0.0,86896.0,12.74524174116,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,0.0,117214.0,66.2088594996795,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,54.0,4831805.0,829.024048898515,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,1.0,370378.0,45.9866808375854,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,59767.0,24.7225800829608,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,164204.0,52.0977047324945,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,2.0,235045.0,79.311206494807,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,0.0,129450.0,22.4736182968035,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,0.0,83919.0,18.313439622006,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,41.0,412088.0,36.4126001386185,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,2.0,61951.0,33.4913535770374,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,17.0,511551.0,117.563797629633,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,5.0,246021.0,44.4187778516855,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,132.0,146412.0,17.5677003820158,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,0.0,78699.0,10.2283472477356,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,2.0,456384.0,89.880835451591,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2007,96,13.0,149047.0,32.6398523833057,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,111210.0,41.2897517651566,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,123058.0,30.6809889345687,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2007,96,1.0,218814.0,30.8497665145405,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,254801.0,49.262546839994,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,218752.0,43.7518843466116,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,3.0,426551.0,56.3009281535932,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,326809.0,70.5473941840963,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,304788.0,61.9764631892437,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,134568.0,41.0778573297524,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,204532.0,53.1848985703118,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,72579.0,14.4030551698298,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,0.0,183900.0,61.67458596979,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,1.0,143686.0,41.5637825173626,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,1.0,177648.0,30.8563021510701,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,1.0,216618.0,64.5433895009084,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,0.0,187901.0,38.6248083389514,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,1.0,257467.0,53.2220298802122,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,0.0,221406.0,45.8889133878672,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,4.0,266786.0,56.3348686910766,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2007,96,1.0,257757.0,71.6369312948055,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2007,96,5.0,724280.0,81.0762839635056,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2007,96,8.0,211010.0,54.0317748817157,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,0.0,86320.0,21.3587425603322,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,21.0,117802.0,32.1175158008875,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,4.0,187893.0,43.2885341999702,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,0.0,53247.0,18.0576262546995,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,1.0,167773.0,36.2486776518014,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,4.0,276300.0,39.7595533720198,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2007,96,2.0,126334.0,32.9420100463598,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,99262.0,30.2144343049025,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2007,96,94.0,1511555.0,1059.28118509237,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,29.0,170371.0,80.9838831175864,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2007,96,3.0,149918.0,43.3685989845552,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,12.0,332533.0,80.8067560699768,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2007,96,0.0,72361.0,57.0898720292389,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,40.0,188571.0,60.1336134065755,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,45.0,118462.0,52.8533683660695,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,124.0,549275.0,76.6870031305406,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,4.0,217045.0,84.0615468280132,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2007,96,1.0,148294.0,89.5561032334689,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2007,96,4.0,60719.0,47.9412741328386,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2007,96,1.0,227002.0,109.063130394469,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2007,96,0.0,28731.0,15.8428165665669,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,3.0,123198.0,75.1039320648893,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,20.0,468064.0,238.673494902817,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2007,96,22.0,669505.0,175.547438744191,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2007,96,3.0,175324.0,74.0434318305897,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2007,96,15.0,181314.0,108.43245304286,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2007,96,17.0,154421.0,98.4637301907471,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2007,96,2.0,476352.0,266.867447744931,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,5.0,104979.0,74.0379798044609,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2007,96,6.0,197075.0,224.370789140897,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2007,96,3393.0,11332119.0,2488.68619835584,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,8.0,146314.0,37.1462373631066,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,17.0,100033.0,35.5535344393587,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2007,96,29.0,128824.0,40.1602091450024,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,197.0,736176.0,70.6341076416237,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,9.0,213323.0,94.1138240583603,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,1.0,45111.0,19.6501723333108,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,7.0,61303.0,30.5128881775799,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,2.0,74654.0,30.8352676084636,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2007,96,4.0,131050.0,48.2479672209225,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2007,96,8.0,197380.0,35.5971325949746,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2007,96,5.0,92903.0,46.0801723235194,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2007,96,0.0,384329.0,111.547287893937,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2007,96,30.0,395973.0,83.449361804391,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2007,96,16.0,943089.0,157.012424894247,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2007,96,2.0,101792.0,33.0806297632955,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,99.0,174436.0,25.3859480302092,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,20.0,248587.0,46.2955333996187,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,64.0,246144.0,54.6680080783183,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,26.0,155230.0,40.0968133454139,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2007,96,19.0,559083.0,65.8604631465169,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2007,96,2.0,335882.0,83.1713340495868,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2007,96,0.0,169306.0,28.6889918348537,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2007,96,1.0,197245.0,45.2624604775405,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2007,96,36.0,475618.0,75.7075874365728,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2007,96,2.0,294829.0,92.9640977764868,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2007,96,4.0,238323.0,80.912852550397,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2007,96,12.0,549432.0,236.320912239577,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,49.0,534317.0,141.383223452156,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2007,96,1.0,177186.0,100.472531680928,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2007,96,1.0,399186.0,73.555073978744,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2007,96,29.0,365428.0,156.39410090985,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,217.0,2484555.0,799.146174995967,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,3.0,166576.0,104.098314129681,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,5.0,112401.0,39.2039092722738,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,3.0,155286.0,42.3100294827209,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2007,96,15.0,561137.0,32.0777630192473,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,2.0,108379.0,47.1122427560022,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,8.0,328328.0,67.1892489855109,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,4.0,259453.0,36.3363055972515,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,0.0,279791.0,50.2726457979271,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2007,96,4.0,237641.0,30.8909268178532,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,1.0,182565.0,48.9924214901077,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,1.0,236728.0,106.055292936465,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,136535.0,20.7308725992421,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,3.0,178056.0,42.9761973043296,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,13.0,1238435.0,291.803405186092,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,7.0,579725.0,720.88381134025,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,6.0,456011.0,145.293582291387,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,65757.0,64.6673436324744,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,31.0,1343770.0,334.460947921481,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2007,96,0.0,393705.0,145.622026208221,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,26171.0,12.4895344253335,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,71025.0,16.0669606943164,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,19.0,255057.0,133.839115857942,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,1.0,242517.0,21.7380003943592,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2007,96,2.0,200465.0,98.3316789374973,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,32.0,1803585.0,2658.56170635143,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,0.0,421002.0,705.949126103709,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,22.0,1353722.0,1741.42898430584,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,24.0,921250.0,627.711109172167,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,131.0,13416394.0,5685.32808691131,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2007,96,1.0,1307977.0,635.302169307556,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2007,96,13.0,1431205.0,1051.00048285848,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,1.0,260588.0,25.6168667377281,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,6.0,256894.0,25.0417832171506,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,1.0,135123.0,33.3664449020778,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,3.0,118426.0,24.3802942076136,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,1.0,212794.0,30.0730845412434,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,13.0,176726.0,34.5758769411643,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,18.0,81236.0,34.3501525935019,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,1.0,33069.0,25.3960088528026,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,38.0,502201.0,322.729116149496,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,2.0,270874.0,119.57790701831,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,27.0,702867.0,199.903352772491,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,45381.0,19.9351733588085,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,142508.0,23.1184965007899,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,3.0,70554.0,31.2413400019424,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,3.0,177102.0,39.1278760692353,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,121056.0,43.8853256316572,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,76566.0,25.191966876689,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,95018.0,30.079440276401,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,1.0,154619.0,16.3465176013256,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,100036.0,17.574368002223,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,1.0,419469.0,62.799392935844,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,13.0,359397.0,41.1326983507656,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,3.0,428484.0,50.1045676190506,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,4.0,457510.0,82.4008022584915,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,93055.0,40.0450893201514,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,231021.0,42.6859644517215,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,152464.0,39.0603831284597,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,78534.0,15.9617125743761,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,1.0,376178.0,23.2211560146672,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,88852.0,16.4362432483372,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,125602.0,20.674788037138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,1.0,93866.0,33.0701787084603,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,116373.0,21.284701671643,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,60240.0,23.8098109724724,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,0.0,30358.0,8.79033379624659,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,45891.0,19.9646190745494,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,2.0,3063140.0,359.415623362894,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2007,96,2.0,245845.0,40.3344626422443,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2007,96,0.0,84586.0,34.5651056225671,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,171727.0,40.2908028838887,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,385043.0,63.9328298265836,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,145691.0,30.0511913722004,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,310347.0,34.3552915020559,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,139969.0,44.5019076696013,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,238342.0,25.347652796279,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,126176.0,66.0922519104776,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,1.0,776500.0,167.252086868657,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,117828.0,17.8909890014255,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,288937.0,18.3514149317015,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,194443.0,36.7198356097248,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,1.0,626467.0,132.401406210232,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,2.0,491155.0,319.82153813203,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,53269.0,35.0196465192072,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,82807.0,38.8723328152264,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,2.0,817984.0,282.322557452383,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2007,96,0.0,23289.0,9.92850020734081,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,356902.0,77.0739037954741,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,351113.0,166.127177248942,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2007,96,0.0,168498.0,56.7075161526219,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,2.0,153754.0,44.471697394396,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,1.0,144599.0,37.9312832455836,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,177876.0,34.1546700894174,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,210838.0,37.1825977756659,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2007,96,0.0,60823.0,19.7636696175851,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,66422.0,29.9221097573692,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,1.0,197549.0,18.2448374869968,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,180625.0,35.4651711427147,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,158669.0,32.4759789965234,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2007,96,0.0,321332.0,45.401745632822,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,150843.0,17.916280113623,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,41465.0,27.6671245917073,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2007,96,0.0,72456.0,20.0747621106552,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2007,96,0.0,124516.0,34.305117465281,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2007,96,0.0,157336.0,9.1306638158135,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2007,96,1.0,719876.0,144.745668488111,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,111715.0,9.957051633365,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,365981.0,31.1918713927882,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,63331.0,21.0881395248126,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,313323.0,56.3531373966154,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,294073.0,72.6807568525575,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,153695.0,20.2576648610697,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,190598.0,92.0110311290345,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2007,96,0.0,286344.0,109.834976814227,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,138187.0,28.3150164925856,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,2.0,3646763.0,650.95175272127,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,321505.0,36.5670371878567,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,126324.0,21.47170678013,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,360633.0,11.604131783301,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,184129.0,10.6466840275568,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,168981.0,11.8625293153975,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,115503.0,7.03470153395416,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,493931.0,47.8038956009695,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,0.0,53175.0,8.3911520467902,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2007,96,1.0,255717.0,27.6095008371889,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2007,96,7.0,129140.0,1.55529740866321,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2007,96,288.0,100599.0,3.62590616738787,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2007,96,106.0,113084.0,2.71412118708428,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2007,96,439.0,802066.0,28.3925683774269,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2007,96,1.0,55386.0,3.44334396152434,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2007,96,4.0,72543.0,4.22100493994652,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2007,96,27.0,137554.0,2.9109554944081,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2007,96,3.0,84243.0,6.25487434884602,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2007,96,19.0,102158.0,4.52462290886173,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2007,96,61.0,456396.0,12.2055820485489,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2007,96,10.0,212644.0,9.45844298042117,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2007,96,147.0,133006.0,1.07252657102334,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2007,96,128.0,101589.0,1.97637776287729,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2007,96,51.0,143517.0,3.35586486509614,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2007,96,29.0,77713.0,1.30391850013976,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2007,96,10.0,75324.0,1.3715517532875,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,73.0,154675.0,2.83573351000587,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2007,96,60.0,166272.0,3.32261688302609,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,3.0,33474.0,0.715806120289634,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2007,96,52.0,103677.0,1.2205666463876,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,4.0,92066.0,1.52426515454187,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,51.0,62058.0,1.93997398092903,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2007,96,39.0,62724.0,2.0001114616045,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,69.0,142981.0,6.40504394180347,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2007,96,63.0,104628.0,5.54202769677676,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2007,96,0.0,29420.0,4.39016730261999,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,0.0,31619.0,3.42366205798125,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,92.0,806098.0,29.1958591668432,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2007,96,15.0,127747.0,2.39578068738083,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,6.0,70653.0,6.89081953412504,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,72.0,53472.0,1.97475752180917,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,14.0,252949.0,10.3669261338722,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2007,96,1.0,28980.0,2.70496905859555,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2007,96,15.0,76625.0,3.14302523270379,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2007,96,0.0,86362.0,4.26533126468917,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2007,96,7.0,53541.0,4.84375338749987,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2007,96,35.0,220794.0,6.28013553902137,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2007,96,1.0,60267.0,2.82962291914205,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2007,96,43.0,215820.0,16.4008955201593,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2007,96,103.0,517221.0,61.8127215013889,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2007,96,5.0,58845.0,8.32148177741797,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2007,96,4.0,100759.0,18.4530996171505,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2007,96,768.0,2032305.0,300.862503671655,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2007,96,4.0,102927.0,5.92251559145032,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2007,96,73.0,960141.0,25.1631854822027,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2007,96,57.0,397387.0,7.08893668688652,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2007,96,3.0,107317.0,7.88896962559605,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2007,96,6.0,338147.0,16.009936216938,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2007,96,1.0,90327.0,9.48222078655369,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2007,96,2.0,133156.0,8.74367444628554,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2007,96,3.0,95094.0,5.91549927241848,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2007,96,42.0,2455903.0,424.584351649437,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2008,97,462.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2008,97,60.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2008,97,44.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2008,97,117.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2008,97,29.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2008,97,471.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2008,97,235.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2008,97,30.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2008,97,1.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2008,97,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2008,97,1.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2008,97,56.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2008,97,25.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2008,97,2.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2008,97,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2008,97,2.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2008,97,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2008,97,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2008,97,5.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2008,97,1139.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2008,97,6.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2008,97,66.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2008,97,12.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2008,97,2.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2008,97,25.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2008,97,3.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2008,97,63.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2008,97,17.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2008,97,1.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2008,97,15.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2008,97,369.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2008,97,49.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2008,97,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2008,97,3.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2008,97,3.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2008,97,5.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2008,97,331.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2008,97,90.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2008,97,23.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2008,97,34.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2008,97,26.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2008,97,146.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2008,97,40.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2008,97,373.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2008,97,218.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2008,97,210.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2008,97,152.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2008,97,227.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2008,97,567.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2008,97,185.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2008,97,634.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2008,97,632.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2008,97,24.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2008,97,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2008,97,105.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2008,97,1.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2008,97,489.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2008,97,266.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2008,97,270.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2008,97,224.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2008,97,199.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2008,97,662.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2008,97,140.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2008,97,63.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2008,97,0.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2008,97,116.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2008,97,16.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2008,97,0.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2008,97,11.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2008,97,14.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2008,97,4.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2008,97,36.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2008,97,178.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2008,97,15.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2008,97,12.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2008,97,16.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2008,97,4.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2008,97,5.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2008,97,4.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2008,97,7.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2008,97,23.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2008,97,6.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2008,97,54.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2008,97,10.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2008,97,4.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2008,97,5.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2008,97,10.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2008,97,92.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2008,97,11.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2008,97,3.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2008,97,1.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2008,97,6.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2008,97,1.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2008,97,2.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2008,97,14.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2008,97,10.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2008,97,11.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2008,97,3.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2008,97,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2008,97,5.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2008,97,11.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2008,97,3.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2008,97,1.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2008,97,2.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2008,97,16.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2008,97,3.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2008,97,97.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2008,97,240.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2008,97,11.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2008,97,5.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2008,97,19.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2008,97,112.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2008,97,45.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2008,97,0.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2008,97,2.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2008,97,929.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2008,97,12.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2008,97,43.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2008,97,85.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2008,97,190.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2008,97,6.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2008,97,2.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2008,97,34.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2008,97,18.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2008,97,39.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2008,97,246.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2008,97,17.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2008,97,15.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2008,97,16.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2008,97,8.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2008,97,2.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2008,97,5.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2008,97,84.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,77.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,8.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,15.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,23.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2008,97,439.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2008,97,26.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2008,97,20.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,150.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,28.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,27.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,10.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,85.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,5.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2008,97,36.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2008,97,9.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2008,97,36.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2008,97,108.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2008,97,911.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2008,97,10.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2008,97,69.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2008,97,80.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2008,97,16.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2008,97,16.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2008,97,13.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2008,97,17.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2008,97,15.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2008,97,7.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2008,97,13.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2008,97,88.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2008,97,2.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2008,97,0.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2008,97,0.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2008,97,5.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2008,97,5.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2008,97,1.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2008,97,8.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2008,97,1.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2008,97,2.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2008,97,2.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2008,97,18.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2008,97,17.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2008,97,4.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2008,97,41.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2008,97,20.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2008,97,17.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2008,97,19.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2008,97,18.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2008,97,0.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2008,97,14.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2008,97,85.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2008,97,13.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2008,97,32.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2008,97,79.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2008,97,3.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2008,97,57.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2008,97,13.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2008,97,10.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2008,97,15.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2008,97,126.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2008,97,36.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2008,97,0.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2008,97,0.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2008,97,0.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2008,97,24.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2008,97,1.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2008,97,6.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2008,97,16.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2008,97,1.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2008,97,7.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2008,97,25.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2008,97,33.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2008,97,293.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2008,97,14.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2008,97,14.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2008,97,13.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2008,97,7.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,0.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,18.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2008,97,39.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2008,97,1.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,73.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,12.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,2.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,52.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2008,97,253.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2008,97,6.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2008,97,4.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2008,97,3.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2008,97,2.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2008,97,1.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2008,97,131.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2008,97,5.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2008,97,3.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2008,97,0.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2008,97,74.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2008,97,496.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2008,97,22.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2008,97,7.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2008,97,14.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2008,97,3.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2008,97,29.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2008,97,6.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2008,97,58.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2008,97,1.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,0.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,3.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,2.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,78.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2008,97,6.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2008,97,4.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2008,97,14.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2008,97,1.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2008,97,269.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2008,97,1.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2008,97,36.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2008,97,3.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,3.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,30.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2008,97,4.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,2.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,1.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,8.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2008,97,10.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,1.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,203.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2008,97,35.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2008,97,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,0.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2008,97,2.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2008,97,232.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,10.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,31.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,0.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,8.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,54.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2008,97,2.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,6.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,16.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,1.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2008,97,2.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,0.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2008,97,3.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,197.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,12.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,2.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,248.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,4.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,2.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,52.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,5.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,30.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,176.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,129.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,0.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,9.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2008,97,0.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2008,97,1.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,4.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2008,97,1.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,2.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,1.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,5.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,3.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,2.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,2.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2008,97,9.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2008,97,16.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2008,97,19.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,158.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,22.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,11.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,2.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,0.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,11.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2008,97,2.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2008,97,2.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2008,97,105.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,83.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2008,97,3.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,80.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2008,97,6.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,34.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,5.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,561.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,13.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2008,97,5.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2008,97,57.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2008,97,11.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2008,97,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,7.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,78.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2008,97,83.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2008,97,4.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2008,97,215.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2008,97,22.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2008,97,22.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,33.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2008,97,103.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2008,97,14501.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,1.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,7.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2008,97,13.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,24.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,3.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,1.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,1.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,0.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2008,97,17.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2008,97,19.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2008,97,2.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2008,97,5.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2008,97,10.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2008,97,100.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2008,97,1.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,8.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,4.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,1.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,2.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2008,97,25.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2008,97,3.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2008,97,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2008,97,2.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2008,97,116.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2008,97,3.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2008,97,12.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2008,97,14.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,11.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2008,97,11.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2008,97,3.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2008,97,47.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,171.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,2.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,9.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,3.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2008,97,5.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,1.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,3.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,6.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,5.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2008,97,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,0.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,17.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,7.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,16.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,6.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2008,97,7.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,1.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,3.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2008,97,6.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,50.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,2.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,26.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,20.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,163.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2008,97,17.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2008,97,14.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,3.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,5.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,5.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,4.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,3.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,7.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,1.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,18.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,26.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,2.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,1.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,6.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,2.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,1.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,1.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,1.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,3.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,6.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,15.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,1.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,1.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,14.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2008,97,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2008,97,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,1.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,1.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,1.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,1.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,2.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2008,97,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,2.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2008,97,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2008,97,1.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,1.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,3.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2008,97,2.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,1.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2008,97,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2008,97,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2008,97,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2008,97,2.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2008,97,3.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,10.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2008,97,2.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2008,97,16.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2008,97,0.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2008,97,24.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2008,97,47.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2008,97,0.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2008,97,2.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2008,97,8.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2008,97,2.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2008,97,3.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2008,97,18.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2008,97,11.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2008,97,53.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2008,97,175.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2008,97,359.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2008,97,33.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2008,97,2.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,28.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2008,97,134.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,6.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2008,97,189.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,4.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,218.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2008,97,84.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,52.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2008,97,6.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2008,97,1.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,0.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,134.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2008,97,20.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,1.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,42.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,10.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2008,97,0.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2008,97,12.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2008,97,5.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2008,97,19.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2008,97,236.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2008,97,3.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2008,97,210.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2008,97,179.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2008,97,4.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2008,97,13.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2008,97,1891.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2008,97,55.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2008,97,65.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2008,97,89.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2008,97,9.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2008,97,57.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2008,97,1.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2008,97,1.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2008,97,10.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2008,97,147.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2008,98,289.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2008,98,50.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2008,98,85.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2008,98,184.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2008,98,21.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2008,98,299.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2008,98,104.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2008,98,42.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2008,98,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2008,98,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2008,98,3.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2008,98,127.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2008,98,24.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2008,98,0.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2008,98,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2008,98,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2008,98,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2008,98,5.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2008,98,4.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2008,98,1509.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2008,98,4.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2008,98,123.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2008,98,19.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2008,98,0.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2008,98,7.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2008,98,17.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2008,98,151.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2008,98,19.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2008,98,6.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2008,98,12.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2008,98,270.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2008,98,332.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2008,98,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2008,98,13.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2008,98,2.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2008,98,12.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2008,98,275.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2008,98,73.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2008,98,34.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2008,98,90.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2008,98,36.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2008,98,111.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2008,98,59.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2008,98,200.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2008,98,78.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2008,98,163.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2008,98,167.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2008,98,100.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2008,98,382.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2008,98,115.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2008,98,324.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2008,98,449.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2008,98,25.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2008,98,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2008,98,80.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2008,98,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2008,98,234.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2008,98,501.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2008,98,191.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2008,98,248.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2008,98,133.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2008,98,692.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2008,98,69.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2008,98,79.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2008,98,6.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2008,98,105.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2008,98,24.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2008,98,1.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2008,98,11.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2008,98,24.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2008,98,5.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2008,98,82.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2008,98,339.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2008,98,15.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2008,98,142.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2008,98,28.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2008,98,9.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2008,98,5.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2008,98,1.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2008,98,14.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2008,98,40.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2008,98,19.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2008,98,108.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2008,98,10.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2008,98,3.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2008,98,2.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2008,98,8.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2008,98,183.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2008,98,14.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2008,98,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2008,98,6.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2008,98,6.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2008,98,1.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2008,98,10.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2008,98,16.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2008,98,2.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2008,98,7.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2008,98,3.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2008,98,1.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2008,98,8.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2008,98,27.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2008,98,1.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2008,98,2.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2008,98,1.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2008,98,57.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2008,98,5.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2008,98,23.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2008,98,345.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2008,98,65.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2008,98,15.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2008,98,38.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2008,98,118.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2008,98,124.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2008,98,8.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2008,98,21.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2008,98,1764.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2008,98,15.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2008,98,92.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2008,98,155.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2008,98,335.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2008,98,9.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2008,98,2.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2008,98,121.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2008,98,18.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2008,98,64.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2008,98,477.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2008,98,5.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2008,98,136.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2008,98,38.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2008,98,9.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2008,98,6.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2008,98,9.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2008,98,28.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,110.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,11.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,21.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,68.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2008,98,85.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2008,98,45.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2008,98,90.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,88.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,77.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,139.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,5.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,149.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,47.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2008,98,60.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2008,98,19.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2008,98,68.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2008,98,279.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2008,98,1359.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2008,98,9.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2008,98,184.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2008,98,495.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2008,98,54.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2008,98,39.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2008,98,35.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2008,98,48.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2008,98,35.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2008,98,11.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2008,98,35.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2008,98,61.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2008,98,6.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2008,98,5.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2008,98,3.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2008,98,18.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2008,98,3.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2008,98,4.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2008,98,9.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2008,98,25.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2008,98,0.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2008,98,3.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2008,98,19.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2008,98,31.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2008,98,4.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2008,98,69.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2008,98,39.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2008,98,97.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2008,98,82.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2008,98,57.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2008,98,0.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2008,98,15.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2008,98,58.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2008,98,13.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2008,98,46.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2008,98,95.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2008,98,3.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2008,98,67.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2008,98,17.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2008,98,13.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2008,98,15.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2008,98,279.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2008,98,46.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2008,98,1.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2008,98,3.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2008,98,3.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2008,98,24.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2008,98,0.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2008,98,9.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2008,98,16.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2008,98,0.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2008,98,7.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2008,98,35.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2008,98,24.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2008,98,271.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2008,98,22.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2008,98,32.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2008,98,22.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2008,98,89.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,11.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,35.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2008,98,78.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2008,98,1.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,16.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,25.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,4.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,57.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2008,98,259.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2008,98,17.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2008,98,16.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2008,98,4.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2008,98,2.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2008,98,1.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2008,98,114.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2008,98,4.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2008,98,4.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2008,98,1.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2008,98,154.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2008,98,1724.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2008,98,70.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2008,98,9.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2008,98,19.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2008,98,16.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2008,98,39.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2008,98,52.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2008,98,34.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2008,98,1.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,1.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,3.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,6.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,60.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2008,98,2.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2008,98,29.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2008,98,3.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2008,98,1.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2008,98,419.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2008,98,2.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2008,98,42.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2008,98,3.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,1.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,66.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2008,98,24.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,2.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,1.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,16.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2008,98,5.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,33.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,79.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2008,98,39.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2008,98,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,7.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2008,98,20.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2008,98,791.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,26.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,35.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,8.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,20.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,41.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2008,98,0.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,0.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,25.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,9.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2008,98,0.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,45.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2008,98,28.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,295.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,74.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,1.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,2.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,458.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,2.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,2.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,3.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,1.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,70.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,107.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,44.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,83.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,733.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,3.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,12.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2008,98,3.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,2.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,1.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2008,98,4.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,1.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,1.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,2.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2008,98,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,1.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,2.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,1.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,2.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,13.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,7.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,3.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,8.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2008,98,92.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2008,98,23.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2008,98,174.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,181.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,67.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,89.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,17.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,0.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,13.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2008,98,1.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2008,98,3.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2008,98,156.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,163.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2008,98,2.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,332.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2008,98,5.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,66.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,34.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,1041.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,60.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2008,98,4.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2008,98,218.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2008,98,8.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2008,98,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,16.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,102.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2008,98,68.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2008,98,7.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2008,98,788.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2008,98,20.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2008,98,40.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,55.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2008,98,182.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2008,98,19783.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,10.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,12.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2008,98,12.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,39.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,5.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,2.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,3.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,2.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2008,98,22.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2008,98,41.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2008,98,5.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2008,98,5.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2008,98,14.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2008,98,129.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2008,98,0.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,2.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,7.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,10.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,5.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2008,98,48.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2008,98,4.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2008,98,1.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2008,98,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2008,98,187.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2008,98,3.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2008,98,19.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2008,98,49.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,16.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2008,98,7.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2008,98,4.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2008,98,106.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,167.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,1.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,2.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,15.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2008,98,8.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,2.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,4.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,4.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2008,98,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,0.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,1.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,13.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,1.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,6.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,21.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2008,98,6.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,7.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,1.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2008,98,6.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,65.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,3.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,20.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,20.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,132.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2008,98,7.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2008,98,17.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,2.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,14.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,14.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,1.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,3.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,16.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,9.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,13.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,17.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,5.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,2.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,1.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,7.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,5.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,22.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,1.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,1.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,1.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,1.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,11.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2008,98,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2008,98,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,1.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,2.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,2.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,1.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,2.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,1.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2008,98,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2008,98,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,1.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,1.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2008,98,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,1.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2008,98,1.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2008,98,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2008,98,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2008,98,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2008,98,1.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,1.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,1.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2008,98,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,10.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2008,98,2.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2008,98,8.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2008,98,1.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2008,98,19.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2008,98,29.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2008,98,2.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2008,98,0.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2008,98,5.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2008,98,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2008,98,1.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2008,98,16.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2008,98,5.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2008,98,37.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2008,98,96.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2008,98,264.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2008,98,63.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2008,98,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,39.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2008,98,161.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,6.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2008,98,187.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,9.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,247.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2008,98,38.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,69.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2008,98,10.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2008,98,2.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,3.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,186.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2008,98,2.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,2.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,45.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,6.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2008,98,1.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2008,98,18.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2008,98,24.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2008,98,72.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2008,98,228.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2008,98,8.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2008,98,174.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2008,98,104.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2008,98,5.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2008,98,36.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2008,98,2859.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2008,98,43.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2008,98,55.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2008,98,214.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2008,98,23.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2008,98,188.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2008,98,9.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2008,98,3.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2008,98,28.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2008,98,135.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2008,99,150.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2008,99,259.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2008,99,103.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2008,99,243.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2008,99,52.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2008,99,220.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2008,99,109.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2008,99,74.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2008,99,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2008,99,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2008,99,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2008,99,161.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2008,99,18.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2008,99,3.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2008,99,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2008,99,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2008,99,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2008,99,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2008,99,9.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2008,99,1396.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2008,99,11.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2008,99,72.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2008,99,20.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2008,99,2.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2008,99,24.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2008,99,50.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2008,99,246.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2008,99,3.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2008,99,3.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2008,99,37.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2008,99,103.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2008,99,449.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2008,99,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2008,99,1.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2008,99,4.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2008,99,4.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2008,99,336.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2008,99,98.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2008,99,42.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2008,99,127.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2008,99,50.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2008,99,94.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2008,99,84.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2008,99,101.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2008,99,15.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2008,99,140.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2008,99,126.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2008,99,111.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2008,99,215.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2008,99,87.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2008,99,199.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2008,99,385.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2008,99,20.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2008,99,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2008,99,93.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2008,99,2.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2008,99,286.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2008,99,590.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2008,99,169.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2008,99,192.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2008,99,116.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2008,99,552.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2008,99,44.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2008,99,135.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2008,99,6.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2008,99,204.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2008,99,44.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2008,99,7.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2008,99,8.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2008,99,33.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2008,99,9.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2008,99,152.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2008,99,545.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2008,99,57.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2008,99,126.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2008,99,69.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2008,99,34.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2008,99,9.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2008,99,4.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2008,99,11.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2008,99,121.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2008,99,22.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2008,99,91.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2008,99,46.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2008,99,12.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2008,99,29.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2008,99,10.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2008,99,470.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2008,99,59.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2008,99,14.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2008,99,12.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2008,99,3.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2008,99,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2008,99,16.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2008,99,7.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2008,99,8.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2008,99,11.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2008,99,6.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2008,99,6.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2008,99,44.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2008,99,80.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2008,99,4.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2008,99,8.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2008,99,2.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2008,99,76.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2008,99,10.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2008,99,14.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2008,99,182.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2008,99,50.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2008,99,34.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2008,99,72.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2008,99,191.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2008,99,169.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2008,99,23.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2008,99,102.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2008,99,3370.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2008,99,13.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2008,99,188.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2008,99,360.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2008,99,139.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2008,99,5.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2008,99,13.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2008,99,214.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2008,99,7.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2008,99,65.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2008,99,268.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2008,99,13.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2008,99,708.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2008,99,73.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2008,99,2.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2008,99,71.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2008,99,81.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2008,99,20.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,282.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,39.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,3.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,100.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2008,99,173.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2008,99,199.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2008,99,309.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,84.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,216.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,158.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,21.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,308.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,110.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2008,99,209.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2008,99,114.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2008,99,78.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2008,99,358.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2008,99,1180.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2008,99,40.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2008,99,168.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2008,99,305.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2008,99,81.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2008,99,145.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2008,99,94.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2008,99,68.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2008,99,50.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2008,99,10.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2008,99,40.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2008,99,134.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2008,99,10.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2008,99,33.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2008,99,6.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2008,99,113.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2008,99,57.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2008,99,25.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2008,99,67.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2008,99,36.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2008,99,1.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2008,99,8.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2008,99,1.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2008,99,152.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2008,99,2.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2008,99,62.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2008,99,78.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2008,99,283.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2008,99,248.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2008,99,152.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2008,99,3.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2008,99,139.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2008,99,331.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2008,99,26.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2008,99,126.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2008,99,63.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2008,99,48.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2008,99,150.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2008,99,96.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2008,99,44.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2008,99,28.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2008,99,731.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2008,99,69.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2008,99,0.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2008,99,23.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2008,99,96.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2008,99,20.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2008,99,4.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2008,99,59.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2008,99,94.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2008,99,0.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2008,99,13.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2008,99,125.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2008,99,19.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2008,99,500.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2008,99,48.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2008,99,51.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2008,99,208.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2008,99,137.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,87.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,216.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2008,99,154.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2008,99,21.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,128.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,26.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,20.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,94.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2008,99,997.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2008,99,86.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2008,99,47.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2008,99,37.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2008,99,4.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2008,99,1.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2008,99,403.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2008,99,28.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2008,99,43.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2008,99,1.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2008,99,239.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2008,99,2644.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2008,99,297.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2008,99,41.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2008,99,145.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2008,99,123.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2008,99,172.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2008,99,88.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2008,99,181.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2008,99,13.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,2.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,7.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,38.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,139.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2008,99,44.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2008,99,76.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2008,99,19.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2008,99,6.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2008,99,522.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2008,99,20.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2008,99,108.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2008,99,24.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,7.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,190.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2008,99,170.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,4.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,3.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,58.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2008,99,20.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,132.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,97.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2008,99,185.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,2.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2008,99,2.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,7.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2008,99,197.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2008,99,959.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,237.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,86.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,25.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,66.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,124.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2008,99,2.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,11.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,89.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,25.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2008,99,9.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,386.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2008,99,253.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,370.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,545.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,15.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,2134.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,37.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,1.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,11.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,9.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,4.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,190.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,393.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,283.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,64.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,943.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,6.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,69.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2008,99,18.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,3.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,2.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2008,99,15.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,1.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,1.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,3.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2008,99,4.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,3.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,2.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,1.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,23.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,5.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,7.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,333.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,50.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,17.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,49.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2008,99,486.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2008,99,97.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2008,99,825.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,510.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,222.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,265.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,36.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,29.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,103.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2008,99,5.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2008,99,6.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2008,99,1128.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,435.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2008,99,15.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,2042.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2008,99,28.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,134.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,187.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,2423.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,197.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2008,99,77.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2008,99,507.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2008,99,27.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2008,99,9.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,85.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,813.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2008,99,428.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2008,99,67.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2008,99,3973.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2008,99,181.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2008,99,91.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,261.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2008,99,752.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2008,99,56088.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,14.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,8.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2008,99,11.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,139.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,8.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,3.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,6.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2008,99,62.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2008,99,90.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2008,99,59.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2008,99,13.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2008,99,43.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2008,99,215.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2008,99,2.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,5.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,2.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,15.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,16.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2008,99,70.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2008,99,12.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2008,99,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2008,99,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2008,99,514.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2008,99,14.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2008,99,36.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2008,99,74.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,10.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2008,99,23.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2008,99,8.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2008,99,249.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,323.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,0.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,2.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,33.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2008,99,6.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,1.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,2.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,7.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,4.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2008,99,1.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,1.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,19.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,26.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,2.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,2.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,117.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2008,99,23.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,1.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,62.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2008,99,8.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,143.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,8.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,22.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,42.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,154.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2008,99,13.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2008,99,32.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,11.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,65.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,26.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,2.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,9.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,80.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,7.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,4.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,38.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,2.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,32.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,5.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,3.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,2.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,9.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,8.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,65.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,2.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,2.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,19.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2008,99,1.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2008,99,1.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,1.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,1.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,1.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,1.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,1.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,1.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,4.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,1.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,4.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2008,99,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,4.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2008,99,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,2.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2008,99,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,1.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,2.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,1.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2008,99,3.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2008,99,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2008,99,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2008,99,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2008,99,2.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,2.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,1.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,4.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2008,99,1.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,9.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,1.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2008,99,1.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2008,99,9.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2008,99,5.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2008,99,27.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2008,99,42.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2008,99,17.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2008,99,6.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2008,99,3.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2008,99,4.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2008,99,5.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2008,99,56.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2008,99,16.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2008,99,78.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2008,99,82.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2008,99,169.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2008,99,83.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2008,99,4.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,79.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2008,99,138.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,29.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2008,99,103.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,15.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,196.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2008,99,50.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,57.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2008,99,11.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2008,99,18.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,5.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,145.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2008,99,5.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,8.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,69.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,24.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2008,99,8.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2008,99,57.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2008,99,18.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2008,99,91.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2008,99,73.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2008,99,22.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2008,99,329.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2008,99,101.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2008,99,3.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2008,99,50.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2008,99,5302.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2008,99,29.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2008,99,103.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2008,99,524.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2008,99,63.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2008,99,437.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2008,99,20.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2008,99,20.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2008,99,131.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2008,99,222.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2008,100,93.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2008,100,362.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2008,100,104.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2008,100,85.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2008,100,30.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2008,100,124.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2008,100,94.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2008,100,58.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2008,100,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2008,100,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2008,100,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2008,100,190.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2008,100,18.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2008,100,8.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2008,100,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2008,100,1.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2008,100,2.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2008,100,2.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2008,100,10.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2008,100,1178.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2008,100,9.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2008,100,52.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2008,100,9.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2008,100,1.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2008,100,13.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2008,100,21.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2008,100,469.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2008,100,5.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2008,100,12.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2008,100,2.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2008,100,145.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2008,100,184.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2008,100,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2008,100,3.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2008,100,5.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2008,100,15.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2008,100,352.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2008,100,81.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2008,100,31.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2008,100,57.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2008,100,58.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2008,100,88.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2008,100,70.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2008,100,22.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2008,100,19.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2008,100,114.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2008,100,105.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2008,100,148.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2008,100,165.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2008,100,201.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2008,100,138.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2008,100,139.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2008,100,27.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2008,100,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2008,100,88.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2008,100,2.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2008,100,169.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2008,100,553.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2008,100,116.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2008,100,162.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2008,100,134.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2008,100,468.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2008,100,54.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2008,100,143.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2008,100,18.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2008,100,396.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2008,100,49.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2008,100,5.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2008,100,14.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2008,100,50.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2008,100,22.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2008,100,155.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2008,100,213.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2008,100,55.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2008,100,103.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2008,100,33.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2008,100,30.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2008,100,28.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2008,100,7.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2008,100,14.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2008,100,156.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2008,100,17.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2008,100,47.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2008,100,34.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2008,100,9.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2008,100,25.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2008,100,25.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2008,100,346.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2008,100,52.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2008,100,7.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2008,100,15.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2008,100,4.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2008,100,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2008,100,14.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2008,100,11.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2008,100,5.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2008,100,18.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2008,100,15.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2008,100,2.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2008,100,28.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2008,100,135.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2008,100,15.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2008,100,22.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2008,100,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2008,100,120.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2008,100,58.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2008,100,41.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2008,100,78.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2008,100,78.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2008,100,43.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2008,100,147.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2008,100,254.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2008,100,132.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2008,100,36.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2008,100,127.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2008,100,10654.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2008,100,23.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2008,100,601.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2008,100,465.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2008,100,106.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2008,100,20.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2008,100,39.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2008,100,224.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2008,100,13.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2008,100,31.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2008,100,306.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2008,100,65.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2008,100,679.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2008,100,99.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2008,100,16.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2008,100,53.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2008,100,103.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2008,100,22.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,380.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,82.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,6.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,160.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2008,100,287.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2008,100,408.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2008,100,186.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,67.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,317.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,43.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,53.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,296.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,139.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2008,100,395.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2008,100,422.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2008,100,213.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2008,100,902.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2008,100,2693.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2008,100,92.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2008,100,217.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2008,100,275.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2008,100,108.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2008,100,174.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2008,100,134.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2008,100,49.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2008,100,74.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2008,100,65.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2008,100,162.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2008,100,335.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2008,100,45.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2008,100,198.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2008,100,40.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2008,100,57.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2008,100,86.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2008,100,61.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2008,100,164.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2008,100,74.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2008,100,10.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2008,100,54.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2008,100,23.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2008,100,302.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2008,100,36.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2008,100,300.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2008,100,109.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2008,100,266.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2008,100,197.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2008,100,428.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2008,100,31.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2008,100,129.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2008,100,742.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2008,100,76.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2008,100,242.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2008,100,222.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2008,100,110.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2008,100,346.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2008,100,211.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2008,100,122.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2008,100,106.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2008,100,2626.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2008,100,253.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2008,100,1.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2008,100,75.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2008,100,550.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2008,100,116.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2008,100,25.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2008,100,177.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2008,100,815.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2008,100,1.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2008,100,19.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2008,100,510.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2008,100,8.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2008,100,1499.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2008,100,126.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2008,100,245.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2008,100,737.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2008,100,307.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,324.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,1024.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2008,100,403.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2008,100,404.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,365.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,72.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,69.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,214.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2008,100,3385.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2008,100,542.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2008,100,172.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2008,100,76.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2008,100,0.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2008,100,3.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2008,100,2222.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2008,100,70.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2008,100,56.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2008,100,11.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2008,100,340.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2008,100,2201.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2008,100,407.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2008,100,180.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2008,100,317.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2008,100,225.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2008,100,542.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2008,100,110.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2008,100,395.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2008,100,39.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,17.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,11.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,151.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,773.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2008,100,103.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2008,100,174.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2008,100,33.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2008,100,100.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2008,100,382.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2008,100,21.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2008,100,119.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2008,100,34.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,8.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,562.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2008,100,435.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,5.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,26.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,140.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2008,100,108.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,114.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,147.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2008,100,720.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,5.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2008,100,2.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,3.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2008,100,307.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2008,100,532.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,331.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,270.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,100.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,84.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,141.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2008,100,3.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,16.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,124.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,50.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2008,100,16.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,231.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2008,100,558.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,343.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,909.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,1.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,50.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,6468.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,81.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,6.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,14.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,18.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,4.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,450.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,780.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,906.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,60.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,686.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,14.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,138.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2008,100,55.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,20.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,3.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2008,100,13.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,1.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,3.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,3.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,3.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2008,100,4.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,2.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,3.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,45.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,6.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,8.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,695.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,38.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,37.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,134.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2008,100,1069.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2008,100,220.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2008,100,878.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,553.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,314.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,673.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,196.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,99.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,223.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2008,100,6.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2008,100,22.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2008,100,3224.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,669.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2008,100,15.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,2504.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2008,100,79.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,181.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,215.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,3723.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,286.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2008,100,102.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2008,100,436.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2008,100,16.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2008,100,8.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,105.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,1255.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2008,100,906.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2008,100,155.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2008,100,3916.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2008,100,247.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2008,100,51.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,559.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2008,100,754.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2008,100,52790.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,4.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,12.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2008,100,26.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,153.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,56.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,5.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,9.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,12.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2008,100,100.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2008,100,117.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2008,100,82.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2008,100,22.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2008,100,55.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2008,100,358.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2008,100,2.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,3.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,5.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,18.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,23.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2008,100,42.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2008,100,17.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2008,100,1.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2008,100,2.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2008,100,487.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2008,100,15.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2008,100,59.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2008,100,46.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,76.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2008,100,45.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2008,100,16.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2008,100,236.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,404.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,3.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,4.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,12.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2008,100,11.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,2.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,2.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,9.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,20.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2008,100,4.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,2.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,1.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,1.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,28.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,33.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,11.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,122.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2008,100,13.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,1.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,2.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,85.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,2.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2008,100,22.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,159.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,7.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,35.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,29.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,207.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2008,100,23.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2008,100,151.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,10.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,76.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,5.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,2.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,8.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,42.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,32.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,1.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,52.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,4.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,35.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,2.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,8.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,5.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,3.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,2.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,6.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,7.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,146.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,3.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,1.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,18.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2008,100,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2008,100,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,1.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,4.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,1.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,2.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,3.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,2.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,3.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,5.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,5.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2008,100,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2008,100,1.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2008,100,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,1.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2008,100,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,1.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2008,100,1.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2008,100,1.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2008,100,1.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2008,100,0.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,1.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,1.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2008,100,1.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,12.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,1.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2008,100,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2008,100,11.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2008,100,3.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2008,100,21.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2008,100,27.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2008,100,24.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2008,100,10.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2008,100,9.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2008,100,1.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2008,100,5.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2008,100,27.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2008,100,4.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2008,100,45.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2008,100,50.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2008,100,69.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2008,100,29.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2008,100,11.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,58.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2008,100,129.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,16.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2008,100,43.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,12.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,150.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2008,100,51.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,11.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2008,100,14.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2008,100,8.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,1.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,154.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2008,100,1.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,4.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,47.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,33.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2008,100,4.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2008,100,66.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2008,100,28.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2008,100,43.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2008,100,92.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2008,100,8.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2008,100,450.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2008,100,164.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2008,100,23.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2008,100,79.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2008,100,8990.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2008,100,35.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2008,100,131.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2008,100,513.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2008,100,25.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2008,100,319.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2008,100,19.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2008,100,17.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2008,100,43.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2008,100,298.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2008,101,42.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2008,101,89.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2008,101,27.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2008,101,35.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2008,101,3.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2008,101,11.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2008,101,31.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2008,101,13.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2008,101,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2008,101,2.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2008,101,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2008,101,142.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2008,101,26.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2008,101,0.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2008,101,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2008,101,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2008,101,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2008,101,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2008,101,25.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2008,101,522.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2008,101,2.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2008,101,14.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2008,101,5.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2008,101,1.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2008,101,5.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2008,101,2.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2008,101,620.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2008,101,13.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2008,101,11.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2008,101,8.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2008,101,13.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2008,101,121.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2008,101,1.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2008,101,6.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2008,101,1.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2008,101,1.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2008,101,108.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2008,101,18.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2008,101,16.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2008,101,29.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2008,101,21.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2008,101,19.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2008,101,37.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2008,101,27.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2008,101,13.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2008,101,30.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2008,101,47.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2008,101,60.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2008,101,66.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2008,101,50.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2008,101,50.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2008,101,45.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2008,101,29.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2008,101,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2008,101,39.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2008,101,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2008,101,83.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2008,101,176.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2008,101,50.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2008,101,72.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2008,101,37.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2008,101,322.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2008,101,19.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2008,101,57.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2008,101,4.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2008,101,187.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2008,101,22.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2008,101,3.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2008,101,7.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2008,101,7.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2008,101,24.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2008,101,33.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2008,101,49.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2008,101,38.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2008,101,35.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2008,101,10.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2008,101,4.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2008,101,10.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2008,101,5.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2008,101,7.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2008,101,40.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2008,101,8.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2008,101,30.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2008,101,4.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2008,101,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2008,101,22.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2008,101,24.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2008,101,106.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2008,101,20.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2008,101,2.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2008,101,51.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2008,101,2.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2008,101,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2008,101,8.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2008,101,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2008,101,12.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2008,101,6.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2008,101,5.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2008,101,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2008,101,41.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2008,101,31.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2008,101,14.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2008,101,71.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2008,101,1.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2008,101,66.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2008,101,26.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2008,101,58.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2008,101,24.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2008,101,19.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2008,101,24.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2008,101,57.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2008,101,126.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2008,101,97.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2008,101,74.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2008,101,49.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2008,101,11447.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2008,101,32.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2008,101,268.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2008,101,221.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2008,101,45.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2008,101,15.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2008,101,19.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2008,101,101.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2008,101,6.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2008,101,9.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2008,101,151.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2008,101,51.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2008,101,71.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2008,101,21.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2008,101,8.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2008,101,8.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2008,101,30.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2008,101,8.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,279.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,58.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,21.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,98.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2008,101,117.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2008,101,221.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2008,101,74.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,73.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,159.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,73.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,65.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,144.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,145.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2008,101,689.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2008,101,238.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2008,101,183.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2008,101,843.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2008,101,4019.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2008,101,61.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2008,101,102.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2008,101,61.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2008,101,43.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2008,101,84.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2008,101,46.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2008,101,64.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2008,101,31.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2008,101,9.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2008,101,65.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2008,101,95.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2008,101,3.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2008,101,100.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2008,101,15.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2008,101,29.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2008,101,26.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2008,101,57.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2008,101,73.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2008,101,23.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2008,101,4.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2008,101,28.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2008,101,37.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2008,101,128.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2008,101,11.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2008,101,66.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2008,101,145.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2008,101,98.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2008,101,115.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2008,101,230.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2008,101,37.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2008,101,44.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2008,101,409.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2008,101,54.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2008,101,105.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2008,101,173.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2008,101,54.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2008,101,198.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2008,101,352.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2008,101,81.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2008,101,111.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2008,101,2410.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2008,101,168.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2008,101,1.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2008,101,81.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2008,101,136.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2008,101,70.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2008,101,16.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2008,101,97.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2008,101,827.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2008,101,10.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2008,101,41.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2008,101,248.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2008,101,5.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2008,101,1757.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2008,101,165.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2008,101,126.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2008,101,454.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2008,101,105.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,195.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,693.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2008,101,247.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2008,101,161.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,198.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,53.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,96.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,224.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2008,101,4938.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2008,101,356.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2008,101,196.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2008,101,16.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2008,101,0.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2008,101,2.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2008,101,510.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2008,101,83.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2008,101,18.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2008,101,8.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2008,101,174.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2008,101,1465.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2008,101,500.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2008,101,169.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2008,101,257.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2008,101,80.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2008,101,276.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2008,101,75.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2008,101,438.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2008,101,25.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,20.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,8.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,62.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,613.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2008,101,134.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2008,101,133.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2008,101,43.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2008,101,38.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2008,101,231.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2008,101,3.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2008,101,76.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2008,101,35.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,7.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,468.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2008,101,268.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,13.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,18.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,118.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2008,101,50.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,11.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,107.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2008,101,560.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2008,101,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,2.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2008,101,175.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2008,101,76.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,39.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,255.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,247.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,23.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,82.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2008,101,2.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,5.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,44.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,18.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2008,101,3.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,32.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2008,101,228.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,121.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,611.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,1.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,19.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,4651.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,44.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,5.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,9.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,4.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,4.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,1.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,319.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,209.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,648.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,36.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,265.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,6.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,42.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2008,101,28.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,8.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,4.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2008,101,1.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,1.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,3.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,0.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,2.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2008,101,2.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,1.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,1.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,13.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,1.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,3.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,248.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,25.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,11.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,164.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2008,101,466.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2008,101,139.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2008,101,254.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,215.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,223.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,477.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,143.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,125.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,203.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2008,101,9.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2008,101,5.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2008,101,2152.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,601.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2008,101,3.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,1262.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2008,101,74.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,108.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,27.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,1556.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,146.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2008,101,20.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2008,101,277.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2008,101,6.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2008,101,4.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,19.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,511.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2008,101,515.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2008,101,59.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2008,101,1374.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2008,101,31.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2008,101,13.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,117.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2008,101,269.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2008,101,15029.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,1.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,7.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2008,101,18.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,64.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,11.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,2.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,0.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2008,101,24.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2008,101,30.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2008,101,16.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2008,101,9.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2008,101,28.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2008,101,158.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2008,101,3.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,0.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,1.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,5.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,6.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2008,101,4.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2008,101,7.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2008,101,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2008,101,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2008,101,92.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2008,101,11.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2008,101,14.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2008,101,23.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,10.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2008,101,9.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2008,101,2.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2008,101,48.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,223.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,1.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,0.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,0.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2008,101,1.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,0.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,3.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,7.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2008,101,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,2.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,10.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,2.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,6.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,37.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2008,101,12.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,39.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2008,101,16.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,38.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,1.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,11.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,4.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,91.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2008,101,5.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2008,101,163.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,9.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,5.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,1.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,5.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,25.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,1.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,5.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,2.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,27.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,1.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,11.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,5.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,4.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,140.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,1.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,8.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2008,101,1.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2008,101,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,1.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,1.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,1.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,1.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,1.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,2.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2008,101,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,1.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2008,101,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2008,101,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,1.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,1.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2008,101,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2008,101,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2008,101,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2008,101,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2008,101,1.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2008,101,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,12.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,1.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2008,101,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2008,101,1.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2008,101,0.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2008,101,3.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2008,101,12.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2008,101,2.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2008,101,4.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2008,101,2.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2008,101,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2008,101,3.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2008,101,5.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2008,101,5.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2008,101,10.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2008,101,5.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2008,101,29.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2008,101,11.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2008,101,4.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,29.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2008,101,56.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,2.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2008,101,14.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,8.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,35.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2008,101,16.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,6.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2008,101,9.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2008,101,3.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,0.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,51.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2008,101,0.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,1.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,11.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,9.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2008,101,4.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2008,101,46.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2008,101,21.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2008,101,23.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2008,101,47.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2008,101,3.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2008,101,308.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2008,101,82.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2008,101,3.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2008,101,29.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2008,101,3932.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2008,101,25.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2008,101,50.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2008,101,239.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2008,101,10.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2008,101,164.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2008,101,9.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2008,101,6.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2008,101,11.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2008,101,170.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2008,102,6.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2008,102,13.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2008,102,15.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2008,102,9.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2008,102,0.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2008,102,6.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2008,102,18.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2008,102,4.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2008,102,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2008,102,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2008,102,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2008,102,92.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2008,102,2.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2008,102,1.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2008,102,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2008,102,2.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2008,102,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2008,102,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2008,102,23.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2008,102,91.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2008,102,0.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2008,102,1.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2008,102,0.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2008,102,0.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2008,102,0.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2008,102,0.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2008,102,336.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2008,102,10.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2008,102,73.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2008,102,45.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2008,102,6.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2008,102,44.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2008,102,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2008,102,4.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2008,102,2.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2008,102,1.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2008,102,41.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2008,102,15.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2008,102,12.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2008,102,20.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2008,102,11.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2008,102,4.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2008,102,38.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2008,102,11.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2008,102,5.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2008,102,14.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2008,102,35.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2008,102,23.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2008,102,42.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2008,102,71.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2008,102,33.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2008,102,19.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2008,102,4.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2008,102,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2008,102,29.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2008,102,1.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2008,102,21.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2008,102,59.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2008,102,13.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2008,102,11.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2008,102,2.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2008,102,149.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2008,102,11.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2008,102,21.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2008,102,5.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2008,102,107.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2008,102,4.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2008,102,1.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2008,102,4.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2008,102,3.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2008,102,0.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2008,102,5.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2008,102,11.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2008,102,5.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2008,102,14.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2008,102,7.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2008,102,5.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2008,102,3.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2008,102,4.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2008,102,0.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2008,102,14.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2008,102,2.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2008,102,1.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2008,102,0.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2008,102,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2008,102,15.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2008,102,13.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2008,102,77.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2008,102,18.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2008,102,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2008,102,14.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2008,102,1.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2008,102,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2008,102,0.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2008,102,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2008,102,2.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2008,102,2.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2008,102,7.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2008,102,1.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2008,102,28.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2008,102,20.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2008,102,4.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2008,102,16.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2008,102,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2008,102,42.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2008,102,14.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2008,102,17.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2008,102,6.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2008,102,5.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2008,102,9.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2008,102,28.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2008,102,67.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2008,102,47.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2008,102,21.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2008,102,22.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2008,102,3858.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2008,102,13.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2008,102,133.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2008,102,97.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2008,102,14.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2008,102,6.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2008,102,22.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2008,102,97.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2008,102,18.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2008,102,4.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2008,102,69.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2008,102,17.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2008,102,2.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2008,102,5.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2008,102,4.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2008,102,2.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2008,102,7.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2008,102,2.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,150.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,29.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,7.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,41.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2008,102,56.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2008,102,107.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2008,102,14.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,21.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,31.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,13.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,29.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,30.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,35.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2008,102,271.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2008,102,65.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2008,102,79.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2008,102,279.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2008,102,1619.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2008,102,15.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2008,102,28.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2008,102,9.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2008,102,6.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2008,102,14.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2008,102,11.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2008,102,37.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2008,102,14.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2008,102,2.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2008,102,15.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2008,102,51.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2008,102,2.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2008,102,27.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2008,102,4.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2008,102,8.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2008,102,17.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2008,102,29.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2008,102,57.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2008,102,2.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2008,102,6.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2008,102,10.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2008,102,10.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2008,102,41.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2008,102,7.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2008,102,7.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2008,102,69.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2008,102,36.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2008,102,24.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2008,102,54.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2008,102,14.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2008,102,11.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2008,102,133.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2008,102,24.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2008,102,24.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2008,102,14.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2008,102,20.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2008,102,71.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2008,102,90.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2008,102,26.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2008,102,25.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2008,102,932.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2008,102,84.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2008,102,17.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2008,102,10.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2008,102,9.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2008,102,7.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2008,102,8.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2008,102,51.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2008,102,217.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2008,102,0.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2008,102,56.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2008,102,44.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2008,102,2.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2008,102,693.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2008,102,56.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2008,102,70.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2008,102,25.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2008,102,19.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,18.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,109.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2008,102,19.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2008,102,25.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,45.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,9.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,30.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,71.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2008,102,1059.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2008,102,53.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2008,102,75.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2008,102,11.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2008,102,0.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2008,102,0.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2008,102,110.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2008,102,27.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2008,102,5.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2008,102,0.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2008,102,74.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2008,102,191.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2008,102,153.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2008,102,37.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2008,102,159.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2008,102,20.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2008,102,8.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2008,102,20.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2008,102,293.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2008,102,7.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,12.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,5.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,14.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,297.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2008,102,31.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2008,102,38.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2008,102,18.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2008,102,16.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2008,102,52.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2008,102,13.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2008,102,24.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2008,102,8.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,0.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,543.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2008,102,86.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,6.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,6.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,45.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2008,102,50.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,7.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,26.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2008,102,139.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,3.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2008,102,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,1.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2008,102,59.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2008,102,5.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,7.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,77.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,97.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,7.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,39.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2008,102,1.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,2.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,21.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,15.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2008,102,4.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,33.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2008,102,44.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,74.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,155.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,4.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,1218.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,15.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,1.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,2.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,3.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,91.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,64.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,242.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,7.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,46.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,3.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,8.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2008,102,11.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,3.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2008,102,0.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,1.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,44.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,8.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,2.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,55.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2008,102,88.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2008,102,35.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2008,102,72.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,41.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,32.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,167.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,222.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,77.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,60.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2008,102,1.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2008,102,3.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2008,102,915.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,194.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2008,102,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,290.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2008,102,40.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,32.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,9.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,141.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,42.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2008,102,1.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2008,102,55.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2008,102,1.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2008,102,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,105.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2008,102,42.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2008,102,6.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2008,102,141.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2008,102,3.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2008,102,1.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,15.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2008,102,61.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2008,102,2558.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,0.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,2.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2008,102,4.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,22.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,4.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2008,102,4.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2008,102,9.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2008,102,2.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2008,102,13.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2008,102,6.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2008,102,61.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2008,102,1.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,5.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2008,102,2.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2008,102,0.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2008,102,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2008,102,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2008,102,15.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2008,102,9.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2008,102,4.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2008,102,10.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,3.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2008,102,9.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2008,102,2.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2008,102,13.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,94.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,2.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,2.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2008,102,1.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,2.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,4.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,3.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2008,102,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,1.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,4.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,1.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,15.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2008,102,1.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,8.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2008,102,5.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,12.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,2.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,7.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,22.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2008,102,0.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2008,102,61.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,1.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,1.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,2.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,11.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,2.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,1.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,11.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,3.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,1.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,1.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,1.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,32.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,3.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2008,102,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2008,102,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,1.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,1.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,1.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,2.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2008,102,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,1.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2008,102,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,1.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2008,102,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2008,102,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2008,102,1.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2008,102,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2008,102,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2008,102,1.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2008,102,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,3.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2008,102,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2008,102,0.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2008,102,1.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2008,102,6.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2008,102,6.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2008,102,2.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2008,102,4.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2008,102,0.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2008,102,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2008,102,2.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2008,102,6.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2008,102,2.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2008,102,10.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2008,102,16.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2008,102,9.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2008,102,2.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2008,102,2.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,4.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2008,102,19.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,2.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2008,102,3.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,2.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,7.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2008,102,8.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,1.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2008,102,2.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2008,102,2.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,0.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,23.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2008,102,1.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,0.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,10.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,1.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2008,102,2.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2008,102,8.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2008,102,11.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2008,102,3.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2008,102,14.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2008,102,2.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2008,102,75.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2008,102,28.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2008,102,3.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2008,102,14.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2008,102,1164.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2008,102,29.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2008,102,23.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2008,102,49.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2008,102,9.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2008,102,70.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2008,102,2.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2008,102,1.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2008,102,4.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2008,102,51.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2008,103,8.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2008,103,3.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2008,103,2.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2008,103,1.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2008,103,0.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2008,103,1.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2008,103,6.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2008,103,1.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2008,103,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2008,103,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2008,103,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2008,103,65.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2008,103,0.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2008,103,24.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2008,103,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2008,103,5.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2008,103,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2008,103,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2008,103,35.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2008,103,59.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2008,103,0.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2008,103,0.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2008,103,1.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2008,103,0.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2008,103,0.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2008,103,0.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2008,103,776.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2008,103,44.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2008,103,90.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2008,103,35.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2008,103,13.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2008,103,14.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2008,103,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2008,103,1.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2008,103,1.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2008,103,2.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2008,103,21.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2008,103,16.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2008,103,12.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2008,103,5.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2008,103,6.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2008,103,6.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2008,103,11.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2008,103,7.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2008,103,2.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2008,103,3.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2008,103,13.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2008,103,14.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2008,103,23.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2008,103,36.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2008,103,12.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2008,103,7.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2008,103,2.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2008,103,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2008,103,15.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2008,103,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2008,103,17.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2008,103,17.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2008,103,4.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2008,103,4.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2008,103,1.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2008,103,31.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2008,103,2.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2008,103,1.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2008,103,1.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2008,103,38.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2008,103,0.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2008,103,0.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2008,103,4.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2008,103,0.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2008,103,0.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2008,103,1.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2008,103,6.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2008,103,0.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2008,103,7.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2008,103,4.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2008,103,1.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2008,103,2.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2008,103,2.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2008,103,0.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2008,103,4.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2008,103,0.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2008,103,0.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2008,103,3.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2008,103,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2008,103,3.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2008,103,2.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2008,103,17.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2008,103,7.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2008,103,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2008,103,3.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2008,103,1.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2008,103,2.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2008,103,0.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2008,103,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2008,103,3.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2008,103,0.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2008,103,3.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2008,103,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2008,103,10.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2008,103,5.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2008,103,2.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2008,103,7.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2008,103,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2008,103,10.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2008,103,5.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2008,103,3.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2008,103,2.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2008,103,0.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2008,103,9.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2008,103,7.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2008,103,16.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2008,103,16.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2008,103,5.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2008,103,9.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2008,103,726.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2008,103,5.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2008,103,47.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2008,103,28.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2008,103,1.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2008,103,0.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2008,103,13.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2008,103,49.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2008,103,0.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2008,103,3.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2008,103,13.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2008,103,6.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2008,103,0.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2008,103,2.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2008,103,4.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2008,103,0.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2008,103,2.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2008,103,0.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,119.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,5.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,0.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,12.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2008,103,31.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2008,103,27.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2008,103,3.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,22.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,8.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,5.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,10.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,11.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,14.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2008,103,56.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2008,103,21.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2008,103,36.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2008,103,75.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2008,103,598.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2008,103,4.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2008,103,9.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2008,103,7.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2008,103,1.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2008,103,2.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2008,103,1.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2008,103,4.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2008,103,1.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2008,103,3.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2008,103,0.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2008,103,18.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2008,103,3.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2008,103,12.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2008,103,2.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2008,103,2.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2008,103,8.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2008,103,6.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2008,103,18.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2008,103,3.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2008,103,1.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2008,103,14.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2008,103,3.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2008,103,24.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2008,103,0.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2008,103,6.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2008,103,22.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2008,103,15.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2008,103,2.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2008,103,11.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2008,103,19.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2008,103,1.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2008,103,47.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2008,103,8.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2008,103,15.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2008,103,3.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2008,103,9.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2008,103,27.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2008,103,19.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2008,103,23.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2008,103,28.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2008,103,372.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2008,103,46.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2008,103,4.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2008,103,7.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2008,103,2.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2008,103,3.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2008,103,5.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2008,103,16.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2008,103,45.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2008,103,5.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2008,103,6.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2008,103,45.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2008,103,1.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2008,103,585.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2008,103,16.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2008,103,53.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2008,103,7.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2008,103,4.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,1.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,21.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2008,103,5.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2008,103,0.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,6.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,0.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,4.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,4.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2008,103,110.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2008,103,23.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2008,103,5.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2008,103,8.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2008,103,0.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2008,103,0.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2008,103,41.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2008,103,5.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2008,103,0.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2008,103,0.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2008,103,20.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2008,103,36.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2008,103,76.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2008,103,16.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2008,103,90.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2008,103,7.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2008,103,6.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2008,103,8.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2008,103,155.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2008,103,4.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,0.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,3.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,9.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,157.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2008,103,3.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2008,103,7.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2008,103,7.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2008,103,6.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2008,103,12.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2008,103,2.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2008,103,4.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2008,103,6.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,1.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,296.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2008,103,35.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,1.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,1.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,6.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2008,103,27.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,1.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,2.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2008,103,17.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2008,103,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,0.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2008,103,2.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2008,103,6.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,0.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,18.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,10.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,0.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,4.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2008,103,0.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,0.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,5.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,2.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2008,103,0.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,2.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2008,103,3.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,8.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,29.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,111.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,1.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,1.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,27.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,17.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,38.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,1.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,10.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,1.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,0.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2008,103,4.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2008,103,0.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,1.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,6.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,2.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,12.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2008,103,13.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2008,103,6.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,3.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,17.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,38.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,49.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,33.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,17.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2008,103,320.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,64.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,10.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2008,103,11.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,6.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,2.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,35.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,6.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2008,103,13.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2008,103,0.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2008,103,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,1.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,14.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2008,103,4.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2008,103,35.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2008,103,2.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2008,103,1.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,3.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2008,103,24.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2008,103,994.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,2.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,0.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2008,103,4.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,16.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,2.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,0.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,2.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2008,103,2.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2008,103,8.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2008,103,0.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2008,103,1.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2008,103,3.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2008,103,36.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2008,103,0.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,4.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,1.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,3.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,6.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2008,103,1.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2008,103,2.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2008,103,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2008,103,4.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2008,103,8.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2008,103,3.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2008,103,3.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2008,103,8.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,5.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2008,103,3.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2008,103,2.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2008,103,8.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,73.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,1.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,1.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,0.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2008,103,11.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,0.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,4.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,2.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2008,103,1.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,2.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,0.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,2.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,4.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,1.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2008,103,0.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,2.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2008,103,1.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,6.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,5.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,4.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,26.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2008,103,0.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2008,103,16.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,1.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,1.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,5.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,1.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,3.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,13.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,1.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,1.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,13.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,1.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2008,103,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2008,103,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,1.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,2.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2008,103,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2008,103,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2008,103,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2008,103,1.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2008,103,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2008,103,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2008,103,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2008,103,0.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2008,103,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2008,103,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2008,103,2.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2008,103,0.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2008,103,1.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2008,103,5.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2008,103,0.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2008,103,0.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2008,103,0.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2008,103,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2008,103,0.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2008,103,2.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2008,103,1.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2008,103,2.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2008,103,9.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2008,103,2.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2008,103,0.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2008,103,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,3.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2008,103,7.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,0.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2008,103,1.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,1.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,0.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2008,103,5.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,1.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2008,103,0.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2008,103,2.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,0.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,4.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2008,103,2.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,0.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,3.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,0.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2008,103,0.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2008,103,8.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2008,103,0.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2008,103,3.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2008,103,4.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2008,103,0.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2008,103,13.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2008,103,11.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2008,103,1.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2008,103,0.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2008,103,378.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2008,103,11.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2008,103,19.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2008,103,19.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2008,103,1.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2008,103,13.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2008,103,0.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2008,103,0.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2008,103,2.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2008,103,21.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2008,104,2.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2008,104,4.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2008,104,2.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2008,104,8.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2008,104,0.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2008,104,0.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2008,104,3.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2008,104,0.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2008,104,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2008,104,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2008,104,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2008,104,43.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2008,104,0.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2008,104,21.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2008,104,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2008,104,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2008,104,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2008,104,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2008,104,29.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2008,104,20.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2008,104,0.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2008,104,0.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2008,104,1.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2008,104,0.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2008,104,0.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2008,104,0.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2008,104,426.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2008,104,19.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2008,104,28.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2008,104,47.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2008,104,2.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2008,104,10.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2008,104,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2008,104,3.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2008,104,1.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2008,104,0.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2008,104,29.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2008,104,6.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2008,104,2.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2008,104,5.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2008,104,3.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2008,104,8.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2008,104,5.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2008,104,2.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2008,104,3.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2008,104,2.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2008,104,6.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2008,104,10.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2008,104,15.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2008,104,9.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2008,104,8.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2008,104,3.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2008,104,6.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2008,104,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2008,104,15.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2008,104,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2008,104,8.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2008,104,5.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2008,104,2.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2008,104,3.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2008,104,0.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2008,104,30.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2008,104,4.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2008,104,1.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2008,104,0.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2008,104,38.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2008,104,2.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2008,104,0.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2008,104,4.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2008,104,1.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2008,104,0.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2008,104,0.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2008,104,4.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2008,104,1.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2008,104,1.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2008,104,1.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2008,104,2.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2008,104,2.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2008,104,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2008,104,0.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2008,104,1.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2008,104,3.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2008,104,6.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2008,104,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2008,104,0.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2008,104,0.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2008,104,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2008,104,1.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2008,104,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2008,104,4.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2008,104,0.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2008,104,1.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2008,104,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2008,104,0.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2008,104,1.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2008,104,3.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2008,104,3.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2008,104,2.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2008,104,1.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2008,104,1.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2008,104,10.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2008,104,2.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2008,104,9.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2008,104,2.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2008,104,13.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2008,104,3.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2008,104,354.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2008,104,4.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2008,104,30.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2008,104,17.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2008,104,2.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2008,104,3.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2008,104,3.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2008,104,28.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2008,104,1.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2008,104,3.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2008,104,1.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2008,104,0.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2008,104,0.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,60.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,4.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,1.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,6.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2008,104,16.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2008,104,10.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2008,104,1.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,8.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,3.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,1.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,2.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,10.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,6.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2008,104,15.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2008,104,9.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2008,104,15.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2008,104,33.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2008,104,264.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2008,104,6.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2008,104,4.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2008,104,1.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2008,104,0.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2008,104,1.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2008,104,8.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2008,104,0.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2008,104,2.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2008,104,2.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2008,104,0.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2008,104,8.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2008,104,1.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2008,104,8.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2008,104,2.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2008,104,0.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2008,104,2.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2008,104,12.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2008,104,10.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2008,104,1.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2008,104,2.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2008,104,7.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2008,104,7.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2008,104,12.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2008,104,2.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2008,104,1.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2008,104,0.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2008,104,2.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2008,104,1.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2008,104,4.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2008,104,2.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2008,104,0.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2008,104,35.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2008,104,5.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2008,104,7.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2008,104,3.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2008,104,8.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2008,104,4.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2008,104,4.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2008,104,13.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2008,104,4.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2008,104,181.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2008,104,21.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2008,104,1.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2008,104,3.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2008,104,0.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2008,104,0.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2008,104,2.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2008,104,4.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2008,104,11.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2008,104,5.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2008,104,0.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2008,104,11.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2008,104,1.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2008,104,291.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2008,104,12.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2008,104,43.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2008,104,7.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2008,104,1.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,2.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,4.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2008,104,1.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2008,104,1.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,3.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,1.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,0.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,2.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2008,104,27.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2008,104,3.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2008,104,1.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2008,104,2.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2008,104,1.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2008,104,0.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2008,104,7.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2008,104,2.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2008,104,1.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2008,104,0.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2008,104,9.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2008,104,32.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2008,104,69.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2008,104,16.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2008,104,55.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2008,104,7.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2008,104,12.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2008,104,3.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2008,104,87.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2008,104,2.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,3.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,2.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,9.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,90.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2008,104,1.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2008,104,5.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2008,104,7.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2008,104,1.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2008,104,3.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2008,104,0.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2008,104,7.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2008,104,13.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,1.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,71.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2008,104,30.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,0.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,0.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,7.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2008,104,7.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,0.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2008,104,11.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2008,104,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,0.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2008,104,1.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2008,104,3.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,1.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,2.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,2.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,4.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2008,104,0.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,0.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,16.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,3.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2008,104,0.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,1.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2008,104,2.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,5.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,9.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,37.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,1.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,22.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,25.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,2.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,21.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,0.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,0.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2008,104,10.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2008,104,0.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,1.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,1.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,2.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,6.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2008,104,4.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2008,104,5.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,3.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,28.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,12.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,14.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,18.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,6.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2008,104,2.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2008,104,209.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,39.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,3.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2008,104,2.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,3.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,1.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,78.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,3.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2008,104,2.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2008,104,0.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,1.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,4.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2008,104,7.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2008,104,18.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,4.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2008,104,13.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2008,104,414.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,1.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,4.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2008,104,5.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,7.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,2.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2008,104,0.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2008,104,0.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2008,104,0.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2008,104,5.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2008,104,2.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2008,104,24.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2008,104,1.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,5.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2008,104,1.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2008,104,0.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2008,104,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2008,104,1.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2008,104,4.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2008,104,1.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2008,104,1.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2008,104,2.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,2.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2008,104,2.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2008,104,2.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2008,104,3.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,35.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,2.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,1.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,0.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2008,104,3.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,3.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,2.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2008,104,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,2.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,1.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2008,104,0.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,2.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2008,104,0.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,4.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,0.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,4.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,1.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,11.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2008,104,4.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2008,104,8.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,1.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,1.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,15.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,5.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,1.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,2.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,19.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,1.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,1.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,3.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,1.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,8.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,1.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2008,104,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2008,104,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2008,104,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2008,104,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2008,104,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2008,104,1.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2008,104,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2008,104,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2008,104,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2008,104,0.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2008,104,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,1.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2008,104,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2008,104,1.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2008,104,0.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2008,104,0.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2008,104,8.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2008,104,1.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2008,104,0.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2008,104,0.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2008,104,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2008,104,1.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2008,104,1.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2008,104,2.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2008,104,2.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2008,104,1.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2008,104,2.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2008,104,0.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2008,104,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,2.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2008,104,5.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,0.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2008,104,45.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,1.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,0.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2008,104,0.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,1.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2008,104,2.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2008,104,0.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,0.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,9.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2008,104,1.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,0.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,1.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,2.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2008,104,0.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2008,104,5.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2008,104,2.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2008,104,10.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2008,104,2.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2008,104,1.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2008,104,4.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2008,104,5.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2008,104,0.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2008,104,0.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2008,104,278.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2008,104,7.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2008,104,7.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2008,104,8.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2008,104,1.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2008,104,7.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2008,104,0.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2008,104,0.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2008,104,0.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2008,104,35.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2008,105,3.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2008,105,1.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2008,105,0.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2008,105,5.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2008,105,1.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2008,105,0.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2008,105,8.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2008,105,1.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2008,105,1.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2008,105,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2008,105,0.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2008,105,86.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2008,105,0.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2008,105,13.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2008,105,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2008,105,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2008,105,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2008,105,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2008,105,15.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2008,105,19.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2008,105,0.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2008,105,0.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2008,105,0.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2008,105,0.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2008,105,0.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2008,105,0.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2008,105,353.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2008,105,12.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2008,105,14.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2008,105,27.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2008,105,0.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2008,105,4.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2008,105,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2008,105,0.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2008,105,0.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2008,105,0.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2008,105,52.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2008,105,17.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2008,105,3.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2008,105,26.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2008,105,4.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2008,105,5.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2008,105,6.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2008,105,2.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2008,105,0.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2008,105,3.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2008,105,2.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2008,105,5.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2008,105,20.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2008,105,9.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2008,105,13.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2008,105,1.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2008,105,39.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2008,105,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2008,105,13.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2008,105,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2008,105,3.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2008,105,5.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2008,105,0.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2008,105,4.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2008,105,0.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2008,105,37.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2008,105,4.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2008,105,2.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2008,105,4.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2008,105,16.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2008,105,0.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2008,105,2.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2008,105,1.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2008,105,0.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2008,105,1.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2008,105,1.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2008,105,1.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2008,105,0.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2008,105,1.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2008,105,1.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2008,105,1.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2008,105,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2008,105,0.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2008,105,2.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2008,105,8.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2008,105,8.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2008,105,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2008,105,2.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2008,105,0.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2008,105,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2008,105,0.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2008,105,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2008,105,3.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2008,105,0.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2008,105,0.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2008,105,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2008,105,2.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2008,105,3.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2008,105,0.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2008,105,2.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2008,105,5.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2008,105,1.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2008,105,2.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2008,105,3.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2008,105,1.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2008,105,3.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2008,105,233.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2008,105,4.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2008,105,16.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2008,105,18.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2008,105,20.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2008,105,3.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2008,105,3.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2008,105,10.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2008,105,0.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2008,105,2.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2008,105,0.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2008,105,0.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2008,105,2.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2008,105,0.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,25.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,3.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,0.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,3.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2008,105,11.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2008,105,2.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2008,105,0.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,1.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,1.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,3.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,0.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,1.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,0.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2008,105,5.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2008,105,4.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2008,105,5.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2008,105,15.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2008,105,116.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2008,105,1.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2008,105,3.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2008,105,0.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2008,105,0.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2008,105,0.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2008,105,1.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2008,105,2.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2008,105,0.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2008,105,0.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2008,105,1.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2008,105,8.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2008,105,1.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2008,105,2.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2008,105,0.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2008,105,1.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2008,105,0.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2008,105,15.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2008,105,8.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2008,105,2.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2008,105,0.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2008,105,5.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2008,105,9.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2008,105,6.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2008,105,1.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2008,105,0.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2008,105,1.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2008,105,2.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2008,105,0.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2008,105,4.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2008,105,3.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2008,105,0.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2008,105,20.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2008,105,2.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2008,105,2.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2008,105,1.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2008,105,6.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2008,105,4.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2008,105,2.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2008,105,6.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2008,105,2.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2008,105,78.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2008,105,10.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2008,105,0.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2008,105,0.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2008,105,0.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2008,105,1.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2008,105,1.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2008,105,3.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2008,105,7.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2008,105,3.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2008,105,2.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2008,105,9.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2008,105,2.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2008,105,330.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2008,105,14.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2008,105,15.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2008,105,8.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2008,105,5.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,0.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,0.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2008,105,2.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2008,105,0.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,0.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,0.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,0.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,2.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2008,105,17.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2008,105,2.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2008,105,0.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2008,105,4.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2008,105,25.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2008,105,0.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2008,105,2.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2008,105,1.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2008,105,0.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2008,105,1.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2008,105,9.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2008,105,72.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2008,105,18.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2008,105,7.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2008,105,29.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2008,105,6.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2008,105,9.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2008,105,1.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2008,105,49.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2008,105,1.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,0.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,1.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,6.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,61.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2008,105,1.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2008,105,9.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2008,105,4.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2008,105,0.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2008,105,1.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2008,105,1.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2008,105,4.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2008,105,13.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,0.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,31.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2008,105,21.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,0.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,0.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,9.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2008,105,3.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,0.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2008,105,10.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2008,105,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,0.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2008,105,0.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2008,105,5.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,2.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,4.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2008,105,0.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,2.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,8.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,5.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2008,105,0.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,2.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2008,105,2.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,1.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,3.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,26.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,1.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,62.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,12.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,5.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,2.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,0.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,2.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2008,105,8.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2008,105,0.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,2.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,1.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,1.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2008,105,1.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2008,105,1.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2008,105,5.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,5.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,10.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,9.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,11.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,25.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2008,105,115.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,3.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2008,105,5.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,3.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,88.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2008,105,3.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2008,105,0.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,5.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2008,105,4.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2008,105,1.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2008,105,58.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2008,105,1.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2008,105,4.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2008,105,365.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,2.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,2.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2008,105,2.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,10.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2008,105,0.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2008,105,1.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2008,105,1.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2008,105,0.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2008,105,4.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2008,105,23.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2008,105,0.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,4.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,2.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2008,105,2.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2008,105,0.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2008,105,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2008,105,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2008,105,11.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2008,105,3.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2008,105,1.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2008,105,3.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,2.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2008,105,2.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2008,105,0.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,27.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,1.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,0.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2008,105,3.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2008,105,1.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,1.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2008,105,0.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2008,105,0.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,4.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,2.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,5.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2008,105,1.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2008,105,2.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,2.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,1.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,3.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,5.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,1.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,5.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,18.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,1.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,1.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,1.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,5.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2008,105,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2008,105,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2008,105,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2008,105,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2008,105,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2008,105,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2008,105,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2008,105,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2008,105,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2008,105,1.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2008,105,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2008,105,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2008,105,2.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2008,105,0.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2008,105,1.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2008,105,3.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2008,105,2.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2008,105,1.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2008,105,0.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2008,105,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2008,105,0.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2008,105,2.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2008,105,4.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2008,105,8.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2008,105,0.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2008,105,2.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2008,105,1.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2008,105,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,2.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2008,105,1.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,1.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2008,105,63.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,0.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,0.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2008,105,7.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,1.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2008,105,3.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2008,105,0.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,0.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,6.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2008,105,1.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,1.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,2.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,0.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2008,105,0.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2008,105,0.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2008,105,1.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2008,105,2.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2008,105,1.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2008,105,0.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2008,105,9.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2008,105,7.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2008,105,0.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2008,105,1.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2008,105,219.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2008,105,4.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2008,105,3.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2008,105,4.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2008,105,2.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2008,105,15.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2008,105,1.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2008,105,1.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2008,105,1.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2008,105,21.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2008,106,3.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2008,106,1.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2008,106,0.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2008,106,3.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2008,106,0.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2008,106,2.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2008,106,24.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2008,106,1.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2008,106,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2008,106,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2008,106,12.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2008,106,103.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2008,106,5.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2008,106,20.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2008,106,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2008,106,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2008,106,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2008,106,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2008,106,79.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2008,106,17.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2008,106,1.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2008,106,0.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2008,106,5.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2008,106,1.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2008,106,0.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2008,106,0.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2008,106,217.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2008,106,16.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2008,106,7.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2008,106,21.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2008,106,0.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2008,106,46.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2008,106,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2008,106,3.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2008,106,1.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2008,106,0.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2008,106,96.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2008,106,18.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2008,106,1.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2008,106,14.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2008,106,7.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2008,106,11.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2008,106,17.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2008,106,3.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2008,106,0.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2008,106,2.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2008,106,9.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2008,106,41.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2008,106,16.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2008,106,6.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2008,106,16.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2008,106,3.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2008,106,173.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2008,106,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2008,106,27.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2008,106,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2008,106,5.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2008,106,19.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2008,106,8.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2008,106,6.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2008,106,1.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2008,106,42.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2008,106,8.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2008,106,1.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2008,106,0.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2008,106,4.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2008,106,0.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2008,106,0.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2008,106,0.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2008,106,0.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2008,106,0.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2008,106,0.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2008,106,1.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2008,106,1.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2008,106,0.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2008,106,0.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2008,106,0.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2008,106,2.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2008,106,2.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2008,106,2.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2008,106,2.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2008,106,1.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2008,106,0.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2008,106,2.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2008,106,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2008,106,0.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2008,106,1.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2008,106,7.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2008,106,2.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2008,106,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2008,106,1.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2008,106,0.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2008,106,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2008,106,0.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2008,106,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2008,106,4.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2008,106,0.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2008,106,0.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2008,106,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2008,106,1.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2008,106,2.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2008,106,0.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2008,106,4.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2008,106,4.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2008,106,8.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2008,106,2.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2008,106,184.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2008,106,5.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2008,106,12.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2008,106,2.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2008,106,7.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2008,106,6.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2008,106,7.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2008,106,2.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2008,106,1.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2008,106,0.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2008,106,2.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2008,106,0.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2008,106,1.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,17.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,1.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,0.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,1.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2008,106,4.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2008,106,1.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2008,106,2.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,3.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,0.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,0.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,1.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,8.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,5.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2008,106,21.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2008,106,2.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2008,106,2.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2008,106,12.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2008,106,91.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2008,106,0.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2008,106,0.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2008,106,1.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2008,106,2.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2008,106,0.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2008,106,5.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2008,106,8.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2008,106,3.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2008,106,0.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2008,106,1.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2008,106,3.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2008,106,5.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2008,106,0.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2008,106,0.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2008,106,8.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2008,106,5.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2008,106,1.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2008,106,0.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2008,106,1.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2008,106,6.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2008,106,0.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2008,106,0.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2008,106,1.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2008,106,0.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2008,106,11.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2008,106,3.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2008,106,2.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2008,106,1.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2008,106,2.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2008,106,7.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2008,106,1.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2008,106,4.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2008,106,4.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2008,106,57.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2008,106,12.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2008,106,0.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2008,106,2.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2008,106,0.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2008,106,2.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2008,106,2.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2008,106,2.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2008,106,9.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2008,106,0.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2008,106,2.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2008,106,16.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2008,106,2.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2008,106,192.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2008,106,10.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2008,106,2.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2008,106,7.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2008,106,7.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,1.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,5.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2008,106,2.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2008,106,3.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,2.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,0.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,3.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,4.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2008,106,24.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2008,106,1.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2008,106,3.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2008,106,7.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2008,106,50.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2008,106,0.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2008,106,2.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2008,106,1.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2008,106,2.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2008,106,1.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2008,106,18.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2008,106,340.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2008,106,83.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2008,106,3.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2008,106,25.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2008,106,1.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2008,106,7.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2008,106,1.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2008,106,66.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2008,106,1.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,2.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,0.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,8.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,100.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2008,106,2.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2008,106,8.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2008,106,10.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2008,106,0.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2008,106,2.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2008,106,0.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2008,106,11.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2008,106,14.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,0.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,110.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2008,106,30.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,0.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,0.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,25.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2008,106,10.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,0.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2008,106,4.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2008,106,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,0.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2008,106,2.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2008,106,5.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,1.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,5.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,5.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2008,106,0.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,0.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,6.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,5.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2008,106,0.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,0.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2008,106,4.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,2.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,3.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,27.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,1.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,143.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,4.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,25.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,49.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,4.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,0.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,3.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2008,106,8.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2008,106,0.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2008,106,1.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,5.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,1.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,3.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2008,106,1.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2008,106,3.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,4.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,3.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,3.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,45.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,32.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,5.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2008,106,195.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,25.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,3.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2008,106,1.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,7.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,91.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,6.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2008,106,1.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2008,106,3.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2008,106,0.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,19.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2008,106,8.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2008,106,1.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2008,106,33.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2008,106,1.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,6.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2008,106,4.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2008,106,547.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,2.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,1.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2008,106,5.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,8.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,4.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2008,106,0.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2008,106,0.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2008,106,2.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2008,106,1.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2008,106,3.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2008,106,11.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2008,106,1.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,4.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,2.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,1.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2008,106,2.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2008,106,1.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2008,106,0.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2008,106,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2008,106,3.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2008,106,2.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2008,106,2.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2008,106,2.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,1.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2008,106,4.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2008,106,0.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2008,106,3.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,42.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,0.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,2.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2008,106,2.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2008,106,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,1.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,1.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2008,106,3.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,1.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,1.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2008,106,0.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,4.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,1.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,6.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,3.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,11.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2008,106,5.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2008,106,6.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,2.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,1.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,1.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,7.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,1.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,15.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,1.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,1.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,2.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,2.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,15.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,1.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2008,106,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2008,106,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,1.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,1.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2008,106,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2008,106,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2008,106,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,1.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2008,106,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2008,106,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2008,106,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2008,106,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2008,106,0.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,1.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2008,106,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2008,106,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2008,106,3.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2008,106,1.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2008,106,1.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2008,106,8.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2008,106,6.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2008,106,0.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2008,106,0.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2008,106,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2008,106,0.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2008,106,4.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2008,106,0.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2008,106,20.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2008,106,0.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2008,106,0.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2008,106,3.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2008,106,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,0.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2008,106,4.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,1.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2008,106,65.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,2.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,0.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2008,106,2.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,2.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2008,106,0.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2008,106,0.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,1.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,5.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2008,106,0.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,1.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,0.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,0.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2008,106,0.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2008,106,3.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2008,106,1.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2008,106,3.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2008,106,3.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2008,106,0.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2008,106,6.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2008,106,3.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2008,106,0.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2008,106,2.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2008,106,517.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2008,106,0.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2008,106,6.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2008,106,9.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2008,106,2.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2008,106,11.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2008,106,1.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2008,106,1.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2008,106,0.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2008,106,24.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2008,107,14.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2008,107,24.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2008,107,4.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2008,107,11.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2008,107,0.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2008,107,1.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2008,107,68.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2008,107,4.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2008,107,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2008,107,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2008,107,37.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2008,107,313.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2008,107,8.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2008,107,30.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2008,107,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2008,107,0.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2008,107,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2008,107,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2008,107,88.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2008,107,34.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2008,107,0.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2008,107,1.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2008,107,102.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2008,107,2.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2008,107,0.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2008,107,1.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2008,107,275.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2008,107,13.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2008,107,23.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2008,107,4.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2008,107,3.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2008,107,25.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2008,107,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2008,107,2.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2008,107,1.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2008,107,1.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2008,107,127.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2008,107,10.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2008,107,2.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2008,107,15.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2008,107,7.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2008,107,6.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2008,107,15.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2008,107,12.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2008,107,6.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2008,107,9.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2008,107,7.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2008,107,29.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2008,107,30.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2008,107,9.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2008,107,23.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2008,107,14.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2008,107,203.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2008,107,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2008,107,50.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2008,107,0.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2008,107,18.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2008,107,34.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2008,107,37.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2008,107,11.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2008,107,5.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2008,107,48.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2008,107,4.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2008,107,7.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2008,107,1.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2008,107,3.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2008,107,0.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2008,107,0.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2008,107,1.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2008,107,0.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2008,107,8.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2008,107,18.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2008,107,4.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2008,107,0.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2008,107,1.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2008,107,0.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2008,107,1.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2008,107,2.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2008,107,0.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2008,107,0.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2008,107,1.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2008,107,8.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2008,107,1.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2008,107,10.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2008,107,0.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2008,107,1.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2008,107,10.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2008,107,10.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2008,107,4.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2008,107,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2008,107,0.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2008,107,0.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2008,107,1.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2008,107,0.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2008,107,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2008,107,2.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2008,107,0.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2008,107,0.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2008,107,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2008,107,0.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2008,107,6.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2008,107,1.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2008,107,1.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2008,107,1.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2008,107,0.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2008,107,2.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2008,107,7.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2008,107,8.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2008,107,6.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2008,107,1.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2008,107,183.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2008,107,5.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2008,107,17.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2008,107,6.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2008,107,3.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2008,107,1.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2008,107,3.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2008,107,6.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2008,107,1.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2008,107,2.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2008,107,2.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2008,107,2.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2008,107,2.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2008,107,1.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2008,107,0.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,17.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,1.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,0.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,0.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2008,107,11.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2008,107,2.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2008,107,2.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,1.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,3.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,0.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,2.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,14.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,7.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2008,107,17.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2008,107,1.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2008,107,6.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2008,107,7.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2008,107,104.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2008,107,1.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2008,107,1.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2008,107,0.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2008,107,1.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2008,107,1.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2008,107,2.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2008,107,2.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2008,107,11.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2008,107,1.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2008,107,0.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2008,107,4.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2008,107,1.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2008,107,0.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2008,107,2.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2008,107,1.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2008,107,3.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2008,107,0.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2008,107,2.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2008,107,2.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2008,107,5.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2008,107,2.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2008,107,2.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2008,107,0.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2008,107,0.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2008,107,6.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2008,107,0.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2008,107,5.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2008,107,0.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2008,107,4.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2008,107,2.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2008,107,6.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2008,107,3.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2008,107,7.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2008,107,55.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2008,107,8.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2008,107,1.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2008,107,1.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2008,107,0.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2008,107,3.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2008,107,2.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2008,107,0.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2008,107,6.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2008,107,0.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2008,107,4.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2008,107,9.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2008,107,3.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2008,107,198.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2008,107,1.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2008,107,3.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2008,107,4.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2008,107,6.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,3.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,9.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2008,107,3.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2008,107,0.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,3.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,3.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,0.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,10.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2008,107,67.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2008,107,3.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2008,107,6.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2008,107,7.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2008,107,24.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2008,107,0.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2008,107,2.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2008,107,1.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2008,107,1.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2008,107,0.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2008,107,8.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2008,107,566.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2008,107,103.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2008,107,2.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2008,107,36.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2008,107,0.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2008,107,10.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2008,107,6.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2008,107,32.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2008,107,2.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,0.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,2.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,9.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,104.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2008,107,20.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2008,107,23.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2008,107,56.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2008,107,0.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2008,107,13.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2008,107,2.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2008,107,4.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2008,107,14.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,0.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,194.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2008,107,37.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,0.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,0.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,27.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2008,107,4.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,0.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,2.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2008,107,10.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2008,107,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,0.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2008,107,1.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2008,107,5.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,3.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,25.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,6.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2008,107,3.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,1.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,46.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,7.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2008,107,0.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,2.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2008,107,93.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,4.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,14.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,0.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,56.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,4.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,1.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,1.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,0.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,237.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,4.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,22.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,115.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,14.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,2.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,1.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2008,107,9.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2008,107,2.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,1.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,1.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,21.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,2.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,0.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,7.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2008,107,6.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2008,107,3.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2008,107,6.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,3.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,7.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,10.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,165.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,77.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,4.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2008,107,5.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2008,107,7.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2008,107,386.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,61.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2008,107,0.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,0.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,82.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,3.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2008,107,1.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2008,107,12.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2008,107,0.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,0.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,25.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2008,107,17.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2008,107,1.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2008,107,48.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2008,107,7.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,10.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2008,107,4.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2008,107,958.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2008,107,13.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,9.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2008,107,0.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2008,107,0.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2008,107,0.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2008,107,1.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2008,107,0.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2008,107,6.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2008,107,0.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,2.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,0.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2008,107,2.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2008,107,0.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2008,107,1.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2008,107,1.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2008,107,3.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2008,107,1.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2008,107,0.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2008,107,3.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,2.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2008,107,2.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2008,107,0.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2008,107,7.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,83.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,0.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2008,107,1.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2008,107,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,1.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,2.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,2.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2008,107,2.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,4.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2008,107,2.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,8.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,0.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,5.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,8.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,4.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2008,107,2.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2008,107,12.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,4.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,1.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,12.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,9.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,1.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,3.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,18.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,5.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,2.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,19.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,3.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2008,107,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2008,107,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,1.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,1.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,1.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2008,107,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2008,107,0.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,1.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2008,107,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2008,107,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2008,107,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2008,107,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2008,107,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2008,107,0.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2008,107,0.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,1.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2008,107,0.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2008,107,2.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2008,107,1.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2008,107,1.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2008,107,16.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2008,107,8.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2008,107,3.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2008,107,0.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2008,107,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2008,107,1.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2008,107,10.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2008,107,2.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2008,107,27.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2008,107,1.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2008,107,7.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2008,107,10.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2008,107,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,5.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2008,107,9.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,0.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2008,107,113.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,2.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,7.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2008,107,5.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,4.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2008,107,3.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2008,107,0.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,1.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,4.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2008,107,0.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,2.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,2.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,0.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2008,107,0.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2008,107,1.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2008,107,37.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2008,107,7.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2008,107,9.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2008,107,0.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2008,107,12.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2008,107,4.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2008,107,0.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2008,107,2.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2008,107,707.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2008,107,0.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2008,107,4.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2008,107,10.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2008,107,12.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2008,107,62.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2008,107,2.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2008,107,0.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2008,107,1.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2008,107,15.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2008,108,101.0,486884.0,7.42152734815137,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2008,108,81.0,70605.0,1.73237019898665,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2008,108,19.0,164622.0,6.75816217923187,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2008,108,28.0,295034.0,11.7682381219386,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2008,108,15.0,70033.0,4.38129529100335,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2008,108,60.0,227590.0,9.26982519515695,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2008,108,115.0,124833.0,4.67292829251322,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2008,108,13.0,53965.0,3.68284468002737,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2008,108,0.0,126089.0,3.94762276283999,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2008,108,0.0,71911.0,1.34416836564945,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2008,108,25.0,47114.0,1.16183023040274,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2008,108,618.0,380763.0,17.1046715767463,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2008,108,11.0,54196.0,3.41244832619964,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2008,108,15.0,99247.0,0.298671596288364,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2008,108,0.0,23076.0,0.317734424087223,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2008,108,2.0,219734.0,1.03034487705299,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2008,108,0.0,123437.0,1.0959722542264,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2008,108,0.0,88278.0,2.21263016905702,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2008,108,131.0,131674.0,1.17464888872333,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2008,108,149.0,1935545.0,46.8694173259454,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2008,108,2.0,51478.0,1.65159217519564,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2008,108,3.0,154218.0,6.05931247509408,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2008,108,81.0,239203.0,2.23549524273902,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2008,108,5.0,49796.0,0.783613004658792,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2008,108,3.0,70261.0,0.375888945689903,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2008,108,1.0,155149.0,0.701954061978609,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2008,108,255.0,292491.0,4.30763109492367,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2008,108,13.0,37387.0,1.2164628374897,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2008,108,27.0,37924.0,0.511444911353078,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2008,108,8.0,44981.0,0.874203498261798,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2008,108,6.0,175802.0,1.11579732806146,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2008,108,22.0,466203.0,5.04192496926321,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2008,108,0.0,59164.0,0.654712959839727,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2008,108,2.0,111042.0,2.46147367080105,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2008,108,1.0,206517.0,6.86413052563706,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2008,108,0.0,142376.0,4.92307256260136,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2008,108,122.0,2168314.0,692.49932328011,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2008,108,17.0,273359.0,72.6146270452401,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2008,108,6.0,248166.0,41.8058608744082,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2008,108,13.0,368508.0,41.8577261635872,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2008,108,3.0,412971.0,24.7711485193964,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2008,108,9.0,256324.0,10.8139562838776,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2008,108,28.0,405951.0,14.3405280067685,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2008,108,52.0,258332.0,1.36230892253208,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2008,108,24.0,259288.0,1.14650348471942,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2008,108,43.0,310574.0,9.45473733890332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2008,108,13.0,265220.0,5.47872750745346,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2008,108,75.0,128168.0,1.05718381482479,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2008,108,68.0,249260.0,11.0891826033036,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2008,108,22.0,248800.0,12.3866565185066,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2008,108,175.0,174710.0,8.26923095640983,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2008,108,57.0,132444.0,4.24502066403236,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2008,108,24.0,29286.0,0.793942805718418,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2008,108,0.0,24438.0,1.17703981886454,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2008,108,62.0,494484.0,12.8098575140012,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2008,108,2.0,64956.0,1.39372170157934,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2008,108,81.0,185783.0,11.7781975553358,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2008,108,60.0,244103.0,9.23058143028867,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2008,108,77.0,141133.0,4.05876490794262,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2008,108,32.0,112031.0,2.17692099161081,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2008,108,56.0,134037.0,4.88847454093025,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2008,108,58.0,273576.0,12.9169010180386,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2008,108,5.0,69442.0,1.29725181358456,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2008,108,8.0,120404.0,2.55121722719529,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2008,108,2.0,188503.0,19.9777794419304,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2008,108,9.0,1249141.0,874.436127837955,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2008,108,1.0,164929.0,25.6344773135601,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2008,108,0.0,159238.0,14.7672987456237,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2008,108,2.0,537808.0,31.2300081585046,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2008,108,2.0,185416.0,26.2946984464304,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2008,108,0.0,208303.0,9.65537056255654,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2008,108,8.0,599586.0,16.6586380563087,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2008,108,9.0,545711.0,18.6737746024861,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2008,108,3.0,398763.0,36.3012838535442,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2008,108,13.0,296376.0,8.04481798293391,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2008,108,2.0,185501.0,28.3675340175524,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2008,108,1.0,132044.0,21.8876271506846,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2008,108,0.0,208916.0,19.3607494265452,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2008,108,1.0,256054.0,25.7697638337958,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2008,108,0.0,84209.0,23.3914863761671,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2008,108,7.0,401375.0,26.1621989183638,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2008,108,7.0,207901.0,8.3176671145923,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2008,108,5.0,100120.0,7.03974032970274,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2008,108,6.0,128451.0,3.51981999717369,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2008,108,1.0,67194.0,3.95825470069045,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2008,108,0.0,331472.0,26.5885390907438,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2008,108,0.0,300492.0,30.8819064685212,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2008,108,12.0,979529.0,106.724815416653,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2008,108,1.0,227193.0,9.32847184799048,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2008,108,0.0,133098.0,16.0149168162934,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2008,108,0.0,105841.0,7.87945293088412,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2008,108,0.0,43035.0,1.68963676878325,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2008,108,0.0,41722.0,3.75400168289529,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2008,108,2.0,123244.0,6.68378449223353,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2008,108,0.0,85997.0,3.11365476815666,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2008,108,14.0,138546.0,5.03488438605934,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2008,108,2.0,85443.0,4.79025104561092,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2008,108,0.0,201291.0,19.5443226086881,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2008,108,0.0,57762.0,13.3937842293095,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2008,108,2.0,265032.0,8.40462448509725,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2008,108,8.0,360295.0,41.6861329311684,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,295914.0,58.4390628214582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2008,108,0.0,57432.0,27.7228928111002,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2008,108,0.0,23362.0,86.5365029816873,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2008,108,5.0,373857.0,45.3627002932033,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2008,108,3.0,139511.0,33.0253449221658,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2008,108,6.0,74996.0,12.4954984200658,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2008,108,10.0,202947.0,54.6790370160982,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,103930.0,72.5064450349818,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2008,108,2.0,100200.0,95.46559510572,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2008,108,7.0,84383.0,27.9304495927105,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2008,108,20.0,126395.0,23.7975310092413,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2008,108,11.0,186158.0,69.1956779250796,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,62398.0,48.1152131555664,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,133225.0,52.4012646467869,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2008,108,238.0,3345525.0,991.665790344948,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,110769.0,278.977651322657,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2008,108,29.0,248956.0,19.4227998678428,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2008,108,12.0,270488.0,22.6202950676373,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2008,108,24.0,146535.0,12.504610052312,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2008,108,0.0,221452.0,22.6385481589503,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,110633.0,51.3798857091793,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2008,108,4.0,316500.0,31.8751233345052,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2008,108,1.0,65025.0,15.1546377252415,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2008,108,18.0,44761.0,21.8123645832398,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2008,108,10.0,225093.0,47.3435732677675,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2008,108,1.0,98253.0,27.728206012994,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2008,108,4.0,56404.0,34.8751042376117,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2008,108,0.0,97548.0,21.9519742005525,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2008,108,8.0,58700.0,45.5663608388932,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2008,108,0.0,90442.0,33.9778086652472,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2008,108,2.0,523136.0,114.83031864735,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2008,108,4.0,95304.0,49.1339089537174,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,34.0,313769.0,75.1106383572227,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,2.0,74576.0,18.2254385096254,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,4.0,39143.0,13.6859536864112,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,11.0,138890.0,29.0167999340683,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2008,108,71.0,64765.0,65.3141976171814,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2008,108,8.0,115517.0,43.4568366631682,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2008,108,1.0,66289.0,40.6303471227203,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,25.0,52544.0,27.5775579179443,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,8.0,51977.0,12.7455380697595,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,7.0,61898.0,20.5590876583014,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,1.0,97959.0,31.950864329227,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,24.0,120584.0,31.9676659826967,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,0.0,60696.0,31.7509074545142,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2008,108,26.0,134255.0,34.1726974764172,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2008,108,4.0,229045.0,65.3999360379993,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2008,108,10.0,83149.0,32.6145545901986,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2008,108,14.0,274317.0,132.213100117766,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2008,108,183.0,999357.0,2283.37626533994,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2008,108,4.0,127700.0,92.0233448527845,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2008,108,6.0,115164.0,37.777235234088,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2008,108,10.0,168609.0,49.7123822170966,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2008,108,4.0,183248.0,38.1395454941653,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2008,108,1.0,126602.0,49.6739550226075,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2008,108,3.0,74580.0,22.6454654170983,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,85622.0,28.1027035922014,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2008,108,2.0,117242.0,45.1326459120993,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2008,108,3.0,39442.0,22.535093564063,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2008,108,1.0,73031.0,27.977096092534,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2008,108,10.0,123334.0,17.6713096859035,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2008,108,2.0,63789.0,15.1473728409988,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2008,108,0.0,118048.0,30.2113338389954,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,96853.0,73.2573215483068,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,52927.0,197.604138600731,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,119323.0,101.134759650189,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,167752.0,130.038754703057,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,498947.0,236.835899046448,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,111006.0,65.7819772483826,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2008,108,0.0,55352.0,46.7967503418409,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2008,108,0.0,141458.0,71.1724269314413,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2008,108,5.0,130912.0,116.921811930111,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2008,108,2.0,997167.0,798.89245249282,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2008,108,0.0,82198.0,94.9327892293224,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2008,108,3.0,310427.0,26.8997318020785,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2008,108,0.0,162141.0,18.5073545402622,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2008,108,6.0,321308.0,36.4031407537548,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2008,108,1.0,209345.0,23.7968118554377,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2008,108,7.0,426818.0,28.5125042072672,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2008,108,3.0,133847.0,14.0654433450006,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2008,108,1.0,175841.0,32.3784473990933,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2008,108,6.0,821052.0,104.424316613423,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2008,108,3.0,256897.0,143.106439649672,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2008,108,2.0,250332.0,143.028961749853,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2008,108,1.0,445207.0,86.9579213719958,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2008,108,3.0,223634.0,87.355540170471,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2008,108,9.0,516646.0,175.853300886351,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2008,108,1.0,206255.0,219.748256257367,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2008,108,3.0,539713.0,119.256026439885,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2008,108,7.0,158315.0,293.965518675084,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2008,108,39.0,3329359.0,2661.21581140111,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2008,108,19.0,244045.0,252.693911901265,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2008,108,0.0,3012.0,231.795040587217,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2008,108,0.0,92148.0,35.0866160659724,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2008,108,1.0,81030.0,59.3393375760147,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2008,108,1.0,171003.0,55.7994473345349,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2008,108,2.0,94144.0,52.1395129440263,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2008,108,3.0,179429.0,75.0239510684071,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2008,108,12.0,405859.0,167.318165162568,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2008,108,0.0,37626.0,40.2099321441841,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2008,108,0.0,150303.0,81.5681531216735,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2008,108,5.0,313143.0,79.3993277647416,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2008,108,1.0,66496.0,66.0641744320148,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2008,108,191.0,1129811.0,630.879246267101,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2008,108,3.0,281267.0,94.676175389905,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2008,108,4.0,125298.0,73.2132428567516,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2008,108,4.0,152143.0,27.9380830851165,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2008,108,0.0,66038.0,35.3625981273586,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,2.0,63138.0,50.8830764176706,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,4.0,159141.0,140.664283653496,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2008,108,2.0,108686.0,53.9548835972524,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2008,108,1.0,111263.0,73.7942112392192,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,22.0,92764.0,87.9452356983927,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,4.0,44915.0,58.6635276764357,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,4.0,54073.0,37.7931834741425,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,12.0,85569.0,115.511447823274,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2008,108,77.0,784036.0,898.702963550957,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2008,108,3.0,154285.0,83.9219471289237,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2008,108,2.0,123323.0,60.9283567485297,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2008,108,14.0,274496.0,5.19341362640761,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2008,108,12.0,118413.0,5.2344259137369,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2008,108,2.0,185645.0,4.42129092323229,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2008,108,13.0,498707.0,9.11469622990064,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2008,108,2.0,164628.0,13.2130777479627,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2008,108,6.0,175030.0,5.37538651112658,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2008,108,3.0,176339.0,12.214087625517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2008,108,8.0,289579.0,17.4188310478568,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2008,108,305.0,388421.0,21.2998978471168,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2008,108,41.0,337357.0,17.9289782314577,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2008,108,3.0,258977.0,15.7275943435513,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2008,108,16.0,1020142.0,80.0419039543192,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2008,108,1.0,105010.0,13.0997426082421,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2008,108,20.0,305669.0,16.3541419349685,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2008,108,5.0,316356.0,36.5642698962792,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2008,108,32.0,420734.0,39.5114229102639,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2008,108,1.0,305578.0,53.1694031529896,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,0.0,114395.0,26.1389050547373,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,2.0,206396.0,75.0936346981479,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,3.0,542202.0,95.1054000740316,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,147.0,3687316.0,1275.68637038776,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2008,108,79.0,192202.0,11.9524453267108,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2008,108,5.0,261329.0,12.5966825482371,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2008,108,310.0,531173.0,30.8788403163073,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2008,108,0.0,98736.0,19.1948162843433,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2008,108,39.0,380175.0,16.2181087754536,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2008,108,0.0,240771.0,15.6948873499302,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2008,108,16.0,633326.0,33.6607886040442,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2008,108,16.0,212163.0,18.816843206873,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,0.0,255933.0,44.4850650197426,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,152.0,1099874.0,51.7445417625026,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2008,108,45.0,705503.0,25.4562496630608,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,0.0,147179.0,5.37027134693841,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,0.0,216449.0,6.18261317043278,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,20.0,280206.0,8.43693581333956,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2008,108,5.0,251351.0,16.714647999856,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,6.0,216489.0,12.1384974266805,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,7.0,165668.0,7.19630344254152,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2008,108,10.0,606401.0,27.1441764262278,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,0.0,43546.0,4.8056578392614,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,0.0,68502.0,8.65517376417673,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2008,108,0.0,85570.0,11.5820643126169,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,1.0,204361.0,17.009286140924,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2008,108,1.0,160101.0,15.589507993075,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2008,108,9.0,86822.0,17.192800065346,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,4.0,181954.0,11.7716681922523,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,3.0,265766.0,22.8750614811711,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,5.0,122129.0,14.3983192163512,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,17.0,141092.0,16.1597069352213,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,9.0,840286.0,44.7253513527784,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2008,108,0.0,201631.0,16.858132371908,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,1.0,255396.0,23.8151506968234,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,18.0,179948.0,10.6568206122868,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,5.0,340748.0,36.5161310755472,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2008,108,3.0,199946.0,14.211381400598,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,1.0,97652.0,9.22744449621698,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2008,108,170.0,150211.0,10.9598565619063,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,33.0,164290.0,21.9391187779718,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,19.0,406025.0,47.5270532320724,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,0.0,89419.0,13.1152961155035,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,1.0,122254.0,69.0557263575496,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,79.0,4932777.0,846.348468295692,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,3.0,384348.0,47.7212167206591,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,1.0,61864.0,25.5900027482103,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,170614.0,54.1314328227681,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,3.0,244412.0,82.4719121947235,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,0.0,133672.0,23.206593317654,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,0.0,86469.0,18.869919930829,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,117.0,418659.0,36.9932217425256,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,12.0,63900.0,34.5450032053186,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,62.0,525008.0,120.656462925375,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,16.0,254474.0,45.9449562233705,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,28.0,150741.0,18.0871289462984,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,3.0,81359.0,10.5740619795489,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,0.0,472696.0,93.0933411220053,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2008,108,3.0,154264.0,33.7823249582902,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,2.0,115461.0,42.8680516910057,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,1.0,127400.0,31.7635423155264,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2008,108,0.0,226823.0,31.9789254349704,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,2.0,262976.0,50.8430795710937,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,226963.0,45.3941400625366,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,2.0,442577.0,58.4162172388127,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,339262.0,73.2355903469148,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,317487.0,64.5587141506996,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,139637.0,42.6252063191445,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,212115.0,55.1567224700374,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,74714.0,14.8267386428397,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,189969.0,63.7099479178632,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,149409.0,43.2192641046214,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,184083.0,31.974019796876,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,224882.0,67.0057267528243,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,4.0,193460.0,39.7675127926596,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,1.0,266487.0,55.08659003557,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,1.0,229160.0,47.496018138459,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,16.0,275845.0,58.2477785719267,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2008,108,5.0,268001.0,74.4839877246367,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2008,108,2.0,738608.0,82.6801678159233,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2008,108,7.0,218104.0,55.8482831562566,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,14.0,89075.0,22.0404308799999,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,45.0,122140.0,33.3002273299299,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,24.0,194465.0,44.8026525905553,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,217.0,55454.0,18.8060849686951,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,113.0,175005.0,37.8112081947244,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,25.0,290258.0,41.768108732015,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2008,108,4.0,130745.0,34.0921929449816,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2008,108,10.0,102686.0,31.2566682218092,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2008,108,703.0,1545090.0,1082.78214572038,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,84.0,178095.0,84.6553971264273,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2008,108,0.0,154221.0,44.6133800077181,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,13.0,340923.0,82.8455572819681,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2008,108,0.0,75491.0,59.5593141244493,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,6.0,198402.0,63.2686317996478,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,1.0,122895.0,54.8312092092664,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,75.0,560993.0,78.3230111459858,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,8.0,240278.0,93.0596896898862,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2008,108,1.0,154978.0,93.5926319805019,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2008,108,4.0,63633.0,50.2420510366593,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2008,108,1.0,230584.0,110.784102602084,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2008,108,0.0,29688.0,16.3705244588855,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,3.0,143054.0,87.2085415153709,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,21.0,515260.0,262.739507810097,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2008,108,22.0,693512.0,181.84218988411,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2008,108,8.0,186166.0,78.6222623837784,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2008,108,159.0,199373.0,119.232400479357,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2008,108,8.0,161422.0,102.92778996931,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2008,108,1.0,493146.0,276.275977398272,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,4.0,111125.0,78.3725364670145,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2008,108,18.0,212981.0,242.479842912685,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2008,108,2125.0,11554872.0,2537.60576200871,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,4.0,151202.0,38.3872041074432,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,1.0,103343.0,36.7299682061584,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2008,108,17.0,133951.0,41.758524616393,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,11.0,764961.0,73.3959509894973,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,0.0,223788.0,98.7307719203852,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,1.0,46880.0,20.4207417034783,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,0.0,64063.0,31.8866475591782,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,1.0,77950.0,32.1966553711755,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2008,108,4.0,136777.0,50.3564457274027,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2008,108,6.0,206004.0,37.1524556849486,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2008,108,0.0,97004.0,48.1142808743601,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2008,108,1.0,395383.0,114.755590469021,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2008,108,2.0,412290.0,86.8880892847047,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2008,108,42.0,977446.0,162.732432106813,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2008,108,0.0,106374.0,34.5697000789924,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,2.0,180507.0,26.2694702990723,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,1.0,254812.0,47.4548446082202,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,2.0,259566.0,57.6490029610991,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,1.0,162883.0,42.0736278305808,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2008,108,6.0,578243.0,68.117527793246,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2008,108,0.0,354285.0,87.7282976871575,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2008,108,2.0,178242.0,30.2032017921869,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2008,108,0.0,208681.0,47.8867171026572,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2008,108,33.0,492583.0,78.4080302727595,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2008,108,1.0,303595.0,95.7281517912163,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2008,108,0.0,245713.0,83.421825584252,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2008,108,2.0,569497.0,244.951241568934,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,8.0,551160.0,145.839974093825,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2008,108,0.0,186327.0,105.655894994595,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2008,108,2.0,413843.0,76.2558117784325,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2008,108,21.0,385188.0,164.850889754653,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,107.0,2573019.0,827.60023104417,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,173697.0,108.548439567424,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,0.0,117442.0,40.96214013002,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,2.0,161627.0,44.0377312520364,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2008,108,5.0,577652.0,33.0218537783006,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,1.0,112046.0,48.7062839834195,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,1.0,336847.0,68.9325825181598,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,0.0,271811.0,38.067039350844,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,0.0,291864.0,52.4419137612224,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2008,108,0.0,247073.0,32.1169914352634,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,0.0,193984.0,52.0567791763867,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,2.0,252240.0,113.004744222458,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,139676.0,21.2077881947613,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,184187.0,44.4559961635247,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,8.0,1292076.0,304.442442727494,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,2.0,600955.0,747.28316157485,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,4.0,482164.0,153.626414301287,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,68334.0,67.2016402783203,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,1.0,1381846.0,343.937967837879,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2008,108,3.0,412636.0,152.624148554007,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,27262.0,13.0101901915648,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,0.0,73598.0,16.6490133499514,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,3.0,272218.0,142.844213021471,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,0.0,250663.0,22.4681667382132,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2008,108,2.0,212623.0,104.295396057803,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,15.0,1867199.0,2752.33147289298,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,3.0,448669.0,752.342004218092,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,3.0,1404807.0,1807.14476617484,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,4.0,960279.0,654.304256395918,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,40.0,13574264.0,5752.22704240417,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2008,108,6.0,1360842.0,660.979416828303,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2008,108,9.0,1465494.0,1076.18049240061,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,2.0,269253.0,26.4686716952949,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,1.0,264857.0,25.8180088968402,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,1.0,140930.0,34.8003898673788,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,120465.0,24.8000619941581,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,218856.0,30.9297959075837,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,16.0,182835.0,35.7710832618731,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,44.0,83480.0,35.299014457944,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,1.0,33982.0,26.0971657091517,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,5.0,515381.0,331.19897134861,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,1.0,282504.0,124.711995408568,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,28.0,718740.0,204.417814140798,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,46427.0,20.3946650256583,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,145937.0,23.6747693030271,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,1.0,72343.0,32.0335099322579,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,181745.0,40.1536732290045,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,125114.0,45.3564352950631,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,79320.0,26.0980959258544,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,97653.0,30.913590912368,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,160790.0,16.998923580654,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,104123.0,18.2923739403361,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,428397.0,64.1360184794032,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,373201.0,42.712555077544,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,437828.0,51.1972037030873,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,21.0,470799.0,84.794245595715,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,95878.0,41.2599330915853,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,238779.0,44.1194173075937,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,157566.0,40.3674856229594,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,80041.0,16.2680041277107,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,1.0,390025.0,24.0759198427888,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,92287.0,17.0716650234017,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,130794.0,21.5294201249138,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,1.0,97181.0,34.2380951256778,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,120808.0,22.0958662193795,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,62742.0,24.7987244361697,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,31472.0,9.11289891414035,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,47247.0,20.5545391779486,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,8.0,3147183.0,369.276866151107,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2008,108,0.0,255173.0,41.864857271083,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2008,108,0.0,88033.0,35.9736829176395,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,177051.0,41.5399264029266,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,1.0,399432.0,66.3219902278237,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,150531.0,31.0495218541207,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,320673.0,35.4983756628508,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,144506.0,45.9444067593781,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,246293.0,26.193241015658,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,131281.0,68.766302015117,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,3.0,795570.0,171.359617192656,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,121522.0,18.4518855062568,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,298246.0,18.9426625794559,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,201698.0,38.0899153109665,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,645017.0,136.3218778156,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,2.0,515465.0,335.651289619829,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,55127.0,36.2411168534107,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,86585.0,40.6458504330114,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,1.0,836139.0,288.588653159082,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2008,108,0.0,24078.0,10.2648644421122,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,369235.0,79.7372468294431,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,0.0,359564.0,170.125721236009,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2008,108,1.0,174574.0,58.7523764366807,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,157242.0,45.4805640288357,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,148111.0,38.8525528723341,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,182320.0,35.0079800012513,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,217218.0,38.3077506124825,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2008,108,0.0,62464.0,20.2968919486516,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,67893.0,30.5847730835728,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,201798.0,18.6372581749388,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,186632.0,36.6446273810776,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,163750.0,33.5159455260997,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2008,108,0.0,329630.0,46.5741893522809,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,154802.0,18.3865077872295,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,42843.0,28.5865819096229,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2008,108,0.0,74860.0,20.7408177597942,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2008,108,0.0,130230.0,35.8793684948404,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2008,108,0.0,163115.0,9.46603592513105,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2008,108,0.0,742317.0,149.25788662921,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,115432.0,10.2883443059803,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,372105.0,31.7138083797067,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,64812.0,21.5812871876673,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,1.0,326257.0,58.6793996853329,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,306761.0,75.8166225829892,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,157985.0,20.8231053910414,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,0.0,199216.0,96.1713636942766,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2008,108,1.0,300643.0,115.319744553263,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,143859.0,29.477229823405,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,3708270.0,661.930829084233,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,338697.0,38.5224049219001,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,130912.0,22.2515442671256,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,368556.0,11.8590711153064,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,188179.0,10.8808626214318,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,173749.0,12.1972446962736,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,119079.0,7.25249754518694,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,502375.0,48.6211273488342,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,0.0,54340.0,8.57499204931978,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2008,108,1.0,258762.0,27.9382663476916,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2008,108,9.0,133023.0,1.60206231371075,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2008,108,0.0,103587.0,3.73360313881059,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2008,108,2.0,116039.0,2.78504393572983,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2008,108,16.0,827433.0,29.2905422125354,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2008,108,2.0,57211.0,3.5568040909755,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2008,108,0.0,74701.0,4.34657086168128,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2008,108,2.0,141873.0,3.00235535759164,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2008,108,0.0,86969.0,6.45727439959153,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2008,108,3.0,105179.0,4.65842433222232,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2008,108,7.0,470946.0,12.5946985587865,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2008,108,1.0,219097.0,9.74547356935224,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2008,108,52.0,138842.0,1.11958659138703,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2008,108,25.0,105214.0,2.04690084500655,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2008,108,61.0,148506.0,3.4725228903612,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2008,108,16.0,80843.0,1.35643564534632,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2008,108,0.0,77972.0,1.41976837803798,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,13.0,162055.0,2.9710347112591,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2008,108,28.0,173010.0,3.45726247914468,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,2.0,34722.0,0.742493281612495,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2008,108,110.0,107598.0,1.26672772184778,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,3.0,95478.0,1.58075498474299,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,32.0,63959.0,1.99940049383222,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2008,108,11.0,64758.0,2.06497063373803,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,18.0,148825.0,6.66683450695479,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2008,108,10.0,107665.0,5.70289417721327,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2008,108,0.0,30107.0,4.49268412576411,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,39.0,32555.0,3.52501085731932,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,35.0,833370.0,30.183616823106,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2008,108,4.0,131700.0,2.46991566555814,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,0.0,73462.0,7.16478259402847,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,12.0,55021.0,2.03196315094746,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,4.0,261980.0,10.7370549342035,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2008,108,1.0,30090.0,2.80857553392478,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2008,108,6.0,79369.0,3.2555793761105,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2008,108,19.0,88304.0,4.36124466776027,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2008,108,3.0,55201.0,4.99393045971088,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2008,108,44.0,226916.0,6.45426613029599,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2008,108,1.0,62777.0,2.94747105372726,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2008,108,34.0,223083.0,16.9528355820762,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2008,108,41.0,530458.0,63.394666152735,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2008,108,0.0,60187.0,8.5112587940769,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2008,108,1.0,103763.0,19.003255049915,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2008,108,1041.0,2089437.0,309.32032696086,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2008,108,6.0,107744.0,6.19969026480149,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2008,108,11.0,1004910.0,26.3364825821627,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2008,108,25.0,417536.0,7.44837216239044,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2008,108,11.0,111538.0,8.19925914906056,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2008,108,35.0,352205.0,16.6755274637559,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2008,108,2.0,93758.0,9.84239547982,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2008,108,2.0,139493.0,9.15979287103629,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2008,108,3.0,98317.0,6.11599198652247,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2008,108,44.0,2557158.0,442.089639328252,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2009,109,56.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2009,109,167.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2009,109,66.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2009,109,89.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2009,109,120.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2009,109,29.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2009,109,221.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2009,109,29.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2009,109,4.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2009,109,3.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2009,109,48.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2009,109,2926.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2009,109,63.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2009,109,36.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2009,109,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2009,109,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2009,109,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2009,109,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2009,109,123.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2009,109,108.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2009,109,2.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2009,109,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2009,109,111.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2009,109,7.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2009,109,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2009,109,0.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2009,109,588.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2009,109,25.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2009,109,21.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2009,109,37.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2009,109,13.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2009,109,42.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2009,109,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2009,109,4.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2009,109,2.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2009,109,4.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2009,109,307.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2009,109,64.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2009,109,10.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2009,109,62.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2009,109,9.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2009,109,35.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2009,109,26.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2009,109,32.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2009,109,5.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2009,109,25.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2009,109,50.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2009,109,56.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2009,109,41.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2009,109,53.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2009,109,82.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2009,109,43.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2009,109,169.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2009,109,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2009,109,227.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2009,109,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2009,109,46.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2009,109,104.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2009,109,120.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2009,109,13.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2009,109,6.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2009,109,91.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2009,109,12.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2009,109,5.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2009,109,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2009,109,11.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2009,109,1.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2009,109,3.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2009,109,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2009,109,5.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2009,109,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2009,109,14.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2009,109,37.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2009,109,5.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2009,109,13.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2009,109,2.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2009,109,2.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2009,109,2.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2009,109,0.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2009,109,3.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2009,109,18.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2009,109,20.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2009,109,5.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2009,109,7.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2009,109,0.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2009,109,3.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2009,109,3.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2009,109,40.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2009,109,4.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2009,109,1.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2009,109,3.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2009,109,1.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2009,109,0.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2009,109,3.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2009,109,3.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2009,109,61.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2009,109,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2009,109,5.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2009,109,1.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2009,109,4.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2009,109,10.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2009,109,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2009,109,12.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2009,109,4.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2009,109,4.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2009,109,24.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2009,109,6.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2009,109,4.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2009,109,485.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2009,109,5.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2009,109,21.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2009,109,2.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2009,109,3.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2009,109,10.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2009,109,0.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2009,109,3.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2009,109,0.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2009,109,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2009,109,1.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2009,109,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2009,109,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2009,109,0.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2009,109,16.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2009,109,1.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2009,109,4.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2009,109,3.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,16.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,1.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,1.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,4.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2009,109,0.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2009,109,0.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2009,109,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,1.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,0.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,0.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,15.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,0.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2009,109,16.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2009,109,4.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2009,109,1.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2009,109,17.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2009,109,131.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2009,109,2.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2009,109,4.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2009,109,1.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2009,109,1.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2009,109,0.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2009,109,0.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2009,109,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2009,109,3.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2009,109,2.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2009,109,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2009,109,12.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2009,109,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2009,109,2.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2009,109,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2009,109,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2009,109,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2009,109,5.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2009,109,1.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2009,109,1.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2009,109,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2009,109,3.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2009,109,1.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2009,109,13.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2009,109,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2009,109,1.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2009,109,14.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2009,109,12.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2009,109,0.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2009,109,1.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2009,109,0.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2009,109,1.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2009,109,15.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2009,109,2.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2009,109,3.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2009,109,1.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2009,109,4.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2009,109,5.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2009,109,4.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2009,109,3.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2009,109,6.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2009,109,51.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2009,109,5.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2009,109,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2009,109,0.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2009,109,0.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2009,109,3.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2009,109,0.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2009,109,5.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2009,109,12.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2009,109,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2009,109,7.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2009,109,8.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2009,109,0.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2009,109,199.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2009,109,1.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2009,109,8.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2009,109,2.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2009,109,4.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,4.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,4.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2009,109,5.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2009,109,0.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,0.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,1.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,2.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,12.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2009,109,54.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2009,109,11.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2009,109,4.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2009,109,61.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2009,109,28.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2009,109,10.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2009,109,2.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2009,109,0.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2009,109,46.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2009,109,56.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2009,109,38.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2009,109,672.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2009,109,506.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2009,109,45.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2009,109,118.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2009,109,4.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2009,109,59.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2009,109,82.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2009,109,413.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2009,109,6.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,1.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,11.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,25.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,283.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2009,109,75.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2009,109,119.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2009,109,2570.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2009,109,0.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2009,109,53.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2009,109,6.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2009,109,401.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2009,109,546.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,2.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,776.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2009,109,186.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,0.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,1.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,59.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2009,109,13.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,2.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,5.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2009,109,16.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,0.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2009,109,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,1.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2009,109,8.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2009,109,14.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,108.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,14.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,34.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,102.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,24.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2009,109,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,2.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,258.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,20.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2009,109,6.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,3.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2009,109,213.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,4.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,65.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,1.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,1.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,507.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,9.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,5.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,13.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,1.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,496.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,22.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,596.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,92.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,184.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,38.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,1.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2009,109,6.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,1.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2009,109,5.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,5.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2009,109,4.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,2.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,21.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,4.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,2.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,34.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2009,109,6.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2009,109,11.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2009,109,19.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,14.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,455.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,764.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,720.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,278.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,35.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2009,109,9.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2009,109,8.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2009,109,648.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,113.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2009,109,2.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,13.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2009,109,2.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,15.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,9.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,97.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,37.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2009,109,9.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2009,109,13.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2009,109,1.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2009,109,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,8.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,26.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2009,109,32.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2009,109,70.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2009,109,118.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2009,109,2.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2009,109,5.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,4.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2009,109,12.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2009,109,1295.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,2.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,102.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2009,109,45.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,71.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,3.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,20.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,2.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,0.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2009,109,3.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2009,109,1.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2009,109,0.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2009,109,5.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2009,109,6.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2009,109,51.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2009,109,1.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,0.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,2.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,1.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2009,109,1.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2009,109,4.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2009,109,1.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2009,109,2.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2009,109,7.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2009,109,2.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2009,109,1.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2009,109,20.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,25.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2009,109,3.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2009,109,0.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2009,109,15.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,91.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,0.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,1.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,1.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2009,109,3.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,0.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,0.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,1.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,1.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2009,109,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,2.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,5.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,1.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,43.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,7.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,6.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,6.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2009,109,2.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,5.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,1.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2009,109,2.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,33.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,1.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,11.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,10.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,184.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2009,109,12.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2009,109,10.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,4.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,8.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,4.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,1.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,12.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,19.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,9.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,4.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,25.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,1.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,1.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,1.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,1.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,1.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,1.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,11.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,1.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,19.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,25.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2009,109,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2009,109,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,3.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,1.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,3.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,6.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2009,109,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2009,109,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2009,109,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,4.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2009,109,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2009,109,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2009,109,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2009,109,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2009,109,2.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,1.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,1.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,1.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2009,109,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,1.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2009,109,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2009,109,43.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2009,109,5.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2009,109,5.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2009,109,20.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2009,109,0.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2009,109,2.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2009,109,3.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2009,109,0.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2009,109,11.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2009,109,6.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2009,109,1.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2009,109,66.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2009,109,5.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2009,109,13.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2009,109,23.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2009,109,3.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,46.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2009,109,17.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,4.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2009,109,110.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,50.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,30.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2009,109,8.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,68.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2009,109,46.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2009,109,6.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,186.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,106.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2009,109,33.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,1.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,5.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,6.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2009,109,0.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2009,109,6.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2009,109,60.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2009,109,13.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2009,109,51.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2009,109,0.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2009,109,81.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2009,109,49.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2009,109,8.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2009,109,3.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2009,109,1790.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2009,109,36.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2009,109,26.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2009,109,36.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2009,109,5.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2009,109,162.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2009,109,1.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2009,109,1.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2009,109,0.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2009,109,82.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2009,110,57.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2009,110,192.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2009,110,173.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2009,110,214.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2009,110,209.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2009,110,50.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2009,110,273.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2009,110,73.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2009,110,9.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2009,110,3.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2009,110,18.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2009,110,6028.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2009,110,81.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2009,110,10.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2009,110,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2009,110,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2009,110,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2009,110,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2009,110,54.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2009,110,124.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2009,110,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2009,110,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2009,110,14.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2009,110,7.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2009,110,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2009,110,4.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2009,110,535.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2009,110,25.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2009,110,58.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2009,110,80.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2009,110,92.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2009,110,91.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2009,110,2.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2009,110,4.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2009,110,9.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2009,110,21.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2009,110,467.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2009,110,42.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2009,110,25.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2009,110,35.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2009,110,11.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2009,110,56.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2009,110,54.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2009,110,75.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2009,110,1.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2009,110,116.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2009,110,68.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2009,110,46.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2009,110,72.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2009,110,42.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2009,110,104.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2009,110,39.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2009,110,132.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2009,110,1.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2009,110,218.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2009,110,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2009,110,84.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2009,110,91.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2009,110,83.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2009,110,11.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2009,110,3.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2009,110,90.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2009,110,12.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2009,110,13.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2009,110,2.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2009,110,14.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2009,110,9.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2009,110,3.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2009,110,1.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2009,110,2.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2009,110,1.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2009,110,26.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2009,110,84.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2009,110,23.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2009,110,19.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2009,110,9.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2009,110,0.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2009,110,1.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2009,110,3.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2009,110,1.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2009,110,15.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2009,110,22.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2009,110,6.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2009,110,6.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2009,110,6.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2009,110,10.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2009,110,8.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2009,110,65.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2009,110,4.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2009,110,1.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2009,110,4.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2009,110,2.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2009,110,1.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2009,110,3.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2009,110,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2009,110,29.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2009,110,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2009,110,2.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2009,110,20.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2009,110,7.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2009,110,28.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2009,110,3.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2009,110,7.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2009,110,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2009,110,62.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2009,110,1.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2009,110,8.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2009,110,2.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2009,110,6.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2009,110,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2009,110,3.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2009,110,40.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2009,110,14.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2009,110,6.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2009,110,2.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2009,110,862.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2009,110,6.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2009,110,81.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2009,110,11.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2009,110,9.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2009,110,62.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2009,110,11.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2009,110,10.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2009,110,0.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2009,110,1.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2009,110,6.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2009,110,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2009,110,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2009,110,2.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2009,110,38.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2009,110,3.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2009,110,3.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2009,110,3.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,18.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,5.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,1.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,3.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2009,110,0.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2009,110,3.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2009,110,2.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,0.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,0.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,0.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,1.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,36.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,3.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2009,110,10.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2009,110,3.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2009,110,5.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2009,110,11.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2009,110,145.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2009,110,2.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2009,110,17.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2009,110,2.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2009,110,2.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2009,110,1.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2009,110,2.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2009,110,1.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2009,110,2.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2009,110,7.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2009,110,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2009,110,5.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2009,110,1.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2009,110,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2009,110,2.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2009,110,1.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2009,110,1.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2009,110,1.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2009,110,0.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2009,110,2.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2009,110,1.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2009,110,1.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2009,110,3.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2009,110,8.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2009,110,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2009,110,2.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2009,110,9.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2009,110,18.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2009,110,3.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2009,110,4.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2009,110,0.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2009,110,3.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2009,110,20.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2009,110,2.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2009,110,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2009,110,3.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2009,110,3.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2009,110,6.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2009,110,3.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2009,110,7.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2009,110,7.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2009,110,83.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2009,110,3.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2009,110,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2009,110,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2009,110,0.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2009,110,1.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2009,110,0.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2009,110,3.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2009,110,25.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2009,110,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2009,110,3.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2009,110,16.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2009,110,0.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2009,110,208.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2009,110,1.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2009,110,9.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2009,110,5.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2009,110,1.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,2.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,8.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2009,110,6.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2009,110,5.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,5.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,1.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,3.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,10.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2009,110,69.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2009,110,6.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2009,110,8.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2009,110,236.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2009,110,137.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2009,110,66.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2009,110,4.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2009,110,5.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2009,110,175.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2009,110,74.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2009,110,71.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2009,110,1638.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2009,110,887.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2009,110,123.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2009,110,386.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2009,110,17.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2009,110,145.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2009,110,126.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2009,110,927.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2009,110,4.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,3.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,8.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,142.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,616.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2009,110,106.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2009,110,240.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2009,110,3802.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2009,110,8.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2009,110,184.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2009,110,1.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2009,110,325.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2009,110,802.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,18.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,4099.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2009,110,886.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,1.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,2.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,56.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2009,110,113.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,0.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,4.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2009,110,20.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,3.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2009,110,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,2.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2009,110,20.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2009,110,34.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,123.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,4.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,142.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,198.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,86.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2009,110,1.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,9.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,395.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,21.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2009,110,2.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,15.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2009,110,243.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,32.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,264.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,1.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,1491.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,31.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,1.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,4.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,31.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,635.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,15.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,1606.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,247.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,309.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,88.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,8.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2009,110,41.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,4.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2009,110,1.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,1.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2009,110,0.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,2.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,1.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,49.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,9.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,3.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,104.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2009,110,10.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2009,110,23.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2009,110,22.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,8.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,1210.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,861.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,791.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,176.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,106.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2009,110,11.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2009,110,4.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2009,110,2489.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,77.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2009,110,4.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,16.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2009,110,3.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,12.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,63.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,50.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2009,110,2.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2009,110,12.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2009,110,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2009,110,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,5.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,22.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2009,110,23.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2009,110,108.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2009,110,31.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2009,110,7.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2009,110,1.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,2.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2009,110,9.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2009,110,1421.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,9.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,51.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2009,110,50.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,113.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,6.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,6.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,3.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,1.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2009,110,5.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2009,110,7.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2009,110,5.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2009,110,4.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2009,110,5.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2009,110,112.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2009,110,0.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,8.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,5.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,6.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2009,110,1.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2009,110,1.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2009,110,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2009,110,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2009,110,15.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2009,110,2.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2009,110,1.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2009,110,4.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,26.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2009,110,2.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2009,110,0.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2009,110,5.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,152.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,1.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,0.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,1.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2009,110,7.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,0.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,4.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,2.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,1.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2009,110,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,2.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,73.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,0.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,6.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,5.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2009,110,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,1.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,18.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,3.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2009,110,4.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,17.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,1.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,20.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,16.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,104.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2009,110,13.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2009,110,17.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,2.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,13.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,1.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,1.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,1.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,9.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,29.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,4.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,2.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,23.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,5.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,1.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,1.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,2.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,6.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,5.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,33.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,2.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,1.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,1.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,20.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2009,110,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2009,110,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,3.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,1.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,1.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2009,110,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,1.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2009,110,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,2.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,1.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2009,110,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,1.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2009,110,1.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2009,110,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2009,110,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2009,110,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2009,110,1.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,1.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2009,110,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,8.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,1.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2009,110,1.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2009,110,484.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2009,110,2.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2009,110,11.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2009,110,26.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2009,110,9.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2009,110,5.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2009,110,1.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2009,110,1.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2009,110,49.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2009,110,19.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2009,110,3.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2009,110,86.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2009,110,1.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2009,110,33.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2009,110,39.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2009,110,0.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,103.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2009,110,21.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,3.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2009,110,94.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,82.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,66.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2009,110,19.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,137.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2009,110,96.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2009,110,15.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,122.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,255.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2009,110,159.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,3.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,9.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,16.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2009,110,0.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2009,110,2.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2009,110,62.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2009,110,44.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2009,110,94.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2009,110,3.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2009,110,56.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2009,110,82.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2009,110,2.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2009,110,5.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2009,110,2809.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2009,110,24.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2009,110,31.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2009,110,40.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2009,110,2.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2009,110,341.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2009,110,3.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2009,110,3.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2009,110,7.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2009,110,87.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2009,111,110.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2009,111,232.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2009,111,457.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2009,111,311.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2009,111,155.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2009,111,308.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2009,111,492.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2009,111,153.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2009,111,6.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2009,111,6.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2009,111,7.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2009,111,5008.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2009,111,71.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2009,111,12.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2009,111,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2009,111,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2009,111,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2009,111,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2009,111,39.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2009,111,117.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2009,111,1.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2009,111,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2009,111,5.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2009,111,9.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2009,111,1.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2009,111,1.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2009,111,453.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2009,111,25.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2009,111,45.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2009,111,45.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2009,111,93.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2009,111,96.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2009,111,1.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2009,111,3.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2009,111,4.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2009,111,37.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2009,111,513.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2009,111,50.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2009,111,19.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2009,111,36.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2009,111,19.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2009,111,54.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2009,111,65.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2009,111,195.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2009,111,13.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2009,111,114.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2009,111,77.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2009,111,39.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2009,111,48.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2009,111,100.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2009,111,135.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2009,111,94.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2009,111,61.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2009,111,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2009,111,314.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2009,111,1.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2009,111,144.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2009,111,71.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2009,111,78.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2009,111,10.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2009,111,7.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2009,111,131.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2009,111,26.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2009,111,24.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2009,111,1.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2009,111,14.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2009,111,16.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2009,111,5.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2009,111,7.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2009,111,5.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2009,111,11.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2009,111,144.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2009,111,126.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2009,111,30.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2009,111,43.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2009,111,23.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2009,111,11.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2009,111,10.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2009,111,20.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2009,111,8.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2009,111,100.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2009,111,24.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2009,111,11.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2009,111,13.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2009,111,2.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2009,111,10.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2009,111,26.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2009,111,195.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2009,111,6.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2009,111,4.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2009,111,3.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2009,111,5.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2009,111,1.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2009,111,7.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2009,111,2.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2009,111,39.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2009,111,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2009,111,4.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2009,111,172.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2009,111,55.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2009,111,72.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2009,111,2.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2009,111,3.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2009,111,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2009,111,79.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2009,111,2.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2009,111,15.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2009,111,19.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2009,111,5.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2009,111,8.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2009,111,1.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2009,111,128.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2009,111,17.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2009,111,11.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2009,111,30.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2009,111,1689.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2009,111,45.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2009,111,254.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2009,111,45.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2009,111,116.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2009,111,56.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2009,111,30.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2009,111,57.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2009,111,9.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2009,111,2.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2009,111,39.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2009,111,7.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2009,111,2.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2009,111,9.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2009,111,9.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2009,111,6.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2009,111,78.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2009,111,21.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,23.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,18.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,2.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,27.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2009,111,3.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2009,111,7.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2009,111,3.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,1.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,3.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,1.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,45.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,7.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2009,111,40.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2009,111,18.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2009,111,5.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2009,111,58.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2009,111,374.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2009,111,1.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2009,111,29.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2009,111,7.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2009,111,2.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2009,111,3.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2009,111,1.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2009,111,2.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2009,111,6.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2009,111,11.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2009,111,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2009,111,13.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2009,111,3.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2009,111,1.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2009,111,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2009,111,4.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2009,111,2.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2009,111,1.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2009,111,3.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2009,111,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2009,111,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2009,111,8.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2009,111,1.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2009,111,20.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2009,111,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2009,111,7.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2009,111,41.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2009,111,23.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2009,111,1.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2009,111,11.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2009,111,2.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2009,111,0.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2009,111,32.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2009,111,3.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2009,111,4.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2009,111,3.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2009,111,8.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2009,111,35.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2009,111,7.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2009,111,6.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2009,111,26.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2009,111,130.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2009,111,13.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2009,111,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2009,111,0.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2009,111,1.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2009,111,0.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2009,111,1.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2009,111,21.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2009,111,72.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2009,111,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2009,111,7.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2009,111,121.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2009,111,3.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2009,111,388.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2009,111,11.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2009,111,13.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2009,111,12.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2009,111,23.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,10.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,29.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2009,111,15.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2009,111,27.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,19.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,8.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,5.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,19.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2009,111,329.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2009,111,23.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2009,111,13.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2009,111,838.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2009,111,323.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2009,111,282.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2009,111,43.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2009,111,15.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2009,111,392.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2009,111,124.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2009,111,232.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2009,111,3762.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2009,111,1590.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2009,111,554.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2009,111,1756.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2009,111,65.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2009,111,358.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2009,111,220.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2009,111,1546.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2009,111,31.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,7.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,28.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,569.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,2558.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2009,111,447.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2009,111,374.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2009,111,3534.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2009,111,50.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2009,111,223.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2009,111,21.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2009,111,782.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2009,111,1054.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,44.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,11966.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2009,111,1228.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,0.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,15.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,75.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2009,111,47.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,2.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,11.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2009,111,57.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,16.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2009,111,1.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,8.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2009,111,51.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2009,111,34.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,157.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,78.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,281.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,207.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,282.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2009,111,2.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,37.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,353.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,104.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2009,111,5.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,107.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2009,111,694.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,30.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,788.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,2.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,6.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,5415.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,93.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,1.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,4.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,4.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,32.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,1.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,1011.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,62.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,2808.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,394.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,339.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,131.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,105.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2009,111,260.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,6.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,2.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2009,111,1.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,2.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,7.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2009,111,1.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,3.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,6.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,313.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,25.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,17.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,265.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2009,111,20.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2009,111,146.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2009,111,145.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,51.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,1049.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,186.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,389.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,74.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,188.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2009,111,16.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2009,111,16.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2009,111,5795.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,336.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2009,111,1.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,6.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2009,111,5.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,17.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,2.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,52.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,118.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2009,111,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2009,111,20.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2009,111,2.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2009,111,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,2.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,18.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2009,111,41.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2009,111,152.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2009,111,26.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2009,111,3.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2009,111,1.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,133.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2009,111,4.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2009,111,1041.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,18.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,110.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2009,111,165.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,336.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,13.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,10.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,3.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,1.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2009,111,19.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2009,111,52.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2009,111,7.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2009,111,3.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2009,111,13.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2009,111,411.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2009,111,4.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,8.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,3.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,8.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,20.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2009,111,4.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2009,111,4.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2009,111,2.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2009,111,2.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2009,111,70.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2009,111,3.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2009,111,3.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2009,111,28.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,68.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2009,111,12.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2009,111,3.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2009,111,8.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,212.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,0.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,5.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,12.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2009,111,141.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,8.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,12.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,0.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2009,111,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,1.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,0.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,1.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,34.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,5.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,8.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,12.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2009,111,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,46.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,1.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2009,111,6.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,58.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,8.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,32.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,32.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,201.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2009,111,5.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2009,111,15.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,3.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,86.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,1.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,3.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,2.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,16.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,65.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,16.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,3.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,40.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,1.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,10.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,1.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,1.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,2.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,1.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,70.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,5.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,58.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,1.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,1.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,23.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2009,111,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2009,111,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,1.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,1.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,2.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,3.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,1.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,2.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2009,111,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,1.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2009,111,2.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2009,111,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,1.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,1.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2009,111,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2009,111,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2009,111,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2009,111,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2009,111,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,2.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,1.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2009,111,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,4.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2009,111,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2009,111,2192.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2009,111,5.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2009,111,20.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2009,111,82.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2009,111,6.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2009,111,22.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2009,111,5.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2009,111,26.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2009,111,136.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2009,111,104.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2009,111,8.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2009,111,125.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2009,111,4.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2009,111,16.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2009,111,90.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2009,111,18.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,273.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2009,111,98.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,7.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2009,111,78.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,179.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,233.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2009,111,88.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,464.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2009,111,240.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2009,111,42.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,50.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,1060.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2009,111,536.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,15.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,36.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,86.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2009,111,4.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2009,111,6.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2009,111,78.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2009,111,90.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2009,111,125.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2009,111,0.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2009,111,131.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2009,111,100.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2009,111,1.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2009,111,16.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2009,111,4376.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2009,111,91.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2009,111,50.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2009,111,159.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2009,111,6.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2009,111,687.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2009,111,6.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2009,111,4.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2009,111,16.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2009,111,114.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2009,112,25.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2009,112,86.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2009,112,59.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2009,112,160.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2009,112,111.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2009,112,185.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2009,112,222.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2009,112,47.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2009,112,0.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2009,112,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2009,112,4.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2009,112,1314.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2009,112,83.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2009,112,4.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2009,112,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2009,112,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2009,112,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2009,112,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2009,112,11.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2009,112,47.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2009,112,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2009,112,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2009,112,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2009,112,7.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2009,112,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2009,112,0.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2009,112,188.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2009,112,46.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2009,112,10.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2009,112,18.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2009,112,28.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2009,112,45.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2009,112,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2009,112,1.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2009,112,2.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2009,112,12.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2009,112,244.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2009,112,22.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2009,112,9.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2009,112,20.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2009,112,13.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2009,112,27.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2009,112,18.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2009,112,140.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2009,112,29.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2009,112,160.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2009,112,52.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2009,112,42.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2009,112,40.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2009,112,72.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2009,112,84.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2009,112,29.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2009,112,31.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2009,112,1.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2009,112,138.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2009,112,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2009,112,50.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2009,112,75.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2009,112,44.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2009,112,8.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2009,112,5.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2009,112,181.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2009,112,10.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2009,112,17.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2009,112,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2009,112,14.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2009,112,4.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2009,112,10.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2009,112,3.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2009,112,3.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2009,112,8.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2009,112,40.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2009,112,57.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2009,112,58.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2009,112,35.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2009,112,11.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2009,112,3.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2009,112,8.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2009,112,10.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2009,112,12.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2009,112,54.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2009,112,20.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2009,112,5.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2009,112,14.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2009,112,0.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2009,112,10.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2009,112,8.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2009,112,211.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2009,112,5.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2009,112,8.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2009,112,2.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2009,112,3.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2009,112,0.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2009,112,7.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2009,112,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2009,112,66.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2009,112,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2009,112,14.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2009,112,130.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2009,112,193.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2009,112,20.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2009,112,3.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2009,112,2.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2009,112,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2009,112,24.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2009,112,0.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2009,112,4.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2009,112,9.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2009,112,3.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2009,112,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2009,112,2.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2009,112,101.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2009,112,16.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2009,112,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2009,112,7.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2009,112,560.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2009,112,8.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2009,112,75.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2009,112,16.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2009,112,20.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2009,112,14.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2009,112,2.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2009,112,27.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2009,112,3.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2009,112,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2009,112,13.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2009,112,3.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2009,112,1.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2009,112,9.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2009,112,5.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2009,112,2.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2009,112,50.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2009,112,15.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,37.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,1.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,1.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,9.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2009,112,0.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2009,112,3.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2009,112,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,1.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,1.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,3.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,2.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,2.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2009,112,43.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2009,112,13.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2009,112,7.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2009,112,26.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2009,112,285.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2009,112,3.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2009,112,24.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2009,112,4.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2009,112,7.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2009,112,1.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2009,112,5.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2009,112,2.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2009,112,6.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2009,112,11.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2009,112,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2009,112,5.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2009,112,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2009,112,2.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2009,112,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2009,112,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2009,112,2.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2009,112,12.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2009,112,1.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2009,112,1.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2009,112,1.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2009,112,3.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2009,112,3.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2009,112,27.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2009,112,3.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2009,112,4.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2009,112,22.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2009,112,11.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2009,112,2.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2009,112,20.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2009,112,19.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2009,112,0.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2009,112,12.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2009,112,7.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2009,112,4.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2009,112,8.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2009,112,13.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2009,112,30.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2009,112,6.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2009,112,2.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2009,112,22.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2009,112,133.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2009,112,27.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2009,112,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2009,112,0.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2009,112,0.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2009,112,4.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2009,112,1.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2009,112,4.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2009,112,20.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2009,112,1.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2009,112,14.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2009,112,69.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2009,112,1.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2009,112,368.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2009,112,1.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2009,112,9.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2009,112,8.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2009,112,19.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,2.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,15.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2009,112,6.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2009,112,24.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,7.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,14.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,8.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,37.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2009,112,223.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2009,112,16.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2009,112,9.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2009,112,468.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2009,112,140.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2009,112,381.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2009,112,100.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2009,112,17.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2009,112,225.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2009,112,138.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2009,112,147.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2009,112,3032.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2009,112,731.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2009,112,643.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2009,112,1924.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2009,112,9.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2009,112,219.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2009,112,242.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2009,112,1229.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2009,112,20.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,7.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,28.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,282.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,1493.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2009,112,187.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2009,112,115.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2009,112,1578.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2009,112,47.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2009,112,128.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2009,112,18.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2009,112,450.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2009,112,488.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,8.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,5854.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2009,112,1559.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,3.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,6.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,56.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2009,112,47.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,2.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,10.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2009,112,103.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,8.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2009,112,2.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,2.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2009,112,18.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2009,112,52.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,108.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,220.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,127.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,79.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,214.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2009,112,1.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,50.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,152.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,82.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2009,112,7.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,86.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2009,112,747.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,59.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,629.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,2.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,6453.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,38.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,2.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,1.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,4.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,12.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,649.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,33.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,1613.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,117.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,301.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,28.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,110.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2009,112,179.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,39.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,2.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2009,112,3.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,2.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,3.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,1.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2009,112,1.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,1.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,1.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,154.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,61.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,42.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,277.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2009,112,12.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2009,112,254.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2009,112,207.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,56.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,456.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,62.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,135.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,47.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,112.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2009,112,27.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2009,112,7.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2009,112,6210.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,508.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2009,112,4.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,12.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2009,112,9.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,21.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,41.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,154.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2009,112,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2009,112,8.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2009,112,2.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2009,112,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,30.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,8.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2009,112,19.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2009,112,106.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2009,112,12.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2009,112,1.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2009,112,1.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,30.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2009,112,7.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2009,112,654.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,16.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,181.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2009,112,178.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,429.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,17.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,3.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,6.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,0.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2009,112,18.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2009,112,25.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2009,112,2.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2009,112,11.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2009,112,23.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2009,112,498.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2009,112,21.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,6.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,3.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,10.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,2.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2009,112,10.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2009,112,1.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2009,112,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2009,112,2.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2009,112,97.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2009,112,1.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2009,112,1.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2009,112,29.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,12.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2009,112,56.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2009,112,2.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2009,112,11.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,195.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,2.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,4.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,30.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2009,112,117.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,2.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,1.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,4.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,2.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2009,112,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,1.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,2.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,1.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,37.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,2.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,4.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,10.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2009,112,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,48.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2009,112,3.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,96.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,18.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,20.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,33.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,201.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2009,112,5.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2009,112,44.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,9.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,12.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,1.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,4.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,6.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,22.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,3.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,31.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,1.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,25.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,2.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,4.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,1.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,1.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,138.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,2.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,59.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,1.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,8.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2009,112,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2009,112,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,1.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,2.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2009,112,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,1.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2009,112,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,1.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2009,112,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,1.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2009,112,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2009,112,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2009,112,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2009,112,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2009,112,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,1.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2009,112,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,3.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2009,112,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2009,112,2211.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2009,112,10.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2009,112,18.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2009,112,189.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2009,112,13.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2009,112,29.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2009,112,6.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2009,112,17.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2009,112,182.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2009,112,329.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2009,112,10.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2009,112,86.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2009,112,6.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2009,112,13.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2009,112,185.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2009,112,37.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,451.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2009,112,248.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,61.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2009,112,41.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,191.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,265.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2009,112,88.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,846.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2009,112,170.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2009,112,144.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,92.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,6060.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2009,112,384.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,30.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,27.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,194.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2009,112,8.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2009,112,4.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2009,112,21.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2009,112,103.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2009,112,110.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2009,112,2.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2009,112,70.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2009,112,43.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2009,112,3.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2009,112,15.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2009,112,4327.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2009,112,78.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2009,112,47.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2009,112,103.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2009,112,12.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2009,112,485.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2009,112,5.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2009,112,4.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2009,112,43.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2009,112,115.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2009,113,41.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2009,113,53.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2009,113,41.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2009,113,51.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2009,113,68.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2009,113,276.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2009,113,136.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2009,113,35.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2009,113,1.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2009,113,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2009,113,7.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2009,113,687.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2009,113,83.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2009,113,0.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2009,113,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2009,113,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2009,113,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2009,113,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2009,113,14.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2009,113,65.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2009,113,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2009,113,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2009,113,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2009,113,9.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2009,113,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2009,113,5.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2009,113,105.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2009,113,35.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2009,113,20.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2009,113,17.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2009,113,11.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2009,113,35.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2009,113,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2009,113,2.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2009,113,0.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2009,113,1.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2009,113,134.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2009,113,9.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2009,113,14.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2009,113,16.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2009,113,4.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2009,113,20.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2009,113,13.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2009,113,5.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2009,113,27.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2009,113,90.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2009,113,50.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2009,113,43.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2009,113,46.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2009,113,43.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2009,113,54.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2009,113,20.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2009,113,16.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2009,113,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2009,113,103.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2009,113,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2009,113,68.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2009,113,53.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2009,113,18.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2009,113,11.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2009,113,8.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2009,113,219.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2009,113,22.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2009,113,21.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2009,113,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2009,113,10.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2009,113,9.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2009,113,3.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2009,113,1.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2009,113,8.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2009,113,5.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2009,113,27.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2009,113,53.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2009,113,102.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2009,113,47.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2009,113,28.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2009,113,5.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2009,113,1.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2009,113,16.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2009,113,23.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2009,113,56.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2009,113,57.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2009,113,15.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2009,113,6.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2009,113,7.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2009,113,16.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2009,113,8.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2009,113,163.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2009,113,9.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2009,113,6.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2009,113,4.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2009,113,5.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2009,113,0.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2009,113,11.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2009,113,1.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2009,113,90.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2009,113,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2009,113,7.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2009,113,45.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2009,113,302.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2009,113,19.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2009,113,2.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2009,113,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2009,113,35.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2009,113,3.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2009,113,3.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2009,113,4.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2009,113,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2009,113,2.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2009,113,41.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2009,113,3.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2009,113,334.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2009,113,2.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2009,113,26.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2009,113,3.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2009,113,0.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2009,113,1.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2009,113,7.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2009,113,1.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2009,113,0.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2009,113,2.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2009,113,1.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2009,113,21.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2009,113,7.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2009,113,0.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2009,113,23.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2009,113,14.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,33.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,1.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,0.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,5.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2009,113,3.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2009,113,4.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2009,113,10.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,0.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,0.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,4.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,2.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,6.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,0.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2009,113,23.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2009,113,4.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2009,113,0.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2009,113,12.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2009,113,179.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2009,113,1.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2009,113,9.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2009,113,2.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2009,113,0.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2009,113,5.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2009,113,15.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2009,113,2.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2009,113,10.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2009,113,18.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2009,113,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2009,113,10.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2009,113,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2009,113,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2009,113,3.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2009,113,2.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2009,113,7.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2009,113,9.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2009,113,5.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2009,113,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2009,113,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2009,113,2.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2009,113,1.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2009,113,11.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2009,113,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2009,113,4.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2009,113,43.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2009,113,14.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2009,113,2.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2009,113,28.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2009,113,76.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2009,113,2.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2009,113,20.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2009,113,12.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2009,113,2.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2009,113,48.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2009,113,28.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2009,113,18.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2009,113,5.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2009,113,4.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2009,113,19.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2009,113,82.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2009,113,13.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2009,113,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2009,113,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2009,113,2.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2009,113,3.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2009,113,1.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2009,113,11.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2009,113,47.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2009,113,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2009,113,27.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2009,113,67.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2009,113,2.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2009,113,430.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2009,113,3.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2009,113,11.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2009,113,11.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2009,113,4.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,4.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,6.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2009,113,16.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2009,113,5.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,12.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,18.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,6.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,30.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2009,113,167.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2009,113,20.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2009,113,13.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2009,113,679.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2009,113,86.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2009,113,413.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2009,113,109.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2009,113,15.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2009,113,60.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2009,113,145.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2009,113,99.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2009,113,1670.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2009,113,211.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2009,113,221.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2009,113,689.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2009,113,21.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2009,113,66.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2009,113,140.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2009,113,457.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2009,113,8.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,5.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,6.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,51.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,892.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2009,113,113.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2009,113,28.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2009,113,413.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2009,113,15.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2009,113,63.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2009,113,7.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2009,113,235.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2009,113,300.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,1.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,1719.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2009,113,1085.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,3.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,2.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,44.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2009,113,63.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,4.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,13.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2009,113,91.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,1.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2009,113,3.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,1.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2009,113,16.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2009,113,37.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,145.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,793.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,72.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,20.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,202.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2009,113,3.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,29.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,102.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,58.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2009,113,2.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,24.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2009,113,475.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,77.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,464.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,11.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,3875.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,44.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,1.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,1.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,4.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,2.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,311.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,42.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,1231.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,130.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,190.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,45.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,123.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2009,113,70.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,34.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,1.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2009,113,0.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,3.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,1.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2009,113,1.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,1.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,3.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,44.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,42.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,26.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,175.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2009,113,13.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2009,113,193.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2009,113,152.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,53.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,128.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,37.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,72.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,24.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,151.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2009,113,19.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2009,113,5.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2009,113,7550.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,407.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2009,113,3.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,4.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2009,113,6.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,29.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,19.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,168.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2009,113,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2009,113,0.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2009,113,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2009,113,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,26.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,14.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2009,113,9.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2009,113,69.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2009,113,8.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2009,113,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2009,113,0.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,6.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2009,113,8.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2009,113,343.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,18.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,172.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2009,113,152.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,361.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,4.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,1.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,7.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,0.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2009,113,16.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2009,113,11.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2009,113,6.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2009,113,6.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2009,113,38.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2009,113,398.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2009,113,1.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,6.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,13.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,10.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,0.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2009,113,8.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2009,113,5.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2009,113,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2009,113,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2009,113,38.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2009,113,2.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2009,113,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2009,113,9.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,15.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2009,113,26.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2009,113,12.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2009,113,4.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,88.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,1.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,4.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,3.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2009,113,7.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,1.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,2.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,3.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2009,113,1.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,1.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,4.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,3.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,56.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,1.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,2.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,11.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2009,113,0.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,1.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,1.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,66.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2009,113,3.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,29.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,4.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,9.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,17.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,93.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2009,113,0.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2009,113,110.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,16.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,2.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,9.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,1.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,7.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,8.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,10.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,42.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,1.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,5.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,1.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,42.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,2.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,56.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,6.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2009,113,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2009,113,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,2.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,1.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2009,113,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2009,113,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,1.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2009,113,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2009,113,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2009,113,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2009,113,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2009,113,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2009,113,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,1.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2009,113,1.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,2.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,1.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,1.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,1.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2009,113,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2009,113,904.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2009,113,15.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2009,113,15.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2009,113,210.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2009,113,9.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2009,113,41.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2009,113,20.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2009,113,14.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2009,113,140.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2009,113,489.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2009,113,19.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2009,113,67.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2009,113,8.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2009,113,17.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2009,113,370.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2009,113,18.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,492.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2009,113,580.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,38.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2009,113,29.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,177.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,271.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2009,113,157.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,764.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2009,113,90.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2009,113,227.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,19.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,4626.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2009,113,223.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,16.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,37.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,502.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2009,113,2.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2009,113,31.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2009,113,22.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2009,113,72.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2009,113,86.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2009,113,0.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2009,113,65.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2009,113,50.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2009,113,2.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2009,113,5.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2009,113,3062.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2009,113,83.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2009,113,34.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2009,113,114.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2009,113,13.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2009,113,267.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2009,113,3.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2009,113,2.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2009,113,53.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2009,113,130.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2009,114,33.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2009,114,21.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2009,114,39.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2009,114,44.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2009,114,14.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2009,114,203.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2009,114,45.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2009,114,16.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2009,114,0.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2009,114,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2009,114,1.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2009,114,221.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2009,114,75.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2009,114,3.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2009,114,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2009,114,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2009,114,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2009,114,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2009,114,3.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2009,114,41.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2009,114,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2009,114,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2009,114,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2009,114,3.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2009,114,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2009,114,6.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2009,114,50.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2009,114,15.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2009,114,5.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2009,114,26.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2009,114,8.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2009,114,42.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2009,114,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2009,114,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2009,114,0.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2009,114,6.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2009,114,109.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2009,114,7.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2009,114,12.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2009,114,12.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2009,114,7.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2009,114,13.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2009,114,7.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2009,114,13.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2009,114,18.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2009,114,10.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2009,114,19.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2009,114,14.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2009,114,18.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2009,114,19.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2009,114,21.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2009,114,6.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2009,114,31.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2009,114,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2009,114,62.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2009,114,1.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2009,114,31.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2009,114,28.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2009,114,18.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2009,114,19.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2009,114,2.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2009,114,213.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2009,114,6.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2009,114,11.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2009,114,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2009,114,12.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2009,114,6.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2009,114,0.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2009,114,1.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2009,114,2.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2009,114,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2009,114,12.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2009,114,26.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2009,114,24.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2009,114,18.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2009,114,8.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2009,114,6.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2009,114,0.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2009,114,7.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2009,114,21.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2009,114,24.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2009,114,16.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2009,114,3.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2009,114,5.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2009,114,2.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2009,114,8.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2009,114,5.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2009,114,157.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2009,114,6.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2009,114,1.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2009,114,12.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2009,114,10.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2009,114,0.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2009,114,32.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2009,114,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2009,114,62.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2009,114,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2009,114,38.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2009,114,18.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2009,114,263.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2009,114,7.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2009,114,1.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2009,114,21.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2009,114,3.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2009,114,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2009,114,10.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2009,114,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2009,114,2.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2009,114,37.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2009,114,15.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2009,114,1.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2009,114,179.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2009,114,3.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2009,114,14.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2009,114,2.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2009,114,3.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2009,114,0.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2009,114,20.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2009,114,1.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2009,114,1.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2009,114,2.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2009,114,4.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2009,114,17.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2009,114,6.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2009,114,1.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2009,114,10.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2009,114,0.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,5.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,0.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,1.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,10.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2009,114,11.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2009,114,2.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2009,114,1.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,1.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,3.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,1.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,1.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,1.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,0.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2009,114,13.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2009,114,7.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2009,114,3.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2009,114,7.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2009,114,91.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2009,114,0.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2009,114,18.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2009,114,5.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2009,114,0.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2009,114,0.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2009,114,5.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2009,114,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2009,114,8.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2009,114,2.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2009,114,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2009,114,1.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2009,114,1.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2009,114,2.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2009,114,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2009,114,1.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2009,114,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2009,114,40.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2009,114,3.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2009,114,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2009,114,1.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2009,114,1.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2009,114,4.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2009,114,18.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2009,114,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2009,114,1.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2009,114,85.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2009,114,8.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2009,114,0.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2009,114,32.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2009,114,30.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2009,114,1.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2009,114,24.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2009,114,13.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2009,114,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2009,114,48.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2009,114,85.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2009,114,10.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2009,114,4.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2009,114,2.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2009,114,15.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2009,114,28.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2009,114,20.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2009,114,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2009,114,0.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2009,114,4.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2009,114,3.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2009,114,0.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2009,114,26.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2009,114,36.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2009,114,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2009,114,20.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2009,114,49.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2009,114,1.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2009,114,56.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2009,114,2.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2009,114,9.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2009,114,5.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2009,114,0.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,1.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,3.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2009,114,4.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2009,114,0.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,8.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,1.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,4.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,7.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2009,114,84.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2009,114,17.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2009,114,1.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2009,114,391.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2009,114,51.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2009,114,457.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2009,114,82.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2009,114,7.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2009,114,24.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2009,114,33.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2009,114,46.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2009,114,516.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2009,114,95.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2009,114,50.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2009,114,235.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2009,114,1.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2009,114,17.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2009,114,26.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2009,114,156.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2009,114,4.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,5.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,9.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,11.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,445.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2009,114,38.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2009,114,12.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2009,114,65.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2009,114,2.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2009,114,31.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2009,114,1.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2009,114,54.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2009,114,35.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,2.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,466.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2009,114,184.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,1.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,1.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,17.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2009,114,20.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,3.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,10.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2009,114,47.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,1.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2009,114,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,0.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2009,114,4.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2009,114,10.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,54.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,459.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,38.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,9.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,51.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2009,114,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,4.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,40.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,10.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2009,114,3.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,11.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2009,114,100.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,25.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,83.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,3.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,747.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,10.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,1.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,1.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,1.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,110.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,23.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,172.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,22.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,50.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,4.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,19.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2009,114,15.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,3.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2009,114,1.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,6.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,4.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,1.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,8.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2009,114,8.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2009,114,37.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2009,114,45.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,13.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,63.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,7.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,26.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,23.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,40.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2009,114,5.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2009,114,4.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2009,114,2719.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,220.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2009,114,7.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,3.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2009,114,6.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,13.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,14.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,91.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2009,114,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2009,114,1.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2009,114,3.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2009,114,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,4.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,8.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2009,114,4.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2009,114,12.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2009,114,6.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2009,114,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2009,114,2.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,3.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2009,114,3.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2009,114,227.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,8.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,53.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2009,114,22.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,128.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,1.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,0.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,5.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,0.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2009,114,8.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2009,114,2.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2009,114,3.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2009,114,0.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2009,114,15.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2009,114,97.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2009,114,0.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,1.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,14.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,1.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2009,114,3.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2009,114,1.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2009,114,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2009,114,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2009,114,4.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2009,114,0.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2009,114,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2009,114,1.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,3.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2009,114,0.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2009,114,3.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2009,114,1.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,38.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,2.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,0.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,1.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2009,114,1.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,2.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,1.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,0.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2009,114,1.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,1.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,8.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,2.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,3.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,5.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2009,114,0.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,26.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2009,114,1.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,5.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,0.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,3.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,3.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,22.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2009,114,2.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2009,114,43.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,2.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,2.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,4.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,9.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,4.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,1.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,1.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,1.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,1.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,5.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,21.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,4.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2009,114,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2009,114,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,1.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2009,114,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2009,114,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2009,114,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2009,114,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2009,114,1.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2009,114,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2009,114,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2009,114,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2009,114,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,1.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2009,114,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2009,114,77.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2009,114,16.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2009,114,5.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2009,114,81.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2009,114,11.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2009,114,11.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2009,114,4.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2009,114,6.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2009,114,25.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2009,114,112.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2009,114,3.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2009,114,25.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2009,114,4.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2009,114,9.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2009,114,157.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2009,114,31.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,151.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2009,114,508.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,36.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2009,114,21.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,92.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,82.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2009,114,77.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,188.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2009,114,48.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2009,114,38.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,4.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,1243.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2009,114,31.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,10.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,24.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,249.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2009,114,2.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2009,114,28.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2009,114,4.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2009,114,23.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2009,114,37.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2009,114,0.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2009,114,34.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2009,114,26.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2009,114,0.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2009,114,6.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2009,114,1690.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2009,114,33.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2009,114,18.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2009,114,46.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2009,114,2.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2009,114,50.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2009,114,0.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2009,114,0.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2009,114,20.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2009,114,62.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2009,115,21.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2009,115,7.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2009,115,27.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2009,115,38.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2009,115,4.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2009,115,170.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2009,115,37.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2009,115,11.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2009,115,1.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2009,115,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2009,115,0.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2009,115,99.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2009,115,38.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2009,115,5.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2009,115,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2009,115,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2009,115,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2009,115,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2009,115,7.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2009,115,44.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2009,115,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2009,115,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2009,115,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2009,115,4.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2009,115,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2009,115,18.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2009,115,70.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2009,115,3.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2009,115,4.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2009,115,74.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2009,115,3.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2009,115,24.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2009,115,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2009,115,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2009,115,0.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2009,115,3.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2009,115,53.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2009,115,5.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2009,115,5.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2009,115,14.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2009,115,3.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2009,115,11.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2009,115,3.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2009,115,7.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2009,115,23.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2009,115,6.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2009,115,6.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2009,115,8.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2009,115,6.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2009,115,7.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2009,115,2.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2009,115,2.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2009,115,18.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2009,115,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2009,115,37.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2009,115,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2009,115,8.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2009,115,10.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2009,115,1.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2009,115,8.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2009,115,0.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2009,115,141.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2009,115,0.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2009,115,6.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2009,115,1.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2009,115,5.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2009,115,1.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2009,115,1.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2009,115,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2009,115,2.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2009,115,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2009,115,2.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2009,115,4.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2009,115,5.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2009,115,3.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2009,115,1.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2009,115,3.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2009,115,3.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2009,115,2.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2009,115,3.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2009,115,15.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2009,115,5.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2009,115,2.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2009,115,0.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2009,115,1.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2009,115,3.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2009,115,2.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2009,115,101.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2009,115,1.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2009,115,5.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2009,115,6.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2009,115,15.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2009,115,4.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2009,115,54.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2009,115,1.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2009,115,32.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2009,115,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2009,115,63.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2009,115,75.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2009,115,138.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2009,115,1.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2009,115,1.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2009,115,4.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2009,115,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2009,115,1.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2009,115,1.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2009,115,4.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2009,115,5.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2009,115,3.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2009,115,3.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2009,115,108.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2009,115,2.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2009,115,6.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2009,115,3.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2009,115,1.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2009,115,1.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2009,115,29.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2009,115,1.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2009,115,0.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2009,115,3.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2009,115,4.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2009,115,2.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2009,115,1.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2009,115,4.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2009,115,0.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,1.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,2.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,0.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,5.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2009,115,1.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2009,115,1.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2009,115,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,0.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,3.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,1.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,1.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,1.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2009,115,19.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2009,115,10.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2009,115,6.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2009,115,2.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2009,115,60.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2009,115,3.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2009,115,6.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2009,115,5.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2009,115,0.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2009,115,0.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2009,115,3.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2009,115,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2009,115,1.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2009,115,0.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2009,115,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2009,115,5.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2009,115,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2009,115,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2009,115,1.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2009,115,1.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2009,115,1.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2009,115,26.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2009,115,6.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2009,115,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2009,115,2.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2009,115,2.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2009,115,1.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2009,115,26.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2009,115,1.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2009,115,15.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2009,115,82.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2009,115,11.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2009,115,1.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2009,115,16.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2009,115,5.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2009,115,1.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2009,115,20.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2009,115,13.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2009,115,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2009,115,8.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2009,115,41.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2009,115,10.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2009,115,14.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2009,115,2.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2009,115,20.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2009,115,44.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2009,115,13.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2009,115,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2009,115,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2009,115,1.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2009,115,4.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2009,115,1.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2009,115,23.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2009,115,17.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2009,115,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2009,115,40.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2009,115,11.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2009,115,0.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2009,115,89.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2009,115,6.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2009,115,6.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2009,115,2.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2009,115,2.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,1.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,0.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2009,115,1.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2009,115,3.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,1.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,2.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,3.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,6.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2009,115,46.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2009,115,3.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2009,115,2.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2009,115,70.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2009,115,12.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2009,115,117.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2009,115,24.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2009,115,17.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2009,115,22.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2009,115,7.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2009,115,34.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2009,115,162.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2009,115,45.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2009,115,61.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2009,115,258.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2009,115,0.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2009,115,15.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2009,115,11.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2009,115,70.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2009,115,2.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,4.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,3.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,13.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,408.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2009,115,33.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2009,115,12.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2009,115,65.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2009,115,1.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2009,115,9.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2009,115,1.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2009,115,19.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2009,115,4.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,0.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,248.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2009,115,47.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,1.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,6.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,10.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2009,115,10.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,1.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2009,115,37.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,0.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2009,115,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,1.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2009,115,1.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2009,115,3.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,20.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,255.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,26.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,11.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,19.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2009,115,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,0.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,20.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,1.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2009,115,1.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,2.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2009,115,27.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,11.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,42.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,197.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,2.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,1.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,0.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,27.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,15.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,34.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,14.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,15.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,0.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,3.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2009,115,1.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2009,115,1.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,2.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,0.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,2.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2009,115,4.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2009,115,14.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,6.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,32.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,4.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,14.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,11.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,9.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2009,115,2.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2009,115,2.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2009,115,793.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,55.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2009,115,1.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2009,115,4.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,44.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2009,115,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2009,115,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,3.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2009,115,2.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2009,115,6.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2009,115,2.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2009,115,175.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,4.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,24.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2009,115,16.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,47.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,2.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,3.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2009,115,2.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2009,115,0.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2009,115,0.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2009,115,0.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2009,115,4.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2009,115,26.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2009,115,1.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,2.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,4.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2009,115,1.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2009,115,1.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2009,115,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2009,115,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2009,115,4.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2009,115,0.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2009,115,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2009,115,3.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,4.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2009,115,1.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,18.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2009,115,0.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2009,115,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,4.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2009,115,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,7.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2009,115,2.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,12.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,2.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,1.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,0.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,25.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2009,115,3.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2009,115,26.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,2.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,4.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,2.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,3.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,1.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,6.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,1.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,1.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,3.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,1.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,1.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,3.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,5.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,3.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2009,115,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2009,115,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2009,115,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2009,115,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2009,115,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2009,115,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2009,115,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2009,115,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2009,115,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2009,115,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2009,115,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2009,115,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2009,115,20.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2009,115,7.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2009,115,6.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2009,115,59.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2009,115,4.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2009,115,4.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2009,115,8.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2009,115,3.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2009,115,17.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2009,115,38.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2009,115,0.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2009,115,58.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2009,115,10.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2009,115,13.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2009,115,77.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2009,115,44.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,134.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2009,115,506.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,30.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2009,115,7.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,58.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,29.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2009,115,41.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,57.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2009,115,36.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2009,115,10.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,0.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,612.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2009,115,12.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,5.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,10.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,128.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2009,115,6.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2009,115,16.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2009,115,1.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2009,115,14.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2009,115,25.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2009,115,1.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2009,115,12.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2009,115,12.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2009,115,4.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2009,115,14.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2009,115,1173.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2009,115,3.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2009,115,14.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2009,115,18.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2009,115,10.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2009,115,12.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2009,115,1.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2009,115,2.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2009,115,10.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2009,115,52.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2009,116,15.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2009,116,0.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2009,116,31.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2009,116,69.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2009,116,4.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2009,116,141.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2009,116,54.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2009,116,5.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2009,116,0.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2009,116,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2009,116,1.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2009,116,70.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2009,116,47.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2009,116,2.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2009,116,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2009,116,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2009,116,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2009,116,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2009,116,1.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2009,116,31.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2009,116,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2009,116,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2009,116,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2009,116,0.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2009,116,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2009,116,40.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2009,116,110.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2009,116,2.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2009,116,9.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2009,116,45.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2009,116,0.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2009,116,3.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2009,116,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2009,116,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2009,116,1.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2009,116,0.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2009,116,57.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2009,116,5.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2009,116,7.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2009,116,6.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2009,116,7.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2009,116,8.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2009,116,3.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2009,116,12.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2009,116,21.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2009,116,2.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2009,116,10.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2009,116,1.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2009,116,2.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2009,116,4.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2009,116,2.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2009,116,2.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2009,116,5.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2009,116,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2009,116,38.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2009,116,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2009,116,2.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2009,116,4.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2009,116,2.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2009,116,10.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2009,116,1.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2009,116,100.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2009,116,4.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2009,116,4.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2009,116,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2009,116,2.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2009,116,0.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2009,116,1.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2009,116,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2009,116,2.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2009,116,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2009,116,13.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2009,116,5.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2009,116,2.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2009,116,3.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2009,116,2.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2009,116,1.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2009,116,1.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2009,116,1.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2009,116,0.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2009,116,11.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2009,116,12.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2009,116,0.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2009,116,1.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2009,116,0.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2009,116,3.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2009,116,1.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2009,116,79.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2009,116,1.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2009,116,1.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2009,116,5.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2009,116,0.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2009,116,6.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2009,116,40.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2009,116,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2009,116,6.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2009,116,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2009,116,127.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2009,116,22.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2009,116,38.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2009,116,2.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2009,116,14.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2009,116,2.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2009,116,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2009,116,2.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2009,116,15.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2009,116,3.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2009,116,64.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2009,116,1.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2009,116,4.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2009,116,1.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2009,116,4.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2009,116,1.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2009,116,0.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2009,116,1.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2009,116,4.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2009,116,4.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2009,116,0.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2009,116,5.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2009,116,1.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,3.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,4.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,0.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,1.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2009,116,0.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2009,116,1.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2009,116,1.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,0.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,0.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,3.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,1.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,2.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,3.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2009,116,10.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2009,116,4.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2009,116,6.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2009,116,11.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2009,116,75.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2009,116,0.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2009,116,6.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2009,116,1.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2009,116,0.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2009,116,1.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2009,116,0.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2009,116,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2009,116,2.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2009,116,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2009,116,3.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2009,116,4.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2009,116,15.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2009,116,8.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2009,116,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2009,116,0.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2009,116,1.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2009,116,12.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2009,116,1.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2009,116,0.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2009,116,37.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2009,116,5.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2009,116,2.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2009,116,6.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2009,116,0.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2009,116,1.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2009,116,12.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2009,116,7.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2009,116,3.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2009,116,6.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2009,116,19.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2009,116,4.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2009,116,15.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2009,116,2.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2009,116,11.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2009,116,80.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2009,116,5.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2009,116,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2009,116,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2009,116,0.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2009,116,10.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2009,116,12.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2009,116,19.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2009,116,20.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2009,116,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2009,116,38.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2009,116,28.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2009,116,1.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2009,116,251.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2009,116,10.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2009,116,9.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2009,116,1.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2009,116,0.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,2.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,2.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2009,116,2.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2009,116,0.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,2.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,2.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,2.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,13.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2009,116,37.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2009,116,3.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2009,116,0.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2009,116,9.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2009,116,1.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2009,116,36.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2009,116,34.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2009,116,13.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2009,116,9.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2009,116,0.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2009,116,20.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2009,116,64.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2009,116,17.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2009,116,40.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2009,116,146.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2009,116,0.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2009,116,5.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2009,116,7.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2009,116,92.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2009,116,1.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,0.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,2.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,12.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,256.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2009,116,6.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2009,116,3.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2009,116,35.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2009,116,0.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2009,116,2.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2009,116,0.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2009,116,12.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2009,116,3.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,0.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,194.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2009,116,25.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,0.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,4.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,6.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2009,116,3.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,0.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2009,116,26.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,0.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2009,116,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,1.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2009,116,1.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2009,116,4.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,8.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,11.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,13.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,1.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,9.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2009,116,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,0.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,6.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,7.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2009,116,4.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,2.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2009,116,4.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,4.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,10.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,1.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,66.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,2.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,22.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,5.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,5.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,6.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,15.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,0.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,0.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2009,116,4.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2009,116,0.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,1.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,1.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2009,116,1.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2009,116,1.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2009,116,3.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,3.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,68.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,7.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,8.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,16.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,10.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2009,116,1.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2009,116,356.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,30.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,4.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,11.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2009,116,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2009,116,1.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2009,116,2.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2009,116,1.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2009,116,51.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,8.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,15.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2009,116,10.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,25.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2009,116,3.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2009,116,1.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2009,116,0.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2009,116,2.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2009,116,3.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2009,116,8.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2009,116,0.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,2.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2009,116,0.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2009,116,0.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2009,116,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2009,116,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2009,116,3.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2009,116,0.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2009,116,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2009,116,4.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,5.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2009,116,0.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2009,116,0.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,13.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,0.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2009,116,1.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,1.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2009,116,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,1.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,1.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2009,116,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,3.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2009,116,1.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,3.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,1.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,12.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2009,116,0.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2009,116,7.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,3.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,3.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,1.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,1.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,2.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,2.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,11.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,1.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,3.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,1.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,1.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,1.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2009,116,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2009,116,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,2.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2009,116,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2009,116,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2009,116,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2009,116,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2009,116,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2009,116,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2009,116,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2009,116,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2009,116,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2009,116,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2009,116,11.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2009,116,1.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2009,116,0.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2009,116,69.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2009,116,3.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2009,116,0.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2009,116,3.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2009,116,1.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2009,116,12.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2009,116,12.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2009,116,2.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2009,116,168.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2009,116,16.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2009,116,50.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2009,116,90.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2009,116,60.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,104.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2009,116,334.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,35.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2009,116,8.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,19.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,14.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2009,116,33.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,17.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2009,116,48.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2009,116,3.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,4.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,275.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2009,116,17.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,3.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,13.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,82.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2009,116,5.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2009,116,6.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2009,116,2.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2009,116,6.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2009,116,14.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2009,116,1.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2009,116,7.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2009,116,6.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2009,116,1.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2009,116,1.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2009,116,1621.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2009,116,8.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2009,116,15.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2009,116,21.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2009,116,2.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2009,116,9.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2009,116,2.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2009,116,2.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2009,116,8.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2009,116,17.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2009,117,28.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2009,117,1.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2009,117,37.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2009,117,90.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2009,117,4.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2009,117,110.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2009,117,59.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2009,117,2.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2009,117,1.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2009,117,1.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2009,117,0.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2009,117,58.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2009,117,35.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2009,117,2.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2009,117,1.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2009,117,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2009,117,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2009,117,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2009,117,0.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2009,117,9.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2009,117,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2009,117,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2009,117,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2009,117,0.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2009,117,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2009,117,41.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2009,117,94.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2009,117,7.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2009,117,13.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2009,117,14.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2009,117,1.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2009,117,2.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2009,117,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2009,117,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2009,117,1.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2009,117,1.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2009,117,43.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2009,117,5.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2009,117,12.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2009,117,28.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2009,117,1.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2009,117,5.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2009,117,4.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2009,117,2.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2009,117,8.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2009,117,0.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2009,117,5.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2009,117,5.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2009,117,1.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2009,117,3.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2009,117,2.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2009,117,0.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2009,117,2.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2009,117,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2009,117,34.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2009,117,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2009,117,5.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2009,117,1.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2009,117,2.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2009,117,5.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2009,117,0.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2009,117,109.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2009,117,1.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2009,117,10.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2009,117,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2009,117,2.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2009,117,0.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2009,117,0.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2009,117,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2009,117,0.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2009,117,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2009,117,18.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2009,117,1.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2009,117,7.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2009,117,1.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2009,117,1.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2009,117,1.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2009,117,0.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2009,117,1.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2009,117,0.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2009,117,1.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2009,117,11.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2009,117,1.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2009,117,1.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2009,117,0.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2009,117,0.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2009,117,0.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2009,117,23.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2009,117,0.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2009,117,1.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2009,117,1.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2009,117,0.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2009,117,21.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2009,117,8.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2009,117,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2009,117,1.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2009,117,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2009,117,48.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2009,117,10.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2009,117,17.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2009,117,1.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2009,117,9.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2009,117,8.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2009,117,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2009,117,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2009,117,1.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2009,117,3.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2009,117,2.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2009,117,73.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2009,117,2.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2009,117,2.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2009,117,0.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2009,117,7.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2009,117,0.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2009,117,1.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2009,117,1.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2009,117,0.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2009,117,1.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2009,117,2.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2009,117,14.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2009,117,3.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2009,117,0.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2009,117,1.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,3.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,1.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,0.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,2.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2009,117,1.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2009,117,0.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2009,117,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,2.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,0.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,0.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,0.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,2.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2009,117,4.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2009,117,3.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2009,117,3.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2009,117,6.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2009,117,55.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2009,117,0.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2009,117,6.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2009,117,2.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2009,117,1.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2009,117,0.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2009,117,0.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2009,117,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2009,117,2.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2009,117,0.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2009,117,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2009,117,6.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2009,117,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2009,117,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2009,117,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2009,117,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2009,117,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2009,117,11.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2009,117,6.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2009,117,1.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2009,117,1.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2009,117,0.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2009,117,0.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2009,117,11.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2009,117,1.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2009,117,1.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2009,117,6.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2009,117,5.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2009,117,0.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2009,117,2.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2009,117,1.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2009,117,0.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2009,117,7.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2009,117,3.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2009,117,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2009,117,0.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2009,117,5.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2009,117,1.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2009,117,14.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2009,117,0.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2009,117,2.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2009,117,39.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2009,117,1.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2009,117,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2009,117,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2009,117,0.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2009,117,1.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2009,117,4.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2009,117,15.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2009,117,12.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2009,117,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2009,117,5.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2009,117,10.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2009,117,3.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2009,117,222.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2009,117,6.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2009,117,10.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2009,117,1.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2009,117,2.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,1.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,2.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2009,117,0.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2009,117,0.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,0.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,4.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,0.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,10.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2009,117,26.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2009,117,0.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2009,117,3.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2009,117,5.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2009,117,2.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2009,117,3.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2009,117,11.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2009,117,1.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2009,117,4.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2009,117,0.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2009,117,5.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2009,117,22.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2009,117,10.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2009,117,23.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2009,117,67.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2009,117,2.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2009,117,4.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2009,117,3.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2009,117,48.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2009,117,2.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,0.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,2.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,7.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,174.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2009,117,2.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2009,117,4.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2009,117,63.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2009,117,0.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2009,117,26.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2009,117,0.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2009,117,16.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2009,117,5.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,1.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,119.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2009,117,19.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,2.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,3.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,6.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2009,117,1.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,2.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2009,117,16.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,0.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2009,117,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,0.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2009,117,3.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2009,117,3.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,4.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,4.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,2.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,11.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2009,117,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,1.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,7.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,10.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2009,117,2.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,0.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2009,117,2.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,2.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,2.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,25.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,2.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,6.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,7.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,11.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,3.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,2.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2009,117,3.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2009,117,0.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,6.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2009,117,3.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,10.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,3.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,5.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,3.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2009,117,1.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2009,117,126.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,22.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,8.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2009,117,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2009,117,8.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2009,117,45.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,6.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2009,117,18.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,22.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2009,117,0.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2009,117,1.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2009,117,0.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2009,117,0.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2009,117,4.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2009,117,20.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2009,117,0.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2009,117,5.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2009,117,0.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2009,117,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2009,117,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2009,117,4.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2009,117,1.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2009,117,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,1.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2009,117,1.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,12.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,2.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2009,117,0.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,1.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2009,117,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,2.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,1.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2009,117,0.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2009,117,1.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,2.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,0.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,4.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2009,117,1.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2009,117,2.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,5.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,2.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,4.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,11.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,1.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,1.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2009,117,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2009,117,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2009,117,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2009,117,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2009,117,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2009,117,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2009,117,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2009,117,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2009,117,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2009,117,1.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2009,117,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,1.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2009,117,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2009,117,3.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2009,117,17.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2009,117,12.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2009,117,67.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2009,117,1.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2009,117,2.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2009,117,0.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2009,117,0.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2009,117,5.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2009,117,7.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2009,117,1.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2009,117,194.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2009,117,19.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2009,117,144.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2009,117,141.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2009,117,9.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,102.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2009,117,269.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,48.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2009,117,4.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,26.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,9.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2009,117,42.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,21.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2009,117,82.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2009,117,1.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,0.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,149.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2009,117,59.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,1.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,6.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,63.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2009,117,1.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2009,117,12.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2009,117,2.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2009,117,8.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2009,117,42.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2009,117,2.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2009,117,7.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2009,117,4.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2009,117,0.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2009,117,14.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2009,117,1129.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2009,117,0.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2009,117,26.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2009,117,14.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2009,117,2.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2009,117,7.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2009,117,0.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2009,117,0.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2009,117,5.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2009,117,11.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2009,118,80.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2009,118,30.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2009,118,125.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2009,118,541.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2009,118,11.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2009,118,239.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2009,118,167.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2009,118,1.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2009,118,1.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2009,118,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2009,118,1.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2009,118,117.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2009,118,75.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2009,118,3.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2009,118,1.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2009,118,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2009,118,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2009,118,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2009,118,0.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2009,118,16.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2009,118,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2009,118,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2009,118,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2009,118,0.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2009,118,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2009,118,58.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2009,118,63.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2009,118,3.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2009,118,5.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2009,118,7.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2009,118,0.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2009,118,3.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2009,118,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2009,118,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2009,118,1.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2009,118,1.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2009,118,42.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2009,118,1.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2009,118,1.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2009,118,7.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2009,118,7.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2009,118,5.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2009,118,1.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2009,118,7.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2009,118,159.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2009,118,1.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2009,118,5.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2009,118,7.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2009,118,2.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2009,118,4.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2009,118,9.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2009,118,0.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2009,118,4.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2009,118,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2009,118,23.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2009,118,1.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2009,118,3.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2009,118,9.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2009,118,12.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2009,118,34.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2009,118,0.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2009,118,73.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2009,118,2.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2009,118,30.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2009,118,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2009,118,2.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2009,118,0.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2009,118,0.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2009,118,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2009,118,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2009,118,1.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2009,118,0.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2009,118,11.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2009,118,1.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2009,118,1.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2009,118,4.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2009,118,0.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2009,118,1.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2009,118,1.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2009,118,2.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2009,118,1.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2009,118,6.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2009,118,0.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2009,118,3.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2009,118,0.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2009,118,0.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2009,118,45.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2009,118,9.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2009,118,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2009,118,0.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2009,118,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2009,118,9.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2009,118,10.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2009,118,21.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2009,118,1.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2009,118,1.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2009,118,3.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2009,118,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2009,118,1.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2009,118,3.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2009,118,41.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2009,118,1.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2009,118,1.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2009,118,19.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2009,118,0.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2009,118,1.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2009,118,0.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2009,118,116.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2009,118,7.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2009,118,1.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2009,118,0.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,1.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,1.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,0.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,2.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2009,118,0.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2009,118,2.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2009,118,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,0.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,1.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,0.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,0.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,0.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2009,118,3.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2009,118,2.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2009,118,1.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2009,118,12.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2009,118,84.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2009,118,2.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2009,118,0.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2009,118,1.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2009,118,5.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2009,118,1.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2009,118,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2009,118,5.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2009,118,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2009,118,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2009,118,14.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2009,118,3.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2009,118,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2009,118,1.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2009,118,9.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2009,118,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2009,118,0.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2009,118,19.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2009,118,4.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2009,118,0.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2009,118,2.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2009,118,0.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2009,118,2.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2009,118,8.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2009,118,0.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2009,118,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2009,118,0.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2009,118,3.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2009,118,5.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2009,118,3.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2009,118,4.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2009,118,5.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2009,118,52.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2009,118,6.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2009,118,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2009,118,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2009,118,2.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2009,118,7.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2009,118,3.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2009,118,26.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2009,118,19.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2009,118,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2009,118,3.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2009,118,16.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2009,118,2.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2009,118,184.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2009,118,1.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2009,118,20.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2009,118,0.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2009,118,2.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2009,118,0.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2009,118,0.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,0.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,5.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2009,118,9.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2009,118,1.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2009,118,2.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2009,118,1.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2009,118,3.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2009,118,1.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2009,118,5.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2009,118,3.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2009,118,1.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2009,118,1.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2009,118,12.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2009,118,32.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2009,118,6.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2009,118,20.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2009,118,72.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2009,118,0.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2009,118,1.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2009,118,0.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2009,118,29.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2009,118,2.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,0.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,6.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,4.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,149.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2009,118,11.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2009,118,5.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2009,118,62.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2009,118,0.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2009,118,4.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2009,118,1.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2009,118,15.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2009,118,3.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,1.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,83.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2009,118,12.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,1.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,0.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,23.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2009,118,0.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,6.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2009,118,26.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,0.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2009,118,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,0.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2009,118,1.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2009,118,0.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,12.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,5.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,38.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2009,118,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,0.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,24.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,13.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2009,118,2.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,0.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2009,118,3.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,1.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,7.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,1.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,44.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,2.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,28.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,2.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,23.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,55.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,0.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,0.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2009,118,2.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2009,118,0.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,11.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,1.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,3.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2009,118,3.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,4.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,2.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,4.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,2.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2009,118,2.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2009,118,1.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2009,118,73.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,10.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,7.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2009,118,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2009,118,2.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2009,118,1.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2009,118,3.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2009,118,3.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2009,118,43.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,5.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,2.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2009,118,14.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,138.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,2.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,1.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2009,118,3.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2009,118,0.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2009,118,0.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2009,118,0.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2009,118,9.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2009,118,32.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2009,118,1.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,17.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2009,118,0.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2009,118,0.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2009,118,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2009,118,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2009,118,5.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2009,118,0.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2009,118,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2009,118,6.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,6.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2009,118,5.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2009,118,0.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2009,118,0.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,12.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,1.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,4.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2009,118,0.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2009,118,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,0.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,1.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,3.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2009,118,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,1.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,1.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2009,118,1.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,1.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,1.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,1.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,4.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2009,118,0.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2009,118,5.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,1.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,1.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,4.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,3.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,7.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,2.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,2.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,7.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,1.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,1.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2009,118,0.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2009,118,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2009,118,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2009,118,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,1.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2009,118,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2009,118,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2009,118,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2009,118,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2009,118,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2009,118,2.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2009,118,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,1.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,1.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2009,118,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2009,118,5.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2009,118,36.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2009,118,37.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2009,118,88.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2009,118,0.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2009,118,6.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2009,118,0.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2009,118,0.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2009,118,63.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2009,118,14.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2009,118,5.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2009,118,458.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2009,118,29.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2009,118,209.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2009,118,103.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2009,118,5.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,279.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2009,118,339.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,286.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2009,118,2.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,52.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,61.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2009,118,70.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,19.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2009,118,138.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2009,118,6.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,2.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,222.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2009,118,261.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,11.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,2.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,117.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2009,118,8.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2009,118,91.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2009,118,1.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2009,118,42.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2009,118,161.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2009,118,6.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2009,118,19.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2009,118,18.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2009,118,2.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2009,118,8.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2009,118,1732.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2009,118,4.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2009,118,14.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2009,118,15.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2009,118,3.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2009,118,17.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2009,118,2.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2009,118,0.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2009,118,34.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2009,118,15.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2009,119,644.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2009,119,262.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2009,119,458.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2009,119,2028.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2009,119,23.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2009,119,710.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2009,119,258.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2009,119,23.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2009,119,1.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2009,119,0.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2009,119,4.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2009,119,318.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2009,119,252.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2009,119,1.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2009,119,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2009,119,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2009,119,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2009,119,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2009,119,0.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2009,119,11.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2009,119,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2009,119,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2009,119,0.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2009,119,0.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2009,119,0.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2009,119,172.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2009,119,68.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2009,119,11.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2009,119,9.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2009,119,9.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2009,119,1.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2009,119,2.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2009,119,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2009,119,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2009,119,2.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2009,119,1.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2009,119,83.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2009,119,1.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2009,119,4.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2009,119,16.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2009,119,4.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2009,119,9.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2009,119,1.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2009,119,9.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2009,119,176.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2009,119,1.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2009,119,4.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2009,119,38.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2009,119,5.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2009,119,5.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2009,119,7.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2009,119,4.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2009,119,2.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2009,119,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2009,119,14.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2009,119,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2009,119,14.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2009,119,9.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2009,119,17.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2009,119,65.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2009,119,5.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2009,119,217.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2009,119,12.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2009,119,75.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2009,119,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2009,119,3.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2009,119,0.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2009,119,0.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2009,119,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2009,119,0.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2009,119,1.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2009,119,0.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2009,119,3.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2009,119,0.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2009,119,1.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2009,119,4.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2009,119,0.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2009,119,1.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2009,119,0.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2009,119,3.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2009,119,1.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2009,119,2.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2009,119,0.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2009,119,0.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2009,119,48.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2009,119,9.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2009,119,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2009,119,3.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2009,119,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2009,119,3.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2009,119,2.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2009,119,36.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2009,119,1.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2009,119,7.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2009,119,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2009,119,1.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2009,119,2.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2009,119,4.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2009,119,1.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2009,119,99.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2009,119,2.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2009,119,1.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2009,119,0.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2009,119,72.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2009,119,0.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2009,119,1.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2009,119,1.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2009,119,0.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2009,119,0.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2009,119,0.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2009,119,119.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2009,119,2.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2009,119,4.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2009,119,8.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2009,119,1.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,0.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,4.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,2.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,3.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2009,119,1.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2009,119,1.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2009,119,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,0.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,1.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,0.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,2.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,0.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,2.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2009,119,10.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2009,119,1.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2009,119,1.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2009,119,2.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2009,119,117.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2009,119,3.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2009,119,39.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2009,119,1.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2009,119,1.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2009,119,1.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2009,119,1.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2009,119,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2009,119,12.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2009,119,1.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2009,119,0.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2009,119,10.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2009,119,0.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2009,119,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2009,119,0.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2009,119,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2009,119,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2009,119,11.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2009,119,1.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2009,119,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2009,119,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2009,119,1.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2009,119,1.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2009,119,7.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2009,119,0.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2009,119,3.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2009,119,70.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2009,119,5.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2009,119,0.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2009,119,39.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2009,119,0.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2009,119,2.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2009,119,7.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2009,119,4.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2009,119,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2009,119,1.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2009,119,14.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2009,119,4.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2009,119,3.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2009,119,3.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2009,119,4.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2009,119,38.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2009,119,4.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2009,119,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2009,119,0.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2009,119,3.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2009,119,17.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2009,119,3.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2009,119,1.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2009,119,24.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2009,119,0.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2009,119,5.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2009,119,14.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2009,119,2.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2009,119,155.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2009,119,3.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2009,119,7.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2009,119,1.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2009,119,1.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,0.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,4.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2009,119,1.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2009,119,0.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,0.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,2.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,1.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,0.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2009,119,10.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2009,119,2.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2009,119,2.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2009,119,7.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2009,119,8.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2009,119,25.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2009,119,2.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2009,119,0.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2009,119,1.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2009,119,1.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2009,119,5.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2009,119,139.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2009,119,19.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2009,119,13.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2009,119,59.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2009,119,0.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2009,119,14.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2009,119,6.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2009,119,78.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2009,119,1.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,1.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,24.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,5.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,137.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2009,119,9.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2009,119,9.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2009,119,81.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2009,119,4.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2009,119,7.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2009,119,10.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2009,119,12.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2009,119,12.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,2.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,213.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2009,119,14.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,3.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,2.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,61.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2009,119,6.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,113.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2009,119,19.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,2.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2009,119,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,0.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2009,119,45.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2009,119,1.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,32.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,10.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,16.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,13.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,173.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2009,119,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,4.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,28.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,69.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2009,119,0.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,0.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2009,119,11.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,77.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,26.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,142.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,2.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,210.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,1.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,35.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,2.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,62.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,0.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,3.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2009,119,48.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2009,119,0.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2009,119,1.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,2.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,73.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,10.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2009,119,2.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,1.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,6.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,3.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,6.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,8.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,6.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2009,119,1.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2009,119,221.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,21.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2009,119,1.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,3.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2009,119,1.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,55.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,2.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,6.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,8.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2009,119,2.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2009,119,0.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,2.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,1.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2009,119,6.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2009,119,12.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,1.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2009,119,4.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2009,119,160.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,3.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,25.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2009,119,14.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,32.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,2.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2009,119,12.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2009,119,3.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2009,119,1.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2009,119,0.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2009,119,69.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2009,119,146.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2009,119,1.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,8.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,80.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,1.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2009,119,0.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2009,119,0.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2009,119,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2009,119,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2009,119,96.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2009,119,3.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2009,119,0.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2009,119,1.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,1.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2009,119,0.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2009,119,1.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2009,119,0.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,31.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,1.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,2.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,0.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2009,119,5.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,3.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,1.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2009,119,2.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,4.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,1.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,2.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2009,119,1.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2009,119,3.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,2.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,1.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,4.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,2.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,9.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2009,119,2.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2009,119,26.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,2.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,5.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,1.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,3.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,6.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,3.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,16.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,7.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,1.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,9.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,1.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,9.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,1.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,2.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2009,119,1.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2009,119,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,1.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,2.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,2.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,1.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2009,119,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2009,119,0.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,1.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2009,119,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,2.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2009,119,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2009,119,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2009,119,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2009,119,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2009,119,1.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,1.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2009,119,1.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,1.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2009,119,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2009,119,24.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2009,119,181.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2009,119,255.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2009,119,422.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2009,119,3.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2009,119,20.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2009,119,2.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2009,119,1.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2009,119,355.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2009,119,121.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2009,119,12.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2009,119,532.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2009,119,115.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2009,119,1416.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2009,119,129.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2009,119,26.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,1106.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2009,119,598.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,457.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2009,119,25.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,176.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,416.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2009,119,53.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,99.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2009,119,460.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2009,119,3.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,6.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,926.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2009,119,1072.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,155.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,46.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,351.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2009,119,66.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2009,119,139.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2009,119,0.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2009,119,69.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2009,119,408.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2009,119,59.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2009,119,91.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2009,119,72.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2009,119,7.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2009,119,137.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2009,119,3975.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2009,119,8.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2009,119,5.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2009,119,120.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2009,119,3.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2009,119,53.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2009,119,4.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2009,119,6.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2009,119,171.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2009,119,48.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2009,120,1508.0,493445.0,7.52153605850378,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2009,120,225.0,71705.0,1.75935989120229,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2009,120,222.0,167103.0,6.86001369583764,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2009,120,1785.0,294006.0,11.7272335299616,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2009,120,127.0,70143.0,4.38817693939782,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2009,120,1621.0,227620.0,9.27104710629476,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2009,120,390.0,126672.0,4.74176838391478,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2009,120,95.0,53234.0,3.63295754093536,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2009,120,1.0,128368.0,4.01897420726823,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2009,120,3.0,72664.0,1.35824352493432,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2009,120,14.0,48029.0,1.18439411079538,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2009,120,1028.0,386868.0,17.3789209654108,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2009,120,450.0,55203.0,3.47585402891724,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2009,120,0.0,101716.0,0.306101747035852,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2009,120,0.0,22373.0,0.308054787229305,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2009,120,0.0,221875.0,1.04038414444798,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2009,120,0.0,125491.0,1.11420930640833,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2009,120,0.0,88345.0,2.21430948011217,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2009,120,18.0,132518.0,1.18217811744033,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2009,120,26.0,1968949.0,47.6782985538971,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2009,120,0.0,53129.0,1.70456196192488,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2009,120,0.0,157269.0,6.17918799132119,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2009,120,26.0,242594.0,2.26718616788681,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2009,120,5.0,50332.0,0.792047749829029,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2009,120,41.0,71225.0,0.381046244100758,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2009,120,120.0,157553.0,0.712830687448296,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2009,120,106.0,298575.0,4.39723257866681,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2009,120,3.0,38129.0,1.2406053315496,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2009,120,11.0,38673.0,0.52154596183835,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2009,120,10.0,46122.0,0.896378776524102,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2009,120,0.0,178231.0,1.13121394283183,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2009,120,8.0,469490.0,5.07747344787439,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2009,120,0.0,59283.0,0.656029822158382,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2009,120,0.0,112499.0,2.49377106402485,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2009,120,0.0,210530.0,6.9975130355485,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2009,120,0.0,144793.0,5.00664750770311,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2009,120,59.0,2198188.0,702.040249909588,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2009,120,8.0,277953.0,73.8349695130053,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2009,120,4.0,251273.0,42.329263797197,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2009,120,11.0,372222.0,42.2795883618884,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2009,120,3.0,418678.0,25.1134702431983,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2009,120,1.0,260679.0,10.9976877316402,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2009,120,3.0,410035.0,14.4847984147232,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2009,120,20.0,264307.0,1.39381797217412,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2009,120,74.0,288539.0,1.2758437296653,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2009,120,2.0,316510.0,9.6354457074201,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2009,120,4.0,269954.0,5.57651913712047,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2009,120,32.0,132063.0,1.08931142045757,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2009,120,13.0,258863.0,11.5164048633514,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2009,120,3.0,252024.0,12.547165283039,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2009,120,9.0,175328.0,8.29848162741356,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2009,120,1.0,135677.0,4.34864296331973,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2009,120,17.0,30253.0,0.82015815411457,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2009,120,0.0,25229.0,1.21513780138037,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2009,120,16.0,504596.0,13.0718139760537,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2009,120,0.0,66531.0,1.42751552632205,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2009,120,6.0,186804.0,11.8429265117204,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2009,120,36.0,245407.0,9.27989126337182,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2009,120,29.0,141523.0,4.06998069952997,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2009,120,117.0,112912.0,2.19404006930903,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2009,120,17.0,135166.0,4.92965039354341,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2009,120,361.0,278981.0,13.1720982941246,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2009,120,13.0,70114.0,1.30980550182408,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2009,120,103.0,121144.0,2.56689694504622,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2009,120,0.0,189848.0,20.1203241937349,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2009,120,0.0,1266366.0,886.494143948233,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2009,120,1.0,168417.0,26.1766079083597,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2009,120,0.0,161722.0,14.9976581452904,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2009,120,0.0,543282.0,31.5478782248845,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2009,120,1.0,188011.0,26.6627073694386,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2009,120,2.0,210774.0,9.76990765832605,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2009,120,2.0,604048.0,16.7826083341458,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2009,120,3.0,548874.0,18.7820098205184,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2009,120,4.0,398963.0,36.3194908004543,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2009,120,1.0,299129.0,8.11954530197127,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2009,120,0.0,186078.0,28.455771100523,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2009,120,0.0,133770.0,22.1737290899025,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2009,120,0.0,211503.0,19.6004929539269,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2009,120,0.0,257346.0,25.8997931825787,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2009,120,1.0,85066.0,23.6295429238565,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2009,120,1.0,404793.0,26.3849890669853,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2009,120,2.0,209665.0,8.38824092034667,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2009,120,0.0,101105.0,7.10899866195161,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2009,120,1.0,130718.0,3.5819404316864,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2009,120,0.0,67660.0,3.98570576314427,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2009,120,2.0,334065.0,26.7965327730527,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2009,120,0.0,303053.0,31.1451033671604,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2009,120,8.0,988834.0,107.738643907134,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2009,120,0.0,228634.0,9.38763884667862,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2009,120,2.0,133798.0,16.0991437901879,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2009,120,0.0,106015.0,7.89240655764477,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2009,120,0.0,43664.0,1.71433251707103,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2009,120,63.0,42012.0,3.78009488283871,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2009,120,27.0,123542.0,6.6999456666411,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2009,120,0.0,86817.0,3.14334413999392,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2009,120,2.0,140241.0,5.09648218775964,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2009,120,0.0,86303.0,4.83846583089732,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2009,120,2.0,202753.0,19.6862753023203,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2009,120,2.0,57861.0,13.4167402321956,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2009,120,10.0,267733.0,8.49027788066552,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,364476.0,42.1698746477762,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2009,120,1.0,299447.0,59.1367831352934,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,58110.0,28.050168917207,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,23596.0,87.4032755909552,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2009,120,3.0,378365.0,45.909687651797,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,139799.0,33.0935209035406,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2009,120,0.0,75530.0,12.584471114027,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,206025.0,55.5083277961321,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,105411.0,73.539660132613,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,101333.0,96.5450613657477,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,85027.0,28.1436111245084,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2009,120,3.0,127790.0,24.0601802893385,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2009,120,1.0,187479.0,69.6866989423822,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,62864.0,48.4745466170634,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,135038.0,53.114370241117,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2009,120,171.0,3393209.0,1005.80007167503,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2009,120,2.0,114051.0,287.243543870581,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2009,120,6.0,250504.0,19.5435701814541,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2009,120,2.0,273006.0,22.830869669765,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2009,120,134.0,147640.0,12.5989055728894,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2009,120,2.0,223066.0,22.8035438091524,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,112051.0,52.0384295246378,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,319281.0,32.1552014324302,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2009,120,0.0,65303.0,15.2194280257047,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,45165.0,22.0092367552562,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2009,120,0.0,226462.0,47.6315135937819,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,98845.0,27.8952757000233,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2009,120,1.0,56405.0,34.875722546672,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2009,120,42.0,98329.0,22.1277286173589,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2009,120,9.0,58818.0,45.657959315537,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2009,120,8.0,90880.0,34.1423592080855,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,528398.0,115.98534742901,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2009,120,0.0,96106.0,49.5473794794129,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,4.0,317478.0,75.9985060486356,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,8.0,74949.0,18.3165950286676,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,0.0,39323.0,13.7488888641838,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,1.0,140217.0,29.2940358294712,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2009,120,0.0,65343.0,65.8970989716588,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2009,120,0.0,115739.0,43.540351797211,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2009,120,0.0,66461.0,40.7357706425367,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,1.0,53289.0,27.9685688925345,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,1.0,52038.0,12.7604961824296,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,0.0,61968.0,20.582337781667,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,0.0,98734.0,32.2036427350412,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,1.0,121097.0,32.1036658885641,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,0.0,61055.0,31.9387052628734,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2009,120,4.0,135007.0,34.3641083624346,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2009,120,2.0,231241.0,66.0269667941365,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2009,120,1.0,83891.0,32.9055983731176,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2009,120,16.0,277499.0,133.746734870897,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2009,120,125.0,1013176.0,2314.95054421198,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2009,120,0.0,129036.0,92.9860949602498,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2009,120,54.0,115876.0,38.01079252184,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2009,120,0.0,169621.0,50.0107585244331,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2009,120,1.0,184072.0,38.3110452403409,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2009,120,1.0,127449.0,50.0062865805935,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2009,120,1.0,74786.0,22.7080152411252,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2009,120,0.0,85805.0,28.1627675332139,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2009,120,12.0,118032.0,45.4367586896923,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2009,120,1.0,39682.0,22.6722169973416,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2009,120,1.0,73585.0,28.1893252997921,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2009,120,5.0,124252.0,17.8028408313432,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2009,120,1.0,64122.0,15.2264472136344,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2009,120,0.0,119021.0,30.4603480351304,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2009,120,1.0,97159.0,73.4887727206378,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2009,120,0.0,53366.0,199.243154922187,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2009,120,0.0,119255.0,101.077124796421,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2009,120,2.0,168544.0,130.652700848109,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2009,120,2.0,502159.0,238.360543763697,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2009,120,0.0,111347.0,65.9840533005032,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2009,120,0.0,55375.0,46.8161954433343,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2009,120,1.0,142661.0,71.7776979631152,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2009,120,0.0,131550.0,117.491630709225,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2009,120,4.0,1009305.0,808.616958606999,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2009,120,1.0,82953.0,95.8047600299275,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2009,120,11.0,313547.0,27.1700921870401,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2009,120,15.0,163053.0,18.6114534871092,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2009,120,3.0,323469.0,36.6479749538646,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2009,120,1.0,211643.0,24.0580317252402,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2009,120,88.0,434423.0,29.0205371264418,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2009,120,0.0,135502.0,14.2393606441256,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2009,120,0.0,177095.0,32.6093524385236,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2009,120,6.0,828290.0,105.344871223421,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2009,120,6.0,261233.0,145.521841629146,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2009,120,1.0,250012.0,142.84612748272,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2009,120,3.0,448098.0,87.5225920772777,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2009,120,5.0,223796.0,87.4188203403361,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2009,120,4.0,517613.0,176.182443359064,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2009,120,5.0,206917.0,220.453564471192,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2009,120,3.0,543555.0,120.104962177179,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2009,120,1.0,160739.0,298.466497213241,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2009,120,46.0,3361068.0,2686.56137856996,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2009,120,3.0,247095.0,255.85200336513,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2009,120,0.0,3108.0,239.182930327048,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2009,120,1.0,92400.0,35.1825685255877,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2009,120,1.0,82086.0,60.112660301922,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2009,120,7.0,171515.0,55.9665164329442,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2009,120,1.0,94713.0,52.4546406512106,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2009,120,3.0,179616.0,75.1021406523082,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2009,120,20.0,409219.0,168.703348280218,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2009,120,1.0,37879.0,40.480306694561,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2009,120,2.0,150890.0,81.8867130032622,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2009,120,11.0,315931.0,80.1062422600619,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2009,120,0.0,67252.0,66.8152649618302,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2009,120,118.0,1144494.0,639.07813968639,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2009,120,4.0,284116.0,95.6351660417974,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2009,120,10.0,125997.0,73.621677602373,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2009,120,1.0,153764.0,28.2357479969492,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2009,120,0.0,66462.0,35.5896453063464,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,0.0,63616.0,51.2682978457749,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,0.0,160544.0,141.90439141935,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2009,120,0.0,109486.0,54.3520268068452,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2009,120,1.0,112062.0,74.3241409982598,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,0.0,93204.0,88.362379242303,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,0.0,45350.0,59.2316816236526,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,3.0,54558.0,38.1321640001899,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,1.0,86384.0,116.611633988544,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2009,120,12.0,794475.0,910.668689916211,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2009,120,1.0,155217.0,84.4289002009927,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2009,120,2.0,124557.0,61.5380207384398,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2009,120,4.0,281255.0,5.32129265816359,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2009,120,4.0,119084.0,5.26408735114764,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2009,120,88.0,186208.0,4.43469923904893,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2009,120,5.0,507637.0,9.27790676701564,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2009,120,1.0,166012.0,13.3241578777291,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2009,120,0.0,176438.0,5.41862792235704,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2009,120,8.0,177864.0,12.3197164633176,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2009,120,3.0,291300.0,17.522353085827,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2009,120,145.0,391940.0,21.4928697526626,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2009,120,36.0,339105.0,18.0218764192783,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2009,120,11.0,259906.0,15.7840122306423,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2009,120,64.0,1030963.0,80.8909361897234,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2009,120,0.0,104871.0,13.0824026956381,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2009,120,32.0,306609.0,16.4044345502447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2009,120,7.0,318562.0,36.8192382843964,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2009,120,67.0,422235.0,39.6523828654572,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2009,120,2.0,307872.0,53.5685503783558,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,0.0,115441.0,26.3779128320637,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,26.0,208335.0,75.7991064983751,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,2.0,546295.0,95.8233361983967,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,120.0,3752436.0,1298.21568342729,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2009,120,40.0,193416.0,12.0279402155602,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2009,120,15.0,261980.0,12.6280623045554,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2009,120,134.0,532286.0,30.9435426812092,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2009,120,86.0,99387.0,19.3213742307975,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2009,120,5.0,382715.0,16.3264641283559,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2009,120,194.0,240423.0,15.6722026379102,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2009,120,25.0,635436.0,33.7729334772288,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2009,120,10.0,212174.0,18.8178188024069,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,0.0,257650.0,44.7835058485489,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,324.0,1099274.0,51.7163142336607,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2009,120,51.0,712255.0,25.6998781064905,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,12.0,148031.0,5.40135914606458,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,7.0,218267.0,6.23454221951061,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,110.0,282334.0,8.50100938567843,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2009,120,20.0,252482.0,16.7898586291666,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,1.0,218010.0,12.2237796100061,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,375.0,166640.0,7.23852527745321,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2009,120,37.0,612786.0,27.4299865856462,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,0.0,43803.0,4.83401989466695,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,3.0,68992.0,8.7170848783697,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2009,120,0.0,85879.0,11.6238880577682,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,1.0,205930.0,17.1398764686045,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2009,120,135.0,160808.0,15.6583506745767,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2009,120,1.0,86907.0,17.2096320665156,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,8.0,182749.0,11.8231013908236,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,18.0,266029.0,22.8976984669764,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,71.0,122258.0,14.4135275876545,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,46.0,141790.0,16.2396510528239,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,126.0,853742.0,45.4415650321721,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2009,120,0.0,203290.0,16.9968394239237,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,4.0,257526.0,24.0137688074604,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,36.0,182433.0,10.8039864558723,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,239.0,345591.0,37.0351293464068,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2009,120,3.0,202466.0,14.3904931664223,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,6.0,98493.0,9.30691323030659,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2009,120,34.0,150746.0,10.9988918073984,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,192.0,165750.0,22.1340856865836,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,81.0,411723.0,48.194029771242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,0.0,89454.0,13.1204296482431,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,1.0,123700.0,69.8725060155814,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,445.0,4997601.0,857.470741430845,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,5.0,387241.0,48.0804158838468,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,62199.0,25.7285752769936,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,172082.0,54.5971914556108,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,1.0,246675.0,83.2355160165352,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,1.0,134119.0,23.2841963101505,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,0.0,86596.0,18.8976348324841,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,217.0,420505.0,37.1563365623114,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,0.0,64052.0,34.6271759828962,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,58.0,529788.0,121.754994553052,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,3.0,255683.0,46.1632396317896,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,91.0,150865.0,18.1020074729722,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,5.0,81709.0,10.6195507600507,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,28.0,480579.0,94.6458289959555,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2009,120,247.0,155082.0,33.9614590518952,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,116377.0,43.2081417244279,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,128104.0,31.9390645587771,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2009,120,3.0,228326.0,32.1908277770114,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,263736.0,50.9900159473183,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,228634.0,45.7283514011447,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,445853.0,58.8486200244847,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,341925.0,73.810445111356,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2009,120,1.0,320896.0,65.2519099556923,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,140686.0,42.9454211721475,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,213601.0,55.5431302657637,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,74765.0,14.8368594190099,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,190671.0,63.9453778218914,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,150789.0,43.6184541431357,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,185246.0,32.1760253325516,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,0.0,226651.0,67.5328170963188,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,89.0,193616.0,39.799580052019,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,5.0,267900.0,55.3786768980446,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,1.0,230375.0,47.7478407167371,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,260.0,277067.0,58.5058176352227,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2009,120,3.0,270467.0,75.169349024516,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2009,120,3.0,745584.0,83.4610649232981,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2009,120,2.0,219011.0,56.080531958767,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,2.0,89257.0,22.08546437335,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,38.0,122754.0,33.4676281779778,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,54.0,195226.0,44.9779788375479,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,80.0,55887.0,18.9529280240463,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,95.0,176548.0,38.1445854939128,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,3.0,294106.0,42.3218357004389,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2009,120,1.0,131253.0,34.224655632014,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2009,120,1.0,103061.0,31.3708147518442,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2009,120,361.0,1565080.0,1096.79091873228,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,53.0,179905.0,85.515759678991,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2009,120,2.0,154231.0,44.6162728290594,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,343725.0,83.526453705806,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2009,120,0.0,76166.0,60.091861541148,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,117.0,200132.0,63.8203134007072,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,123304.0,55.0136899006419,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,13.0,564172.0,78.7668470805395,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,20.0,246917.0,95.6309749505058,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2009,120,0.0,155931.0,94.1681573988027,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2009,120,3.0,64092.0,50.6044589291966,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2009,120,1.0,231406.0,111.179032572676,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2009,120,0.0,29741.0,16.3997496608634,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,42.0,149424.0,91.0918192248576,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,5.0,528445.0,269.462755123058,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2009,120,6.0,700166.0,183.586900763646,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2009,120,2.0,188439.0,79.5822035244718,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2009,120,17.0,204394.0,122.235143492739,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2009,120,0.0,162431.0,103.571160390188,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2009,120,1.0,497768.0,278.865367898317,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,112351.0,79.2371909525808,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2009,120,4.0,216985.0,247.038415231448,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2009,120,289.0,11634331.0,2555.05603028026,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,18.0,151535.0,38.4717462363024,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,64.0,103552.0,36.8042505799533,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2009,120,22.0,134630.0,41.9701993199378,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,197.0,773970.0,74.2603403145274,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,7.0,225839.0,99.6356319361533,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,47106.0,20.5191864053765,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,64535.0,32.1215803229878,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,2.0,78499.0,32.4234156508262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2009,120,22.0,137708.0,50.6992069443632,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2009,120,2.0,207405.0,37.4051235477795,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2009,120,2.0,97684.0,48.4515629554554,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2009,120,1.0,399665.0,115.998394126205,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2009,120,140.0,414643.0,87.38397245938,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2009,120,356.0,988253.0,164.531661316179,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2009,120,0.0,107159.0,34.8248114272731,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,44.0,181016.0,26.3435458772062,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,405.0,256780.0,47.8213545613974,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,7.0,262570.0,58.3161843519405,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,164396.0,42.4644445450794,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2009,120,3.0,584366.0,68.8388225130749,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2009,120,1.0,358426.0,88.7536949823366,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2009,120,0.0,180165.0,30.5290551659506,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2009,120,0.0,211410.0,48.5129497303193,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2009,120,204.0,496776.0,79.075460677247,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2009,120,3.0,306590.0,96.67252114715,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2009,120,1.0,248453.0,84.3520808092537,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2009,120,3.0,575180.0,247.395605465208,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,5.0,556668.0,147.297421254919,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2009,120,0.0,188244.0,106.742921301596,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2009,120,0.0,415366.0,76.5364438087883,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2009,120,4.0,389569.0,166.725848860376,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,52.0,2608081.0,838.877768948426,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,174808.0,109.242736627013,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,7.0,118306.0,41.2634913422979,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,1.0,162523.0,44.2818600622094,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2009,120,15.0,580576.0,33.1890061476298,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,3.0,112315.0,48.82321801401,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,4.0,339341.0,69.4429562510424,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,1.0,274139.0,38.3930749697438,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,1.0,293781.0,52.7863589435,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2009,120,0.0,248314.0,32.2783088854549,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,1.0,196902.0,52.8398421178494,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,3.0,256357.0,114.849180203919,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,139318.0,21.153431052706,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,184675.0,44.5737814910875,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,7.0,1308111.0,308.220652808895,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,1.0,607712.0,755.685441816734,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,3.0,488341.0,155.594521337771,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,68662.0,67.5242050046833,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,3.0,1395905.0,347.437217312736,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2009,120,0.0,416247.0,153.95977074991,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,27425.0,13.0879783582886,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,73854.0,16.7069245352769,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,4.0,276863.0,145.281639530683,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,0.0,251230.0,22.5189897577277,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2009,120,4.0,215649.0,105.779703345683,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,9.0,1893233.0,2790.70670636585,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,0.0,456027.0,764.680125343101,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,7.0,1427107.0,1835.83150270569,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,3.0,974638.0,664.088032587617,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,41.0,13642870.0,5781.29950544682,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2009,120,3.0,1383254.0,671.865229207665,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2009,120,110.0,1479317.0,1086.33136503909,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,3.0,270180.0,26.5597995886203,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,7.0,265325.0,25.863629092507,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,1.0,142420.0,35.1683213291144,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,1.0,119427.0,24.5863695162605,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,218837.0,30.9271107350399,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,8.0,183640.0,35.9285789384438,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,10.0,83420.0,35.2736438198574,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,33958.0,26.0787344226759,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,6.0,521544.0,335.159496203856,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,2.0,285476.0,126.023991169174,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,23.0,726301.0,206.568248362796,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,46235.0,20.3103223870014,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,145441.0,23.5943052289793,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,2.0,72169.0,31.9564626612266,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,1.0,181423.0,40.0825324395482,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,125569.0,45.5213822878796,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,2.0,79752.0,26.2402338159196,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,1.0,97589.0,30.893330707168,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,1.0,162128.0,17.1403786447184,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,105061.0,18.4571621884277,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,1.0,432690.0,64.7787305603283,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,5.0,375903.0,43.0217968100676,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,6.0,441794.0,51.6609659793384,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,20.0,477707.0,86.0384254868685,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,1.0,96003.0,41.31372532376,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,239664.0,44.2829395784685,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,158135.0,40.5132600877517,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,79477.0,16.1533734468343,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,392385.0,24.2216006858859,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,92974.0,17.1987493784147,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,132018.0,21.7308973351291,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,97664.0,34.4082621330733,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,121658.0,22.2513318035004,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,63337.0,25.0338977019171,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,0.0,31661.0,9.16762495299306,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,47281.0,20.569330684966,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,8.0,3194246.0,374.799035389969,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2009,120,1.0,256933.0,42.1536109746375,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2009,120,0.0,88822.0,36.2960987823949,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,1.0,177497.0,41.6445674790894,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,0.0,402987.0,66.9122651063009,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,151240.0,31.1957648937243,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,322199.0,35.6673032659279,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,0.0,145067.0,46.122771755932,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,247489.0,26.3204355207991,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,132860.0,69.5933980220173,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,2.0,806809.0,173.780410759066,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,121865.0,18.5039665839929,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,299345.0,19.0124639721814,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,0.0,203485.0,38.4273835985088,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,0.0,654453.0,138.316140352972,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,0.0,526375.0,342.755468506372,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,55479.0,36.4725256573071,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,2.0,88225.0,41.4157204417905,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,0.0,848224.0,292.759722650431,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2009,120,0.0,24211.0,10.321564623639,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,1.0,372145.0,80.3656688053492,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,1.0,362890.0,171.699399771209,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2009,120,1.0,175898.0,59.1979648198429,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,1.0,156660.0,45.3122267635709,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,147706.0,38.746313066288,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,1.0,181908.0,34.9288702614503,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,217449.0,38.34848890485,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2009,120,0.0,62398.0,20.2754460779323,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,67618.0,30.460889728912,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,1.0,200894.0,18.5537683415898,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,187169.0,36.7500657030354,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,164096.0,33.5867639514556,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2009,120,0.0,332394.0,46.9647213407823,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,154574.0,18.359427234165,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,42965.0,28.6679852425589,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2009,120,0.0,75072.0,20.7995547804338,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2009,120,0.0,131618.0,36.2617731901551,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2009,120,0.0,163932.0,9.51344880163433,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2009,120,0.0,750766.0,150.956729420269,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,115764.0,10.3179351500234,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,374105.0,31.8842646131876,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,64598.0,21.5100288488078,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,328808.0,59.1382132850327,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,309522.0,76.4990095062019,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,157916.0,20.8140108930069,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,201249.0,97.1527928083561,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2009,120,0.0,304571.0,116.826435068609,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,144965.0,29.70385322677,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,3.0,3734095.0,666.540623856755,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,343829.0,39.1061035730815,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,131541.0,22.3584574709879,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,1.0,367017.0,11.8095505256363,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,187397.0,10.8356459151577,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,173706.0,12.1942260802128,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,119253.0,7.26309500210934,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,504907.0,48.8661807341485,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,54112.0,8.53901306170025,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2009,120,0.0,259554.0,28.0237777711131,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2009,120,50.0,133799.0,1.6114080686211,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2009,120,293.0,104043.0,3.75003882119639,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2009,120,412.0,117160.0,2.81194897844782,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2009,120,1406.0,837325.0,29.640712007028,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2009,120,16.0,58198.0,3.61816581578004,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2009,120,15.0,75039.0,4.36623781327829,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2009,120,6.0,143441.0,3.03553780386897,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2009,120,0.0,88259.0,6.55305432089077,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2009,120,355.0,105573.0,4.67587476611973,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2009,120,333.0,477046.0,12.7578333156558,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2009,120,3.0,220615.0,9.81299447962612,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2009,120,687.0,143008.0,1.15318015630052,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2009,120,86.0,106685.0,2.07551862536853,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2009,120,841.0,150321.0,3.51496312204211,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2009,120,124.0,82705.0,1.38767747422,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2009,120,94.0,78985.0,1.43821378622236,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,1070.0,168115.0,3.08213569765403,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2009,120,948.0,177068.0,3.53835357873643,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,238.0,35318.0,0.755238111859631,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2009,120,55.0,109553.0,1.28974350928075,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,96.0,97072.0,1.60714560295536,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,1158.0,64219.0,2.00752826519194,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2009,120,261.0,65247.0,2.0805636205489,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,110.0,152422.0,6.82796740614186,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2009,120,635.0,107756.0,5.70771434504986,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2009,120,3.0,29793.0,4.44582781940712,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,27.0,32618.0,3.53183241112092,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,1665.0,842021.0,30.4969451996215,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2009,120,391.0,132313.0,2.48141193209562,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,285.0,75080.0,7.3225868770202,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,151.0,55062.0,2.03347730898146,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,619.0,265665.0,10.8880819111962,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2009,120,29.0,30666.0,2.86233889409563,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2009,120,225.0,79822.0,3.27416065415833,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2009,120,19.0,87875.0,4.34005679447628,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2009,120,103.0,55305.0,5.00333914375302,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2009,120,444.0,226752.0,6.44960141011157,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2009,120,227.0,63416.0,2.97747302902604,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2009,120,258.0,223970.0,17.0202417275974,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2009,120,149.0,536696.0,64.1401651884,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2009,120,70.0,59909.0,8.4719458204322,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2009,120,146.0,103863.0,19.0215691455463,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2009,120,6406.0,2128243.0,315.065168565581,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2009,120,6.0,109268.0,6.28738264640564,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2009,120,18.0,1023514.0,26.8240525356496,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2009,120,186.0,424683.0,7.57586659603114,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2009,120,14.0,112478.0,8.26835939830402,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2009,120,123.0,355781.0,16.8448370596174,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2009,120,3.0,94450.0,9.91503928271719,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2009,120,10.0,141552.0,9.29499688501164,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2009,120,196.0,98723.0,6.14124797222716,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2009,120,91.0,2606885.0,450.686601852615,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2010,121,4247.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2010,121,719.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2010,121,325.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2010,121,1309.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2010,121,436.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2010,121,1887.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2010,121,881.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2010,121,130.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2010,121,14.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2010,121,1.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2010,121,42.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2010,121,3601.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2010,121,303.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2010,121,2.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2010,121,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2010,121,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2010,121,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2010,121,0.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2010,121,3.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2010,121,43.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2010,121,1.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2010,121,0.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2010,121,1.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2010,121,1.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2010,121,122.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2010,121,374.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2010,121,47.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2010,121,4.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2010,121,28.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2010,121,59.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2010,121,14.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2010,121,4.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2010,121,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2010,121,1.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2010,121,5.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2010,121,0.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2010,121,153.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2010,121,2.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2010,121,4.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2010,121,35.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2010,121,4.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2010,121,12.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2010,121,2.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2010,121,51.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2010,121,229.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2010,121,9.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2010,121,7.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2010,121,64.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2010,121,7.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2010,121,30.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2010,121,21.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2010,121,8.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2010,121,124.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2010,121,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2010,121,55.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2010,121,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2010,121,15.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2010,121,91.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2010,121,38.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2010,121,207.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2010,121,48.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2010,121,711.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2010,121,33.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2010,121,184.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2010,121,0.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2010,121,4.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2010,121,0.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2010,121,1.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2010,121,1.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2010,121,1.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2010,121,1.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2010,121,6.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2010,121,12.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2010,121,11.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2010,121,8.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2010,121,1.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2010,121,2.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2010,121,2.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2010,121,0.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2010,121,3.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2010,121,8.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2010,121,60.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2010,121,2.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2010,121,3.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2010,121,2.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2010,121,3.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2010,121,0.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2010,121,39.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2010,121,4.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2010,121,3.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2010,121,4.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2010,121,1.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2010,121,33.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2010,121,114.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2010,121,0.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2010,121,9.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2010,121,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2010,121,14.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2010,121,3.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2010,121,21.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2010,121,5.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2010,121,0.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2010,121,1.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2010,121,1.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2010,121,2.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2010,121,3.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2010,121,2.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2010,121,1.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2010,121,143.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2010,121,2.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2010,121,6.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2010,121,366.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2010,121,1.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2010,121,4.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2010,121,1.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2010,121,5.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2010,121,0.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2010,121,186.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2010,121,3.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2010,121,12.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2010,121,33.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2010,121,57.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,4.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,10.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,0.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,1.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2010,121,0.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2010,121,2.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2010,121,1.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,0.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,0.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,1.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,4.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,2.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2010,121,0.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2010,121,4.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2010,121,1.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2010,121,1.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2010,121,68.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2010,121,1.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2010,121,69.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2010,121,1.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2010,121,0.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2010,121,5.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2010,121,6.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2010,121,0.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2010,121,0.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2010,121,5.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2010,121,0.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2010,121,0.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2010,121,3.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2010,121,1.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2010,121,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2010,121,0.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2010,121,0.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2010,121,10.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2010,121,0.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2010,121,43.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2010,121,57.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2010,121,5.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2010,121,4.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2010,121,135.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2010,121,0.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2010,121,0.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2010,121,22.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2010,121,20.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2010,121,3.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2010,121,2.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2010,121,7.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2010,121,1.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2010,121,6.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2010,121,16.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2010,121,4.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2010,121,48.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2010,121,5.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2010,121,0.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2010,121,11.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2010,121,3.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2010,121,31.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2010,121,3.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2010,121,22.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2010,121,84.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2010,121,0.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2010,121,4.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2010,121,36.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2010,121,3.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2010,121,288.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2010,121,9.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2010,121,5.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2010,121,0.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2010,121,0.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,0.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,1.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2010,121,0.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2010,121,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,0.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,0.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,0.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,3.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2010,121,1.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2010,121,1.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2010,121,1.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2010,121,9.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2010,121,10.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2010,121,143.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2010,121,7.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2010,121,1.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2010,121,1.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2010,121,2.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2010,121,66.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2010,121,760.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2010,121,24.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2010,121,11.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2010,121,80.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2010,121,1.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2010,121,22.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2010,121,5.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2010,121,189.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2010,121,0.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,3.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,39.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,10.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,177.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2010,121,62.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2010,121,56.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2010,121,32.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2010,121,138.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2010,121,37.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2010,121,127.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2010,121,34.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2010,121,1.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,1.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,343.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2010,121,87.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,423.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,367.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,345.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2010,121,133.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,19.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,1070.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2010,121,2068.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,3.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,31.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2010,121,3.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,3.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2010,121,313.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2010,121,14.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,7.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,211.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,104.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,225.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,454.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2010,121,9.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,39.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,58.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,831.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2010,121,15.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,80.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2010,121,91.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,1163.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,229.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,16.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,2734.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,27.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,0.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,3.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,13.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,0.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,1.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,553.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,8.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,136.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,58.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,301.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,34.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,303.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2010,121,1208.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,2.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,5.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2010,121,51.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,0.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,1.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,8.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,1.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2010,121,2.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,2.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,1.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,5.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,1.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,0.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,118.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,19.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,5.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,673.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2010,121,8.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2010,121,24.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2010,121,12.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,1.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,7.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,54.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,6.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,3.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,4.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2010,121,7.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2010,121,4.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2010,121,534.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,51.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2010,121,16.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,3.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2010,121,0.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,458.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,1.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,50.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,111.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2010,121,0.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2010,121,5.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2010,121,2.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2010,121,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,243.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,13.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2010,121,23.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2010,121,1.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2010,121,24.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2010,121,1.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2010,121,5.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,4.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2010,121,23.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2010,121,322.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,136.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,254.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2010,121,114.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,2026.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,70.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,19.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,90.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,3.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2010,121,72.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2010,121,44.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2010,121,24.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2010,121,26.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2010,121,1202.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2010,121,2161.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2010,121,6.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,312.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,1846.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,112.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,75.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2010,121,22.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2010,121,1.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2010,121,1.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2010,121,3.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2010,121,522.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2010,121,11.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2010,121,3.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2010,121,8.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,21.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2010,121,6.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2010,121,16.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2010,121,17.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,274.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,1.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,41.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,101.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2010,121,143.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,50.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,30.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,25.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,3.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2010,121,5.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,7.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,1.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,16.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,8.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,1.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,1.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,47.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2010,121,1.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,0.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,0.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,26.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,11.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2010,121,15.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,16.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,3.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,28.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,10.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,224.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2010,121,5.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2010,121,1263.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,78.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,35.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,13.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,6.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,82.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,31.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,22.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,4.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,154.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,4.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,57.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,1.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,3.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,6.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,19.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,2.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,1.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,51.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,16.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,107.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,1.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,6.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,3.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,2.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,2.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,19.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2010,121,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2010,121,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,1.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,1.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,1.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,10.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,2.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,1.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,3.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,2.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,1.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,6.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2010,121,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,1.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2010,121,1.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,1.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,2.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,2.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,4.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2010,121,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,3.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,4.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,1.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2010,121,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,1.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2010,121,1.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2010,121,1.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2010,121,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2010,121,3.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,1.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2010,121,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,9.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,1.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,1.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2010,121,1.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2010,121,229.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2010,121,255.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2010,121,395.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2010,121,6486.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2010,121,138.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2010,121,124.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2010,121,81.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2010,121,37.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2010,121,1081.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2010,121,2468.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2010,121,213.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2010,121,1341.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2010,121,277.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2010,121,598.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2010,121,214.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2010,121,306.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,751.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2010,121,1523.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,110.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2010,121,79.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,144.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,1182.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2010,121,422.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,235.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2010,121,1073.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2010,121,24.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,32.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,2010.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2010,121,800.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,1330.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,381.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,1744.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2010,121,139.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2010,121,266.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2010,121,79.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2010,121,242.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2010,121,623.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2010,121,420.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2010,121,1068.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2010,121,735.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2010,121,422.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2010,121,407.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2010,121,18985.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2010,121,85.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2010,121,158.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2010,121,1107.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2010,121,97.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2010,121,458.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2010,121,46.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2010,121,113.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2010,121,828.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2010,121,987.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2010,122,2197.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2010,122,555.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2010,122,304.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2010,122,375.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2010,122,395.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2010,122,783.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2010,122,780.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2010,122,74.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2010,122,15.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2010,122,1.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2010,122,38.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2010,122,7415.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2010,122,222.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2010,122,0.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2010,122,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2010,122,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2010,122,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2010,122,2.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2010,122,2.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2010,122,80.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2010,122,1.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2010,122,2.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2010,122,2.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2010,122,3.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2010,122,52.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2010,122,231.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2010,122,66.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2010,122,5.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2010,122,175.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2010,122,162.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2010,122,11.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2010,122,21.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2010,122,3.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2010,122,0.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2010,122,10.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2010,122,1.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2010,122,298.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2010,122,3.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2010,122,24.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2010,122,19.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2010,122,9.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2010,122,11.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2010,122,6.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2010,122,126.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2010,122,217.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2010,122,7.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2010,122,2.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2010,122,63.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2010,122,31.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2010,122,18.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2010,122,64.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2010,122,16.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2010,122,287.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2010,122,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2010,122,79.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2010,122,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2010,122,51.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2010,122,70.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2010,122,64.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2010,122,267.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2010,122,119.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2010,122,665.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2010,122,127.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2010,122,169.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2010,122,0.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2010,122,5.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2010,122,0.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2010,122,1.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2010,122,1.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2010,122,2.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2010,122,0.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2010,122,9.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2010,122,32.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2010,122,11.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2010,122,11.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2010,122,1.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2010,122,3.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2010,122,1.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2010,122,0.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2010,122,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2010,122,23.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2010,122,54.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2010,122,1.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2010,122,5.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2010,122,0.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2010,122,4.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2010,122,3.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2010,122,52.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2010,122,7.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2010,122,35.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2010,122,9.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2010,122,4.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2010,122,19.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2010,122,248.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2010,122,0.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2010,122,4.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2010,122,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2010,122,148.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2010,122,6.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2010,122,14.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2010,122,11.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2010,122,2.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2010,122,2.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2010,122,0.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2010,122,1.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2010,122,1.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2010,122,1.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2010,122,1.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2010,122,125.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2010,122,4.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2010,122,1.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2010,122,685.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2010,122,1.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2010,122,4.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2010,122,0.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2010,122,3.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2010,122,3.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2010,122,0.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2010,122,184.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2010,122,4.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2010,122,27.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2010,122,231.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2010,122,102.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,0.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,10.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,0.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,2.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2010,122,2.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2010,122,0.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2010,122,1.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,1.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,0.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,2.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,3.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,7.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,1.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2010,122,3.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2010,122,2.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2010,122,0.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2010,122,3.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2010,122,70.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2010,122,0.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2010,122,179.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2010,122,4.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2010,122,2.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2010,122,3.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2010,122,13.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2010,122,0.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2010,122,1.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2010,122,1.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2010,122,0.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2010,122,1.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2010,122,2.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2010,122,2.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2010,122,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2010,122,1.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2010,122,0.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2010,122,19.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2010,122,0.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2010,122,276.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2010,122,264.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2010,122,11.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2010,122,2.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2010,122,250.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2010,122,1.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2010,122,0.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2010,122,47.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2010,122,34.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2010,122,9.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2010,122,34.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2010,122,6.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2010,122,4.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2010,122,16.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2010,122,72.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2010,122,2.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2010,122,132.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2010,122,6.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2010,122,0.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2010,122,13.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2010,122,9.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2010,122,183.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2010,122,14.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2010,122,119.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2010,122,422.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2010,122,0.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2010,122,9.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2010,122,83.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2010,122,3.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2010,122,709.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2010,122,16.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2010,122,7.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2010,122,0.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2010,122,0.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,0.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,1.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2010,122,0.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2010,122,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,1.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,0.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,0.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,0.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2010,122,4.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2010,122,1.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2010,122,0.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2010,122,9.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2010,122,34.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2010,122,139.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2010,122,14.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2010,122,8.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2010,122,1.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2010,122,39.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2010,122,95.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2010,122,823.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2010,122,47.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2010,122,57.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2010,122,107.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2010,122,5.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2010,122,21.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2010,122,8.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2010,122,399.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2010,122,2.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,3.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,24.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,4.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,328.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2010,122,71.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2010,122,117.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2010,122,45.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2010,122,54.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2010,122,191.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2010,122,99.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2010,122,100.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2010,122,3.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,2.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,353.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2010,122,232.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,967.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,1263.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,404.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2010,122,255.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,41.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,603.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2010,122,2672.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,19.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,123.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2010,122,4.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,17.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2010,122,169.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2010,122,63.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,11.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,327.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,128.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,328.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,542.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2010,122,83.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,167.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,202.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,812.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2010,122,57.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,361.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2010,122,288.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,2944.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,768.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,1.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,59.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,9245.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,90.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,2.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,10.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,11.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,6.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,1.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,554.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,9.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,342.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,33.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,287.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,181.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,937.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2010,122,1015.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,23.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,86.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2010,122,682.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,25.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,4.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,31.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,6.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2010,122,6.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,7.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,0.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,35.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,3.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,1.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,189.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,82.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,15.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,863.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2010,122,30.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2010,122,302.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2010,122,106.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,0.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,5.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,210.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,6.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,1.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,8.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2010,122,2.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2010,122,1.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2010,122,517.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,85.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2010,122,210.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,22.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2010,122,10.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,176.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,5.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,99.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,106.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2010,122,2.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2010,122,2.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2010,122,1.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2010,122,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,236.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,49.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2010,122,11.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2010,122,2.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2010,122,88.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2010,122,6.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2010,122,14.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,21.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2010,122,30.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2010,122,938.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,277.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,413.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2010,122,403.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,8068.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,246.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,133.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,181.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,19.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2010,122,208.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2010,122,135.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2010,122,49.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2010,122,20.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2010,122,3044.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2010,122,5168.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2010,122,22.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,499.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,4042.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,517.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,386.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2010,122,68.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2010,122,31.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2010,122,6.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2010,122,4.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2010,122,1285.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2010,122,19.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2010,122,36.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2010,122,66.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,48.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2010,122,124.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2010,122,27.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2010,122,72.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,849.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,4.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,123.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,387.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2010,122,206.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,246.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,173.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,112.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,15.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2010,122,3.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,13.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,2.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,103.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,11.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,12.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,2.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,228.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2010,122,7.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,0.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,1.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,138.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,9.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2010,122,78.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,71.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,9.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,100.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,29.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,943.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2010,122,11.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2010,122,6751.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,310.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,179.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,46.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,72.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,211.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,242.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,288.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,36.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,840.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,9.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,193.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,2.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,3.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,27.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,119.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,35.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,3.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,122.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,53.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,922.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,6.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,4.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,1.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,1.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,2.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,2.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,1.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,31.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2010,122,2.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2010,122,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,2.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,1.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,2.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,6.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,1.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,4.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,11.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,2.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,7.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2010,122,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,2.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,1.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2010,122,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,21.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,3.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,1.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,3.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2010,122,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,2.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,10.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,648.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2010,122,5.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,6.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2010,122,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2010,122,2.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2010,122,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2010,122,4.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,1.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,4.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,1.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,1.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2010,122,2.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,20.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,1.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,1.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2010,122,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2010,122,327.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2010,122,84.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2010,122,516.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2010,122,8910.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2010,122,317.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2010,122,266.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2010,122,443.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2010,122,118.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2010,122,663.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2010,122,4580.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2010,122,792.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2010,122,657.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2010,122,227.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2010,122,274.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2010,122,172.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2010,122,204.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,307.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2010,122,918.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,66.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2010,122,97.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,132.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,614.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2010,122,309.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,194.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2010,122,400.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2010,122,12.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,21.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,1386.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2010,122,291.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,851.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,310.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,1042.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2010,122,115.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2010,122,140.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2010,122,134.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2010,122,219.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2010,122,389.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2010,122,209.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2010,122,896.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2010,122,1282.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2010,122,331.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2010,122,280.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2010,122,13448.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2010,122,190.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2010,122,318.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2010,122,2037.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2010,122,238.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2010,122,731.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2010,122,112.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2010,122,299.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2010,122,782.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2010,122,2515.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2010,123,336.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2010,123,161.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2010,123,190.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2010,123,220.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2010,123,136.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2010,123,188.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2010,123,565.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2010,123,82.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2010,123,6.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2010,123,2.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2010,123,41.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2010,123,5827.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2010,123,218.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2010,123,3.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2010,123,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2010,123,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2010,123,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2010,123,0.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2010,123,3.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2010,123,147.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2010,123,3.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2010,123,18.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2010,123,4.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2010,123,0.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2010,123,29.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2010,123,164.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2010,123,152.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2010,123,3.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2010,123,148.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2010,123,321.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2010,123,52.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2010,123,64.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2010,123,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2010,123,0.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2010,123,8.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2010,123,9.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2010,123,564.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2010,123,17.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2010,123,49.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2010,123,24.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2010,123,15.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2010,123,9.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2010,123,6.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2010,123,249.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2010,123,474.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2010,123,13.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2010,123,6.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2010,123,76.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2010,123,28.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2010,123,24.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2010,123,87.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2010,123,17.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2010,123,86.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2010,123,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2010,123,123.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2010,123,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2010,123,65.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2010,123,100.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2010,123,80.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2010,123,288.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2010,123,239.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2010,123,737.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2010,123,103.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2010,123,223.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2010,123,0.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2010,123,8.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2010,123,3.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2010,123,0.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2010,123,0.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2010,123,0.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2010,123,4.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2010,123,17.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2010,123,54.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2010,123,41.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2010,123,11.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2010,123,0.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2010,123,7.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2010,123,1.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2010,123,1.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2010,123,5.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2010,123,38.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2010,123,74.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2010,123,7.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2010,123,13.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2010,123,2.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2010,123,5.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2010,123,5.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2010,123,93.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2010,123,10.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2010,123,34.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2010,123,99.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2010,123,3.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2010,123,35.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2010,123,305.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2010,123,0.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2010,123,73.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2010,123,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2010,123,82.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2010,123,15.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2010,123,22.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2010,123,13.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2010,123,3.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2010,123,4.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2010,123,1.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2010,123,0.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2010,123,3.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2010,123,1.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2010,123,2.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2010,123,1.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2010,123,218.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2010,123,2.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2010,123,47.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2010,123,9.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2010,123,553.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2010,123,0.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2010,123,1.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2010,123,0.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2010,123,3.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2010,123,5.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2010,123,21.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2010,123,0.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2010,123,66.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2010,123,31.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2010,123,71.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2010,123,631.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2010,123,114.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,4.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,4.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,2.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,1.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2010,123,0.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2010,123,1.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2010,123,3.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,0.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,5.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,1.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,31.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,0.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2010,123,8.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2010,123,1.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2010,123,1.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2010,123,2.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2010,123,132.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2010,123,1.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2010,123,161.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2010,123,20.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2010,123,14.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2010,123,5.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2010,123,5.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2010,123,10.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2010,123,65.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2010,123,3.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2010,123,6.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2010,123,4.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2010,123,1.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2010,123,4.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2010,123,0.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2010,123,0.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2010,123,3.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2010,123,32.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2010,123,23.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2010,123,1.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2010,123,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2010,123,0.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2010,123,1.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2010,123,47.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2010,123,1.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2010,123,213.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2010,123,415.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2010,123,50.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2010,123,20.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2010,123,485.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2010,123,5.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2010,123,4.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2010,123,300.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2010,123,211.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2010,123,16.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2010,123,108.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2010,123,47.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2010,123,17.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2010,123,32.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2010,123,202.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2010,123,8.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2010,123,338.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2010,123,49.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2010,123,1.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2010,123,64.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2010,123,25.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2010,123,676.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2010,123,68.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2010,123,1068.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2010,123,2884.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2010,123,10.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2010,123,62.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2010,123,149.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2010,123,20.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2010,123,1948.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2010,123,92.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2010,123,16.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2010,123,1.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2010,123,1.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,0.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,2.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2010,123,0.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2010,123,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,3.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,1.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,0.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,0.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2010,123,9.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2010,123,2.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2010,123,2.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2010,123,42.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2010,123,103.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2010,123,192.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2010,123,30.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2010,123,3.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2010,123,12.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2010,123,69.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2010,123,130.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2010,123,1955.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2010,123,110.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2010,123,89.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2010,123,176.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2010,123,5.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2010,123,145.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2010,123,35.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2010,123,1100.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2010,123,10.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,8.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,45.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,27.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,480.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2010,123,197.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2010,123,209.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2010,123,42.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2010,123,23.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2010,123,175.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2010,123,70.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2010,123,339.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2010,123,9.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,22.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,680.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2010,123,484.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,1260.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,1630.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,334.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2010,123,545.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,153.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,326.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2010,123,1608.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,36.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,223.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2010,123,10.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,65.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2010,123,115.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2010,123,150.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,39.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,903.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,437.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,249.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,838.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2010,123,240.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,649.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,460.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,881.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2010,123,180.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,859.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2010,123,793.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,2976.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,2088.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,2.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,184.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,23208.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,473.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,15.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,102.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,31.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,74.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,5.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,466.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,42.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,498.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,83.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,203.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,175.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,2787.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2010,123,1140.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,121.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,330.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2010,123,1105.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,606.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,53.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,227.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,3.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2010,123,10.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,20.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,1.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,1.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,2.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,133.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,15.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,2.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,557.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,836.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,22.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,948.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2010,123,204.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2010,123,2077.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2010,123,456.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,4.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,17.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,426.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,7.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,9.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,18.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2010,123,3.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2010,123,2.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2010,123,1215.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,122.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2010,123,936.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,112.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2010,123,57.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,176.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,21.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,194.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,185.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2010,123,6.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2010,123,10.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2010,123,5.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2010,123,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,69.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,135.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2010,123,28.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2010,123,26.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2010,123,185.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2010,123,67.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2010,123,37.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,106.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2010,123,56.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2010,123,1674.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,381.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,468.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2010,123,686.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,10521.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,518.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,164.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,302.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,91.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2010,123,338.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2010,123,479.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2010,123,188.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2010,123,39.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2010,123,2840.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2010,123,9570.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2010,123,120.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,541.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,4518.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,991.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,526.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2010,123,386.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2010,123,142.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2010,123,5.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2010,123,16.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2010,123,1570.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2010,123,94.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2010,123,136.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2010,123,340.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,166.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2010,123,663.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2010,123,70.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2010,123,324.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,2211.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,15.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,117.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,701.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2010,123,250.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,413.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,587.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,321.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,32.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2010,123,4.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,8.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,10.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,2.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,2.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,211.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,55.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,38.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,1629.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2010,123,53.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,5.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,4.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,1062.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,135.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2010,123,240.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,179.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,26.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,499.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,117.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,2541.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2010,123,24.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2010,123,15662.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,346.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,559.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,226.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,540.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,290.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,1011.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,316.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,64.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,2277.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,17.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,649.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,3.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,4.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,30.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,345.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,162.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,1.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,1.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,2.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,513.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,275.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,3474.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,182.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,22.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,1.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,6.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,3.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,25.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2010,123,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2010,123,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,2.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,2.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,1.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,1.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,2.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,3.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,5.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,6.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2010,123,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,2.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2010,123,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,88.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,44.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,2.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2010,123,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,3.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,78.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,1835.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2010,123,2.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,1.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2010,123,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2010,123,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2010,123,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2010,123,3.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,2.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,1.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2010,123,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,1.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,22.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,1.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,1.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2010,123,4.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2010,123,443.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2010,123,51.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2010,123,542.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2010,123,7989.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2010,123,402.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2010,123,396.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2010,123,737.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2010,123,230.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2010,123,414.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2010,123,4262.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2010,123,1913.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2010,123,194.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2010,123,150.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2010,123,145.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2010,123,193.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2010,123,108.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,192.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2010,123,362.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,27.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2010,123,68.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,137.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,529.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2010,123,266.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,214.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2010,123,186.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2010,123,24.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,24.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,983.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2010,123,177.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,426.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,179.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,506.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2010,123,53.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2010,123,84.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2010,123,193.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2010,123,166.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2010,123,328.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2010,123,108.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2010,123,927.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2010,123,1471.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2010,123,168.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2010,123,155.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2010,123,6757.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2010,123,205.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2010,123,643.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2010,123,3761.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2010,123,377.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2010,123,818.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2010,123,178.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2010,123,392.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2010,123,372.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2010,123,3665.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2010,124,70.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2010,124,84.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2010,124,48.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2010,124,176.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2010,124,59.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2010,124,37.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2010,124,315.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2010,124,64.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2010,124,3.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2010,124,1.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2010,124,11.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2010,124,2800.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2010,124,85.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2010,124,34.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2010,124,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2010,124,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2010,124,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2010,124,0.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2010,124,7.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2010,124,130.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2010,124,1.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2010,124,46.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2010,124,3.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2010,124,0.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2010,124,10.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2010,124,94.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2010,124,285.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2010,124,27.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2010,124,142.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2010,124,446.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2010,124,64.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2010,124,44.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2010,124,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2010,124,2.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2010,124,4.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2010,124,2.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2010,124,468.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2010,124,17.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2010,124,33.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2010,124,55.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2010,124,48.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2010,124,14.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2010,124,4.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2010,124,98.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2010,124,204.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2010,124,14.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2010,124,16.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2010,124,75.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2010,124,25.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2010,124,9.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2010,124,40.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2010,124,23.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2010,124,35.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2010,124,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2010,124,166.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2010,124,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2010,124,26.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2010,124,107.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2010,124,67.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2010,124,222.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2010,124,184.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2010,124,684.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2010,124,54.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2010,124,317.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2010,124,0.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2010,124,9.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2010,124,1.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2010,124,2.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2010,124,3.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2010,124,0.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2010,124,10.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2010,124,22.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2010,124,23.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2010,124,70.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2010,124,7.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2010,124,1.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2010,124,6.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2010,124,0.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2010,124,1.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2010,124,5.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2010,124,29.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2010,124,49.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2010,124,15.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2010,124,60.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2010,124,0.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2010,124,6.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2010,124,8.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2010,124,114.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2010,124,29.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2010,124,89.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2010,124,133.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2010,124,12.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2010,124,154.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2010,124,148.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2010,124,1.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2010,124,69.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2010,124,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2010,124,149.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2010,124,9.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2010,124,21.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2010,124,10.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2010,124,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2010,124,1.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2010,124,2.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2010,124,0.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2010,124,2.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2010,124,1.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2010,124,8.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2010,124,2.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2010,124,255.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2010,124,99.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2010,124,15.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2010,124,265.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2010,124,14.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2010,124,3.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2010,124,0.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2010,124,2.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2010,124,8.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2010,124,8.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2010,124,0.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2010,124,72.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2010,124,56.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2010,124,54.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2010,124,542.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2010,124,60.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,2.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,8.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,0.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,2.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2010,124,1.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2010,124,3.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2010,124,2.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,0.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,0.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,9.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,1.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,33.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,0.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2010,124,41.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2010,124,0.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2010,124,2.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2010,124,3.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2010,124,198.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2010,124,5.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2010,124,84.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2010,124,137.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2010,124,21.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2010,124,12.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2010,124,1.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2010,124,1.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2010,124,17.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2010,124,6.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2010,124,4.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2010,124,27.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2010,124,0.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2010,124,9.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2010,124,1.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2010,124,0.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2010,124,3.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2010,124,14.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2010,124,12.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2010,124,0.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2010,124,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2010,124,1.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2010,124,1.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2010,124,81.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2010,124,0.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2010,124,69.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2010,124,197.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2010,124,149.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2010,124,53.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2010,124,178.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2010,124,30.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2010,124,18.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2010,124,464.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2010,124,260.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2010,124,37.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2010,124,187.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2010,124,78.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2010,124,59.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2010,124,84.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2010,124,133.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2010,124,20.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2010,124,853.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2010,124,118.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2010,124,0.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2010,124,109.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2010,124,14.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2010,124,672.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2010,124,60.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2010,124,1543.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2010,124,2938.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2010,124,17.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2010,124,37.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2010,124,122.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2010,124,21.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2010,124,2667.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2010,124,177.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2010,124,80.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2010,124,7.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2010,124,2.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,1.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,2.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2010,124,1.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2010,124,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,1.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,3.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,0.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,4.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2010,124,12.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2010,124,10.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2010,124,2.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2010,124,46.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2010,124,51.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2010,124,142.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2010,124,51.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2010,124,12.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2010,124,42.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2010,124,181.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2010,124,77.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2010,124,1755.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2010,124,150.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2010,124,131.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2010,124,397.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2010,124,5.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2010,124,259.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2010,124,27.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2010,124,772.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2010,124,12.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,4.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,39.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,39.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,597.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2010,124,144.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2010,124,191.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2010,124,187.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2010,124,33.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2010,124,209.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2010,124,58.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2010,124,187.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2010,124,11.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,12.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,876.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2010,124,717.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,470.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,978.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,337.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2010,124,793.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,136.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,261.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2010,124,912.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,81.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,277.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2010,124,30.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,159.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2010,124,182.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2010,124,117.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,53.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,1281.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,599.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,144.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,599.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2010,124,198.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,793.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,386.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,567.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2010,124,255.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,831.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2010,124,981.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,1557.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,2164.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,5.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,193.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,28889.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,670.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,35.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,179.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,72.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,58.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,12.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,409.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,42.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,745.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,23.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,150.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,117.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,2645.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2010,124,1119.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,255.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,117.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2010,124,676.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,672.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,165.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,637.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,7.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2010,124,8.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,48.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,5.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,5.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,4.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,304.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,33.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,7.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,572.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,1117.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,68.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,786.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2010,124,710.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2010,124,4364.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2010,124,1102.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,13.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,24.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,927.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,17.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,55.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,136.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2010,124,5.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2010,124,27.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2010,124,1916.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,189.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2010,124,300.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,399.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2010,124,89.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,477.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,93.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,616.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,282.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2010,124,2.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2010,124,83.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2010,124,5.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2010,124,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,80.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,448.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2010,124,79.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2010,124,171.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2010,124,131.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2010,124,146.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2010,124,7.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,190.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2010,124,104.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2010,124,1870.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,272.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,178.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2010,124,497.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,5849.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,367.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,121.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,181.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,93.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2010,124,309.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2010,124,692.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2010,124,344.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2010,124,57.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2010,124,1840.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2010,124,10107.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2010,124,176.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,364.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,2141.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,939.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,217.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2010,124,307.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2010,124,151.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2010,124,5.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2010,124,10.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2010,124,1393.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2010,124,127.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2010,124,204.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2010,124,743.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,294.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2010,124,610.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2010,124,95.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2010,124,676.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,3010.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,18.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,94.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,396.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2010,124,188.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,409.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,438.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,263.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,34.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2010,124,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,18.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,20.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,3.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,4.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,221.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,84.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,34.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,2559.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2010,124,115.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,14.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,16.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,2260.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,721.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2010,124,348.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,313.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,52.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,579.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,160.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,3356.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2010,124,44.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2010,124,6122.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,472.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,665.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,195.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,557.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,430.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,1092.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,184.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,104.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,2231.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,10.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,844.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,1.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,32.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,489.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,203.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,2.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,1.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,443.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,366.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,4563.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,119.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,64.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,1.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,1.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,6.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,3.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,15.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2010,124,2.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2010,124,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,3.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,2.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,1.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,8.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,1.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,3.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,4.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,1.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,9.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2010,124,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,1.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,1.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2010,124,1.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,70.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,22.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,1.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2010,124,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,2.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,54.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,436.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,1.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2010,124,1.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,2.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2010,124,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2010,124,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2010,124,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2010,124,1.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,2.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2010,124,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,7.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,1.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,1.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,1.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2010,124,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2010,124,232.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2010,124,19.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2010,124,401.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2010,124,4435.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2010,124,248.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2010,124,372.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2010,124,712.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2010,124,251.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2010,124,185.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2010,124,2226.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2010,124,960.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2010,124,117.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2010,124,91.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2010,124,44.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2010,124,169.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2010,124,79.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,162.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2010,124,261.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,7.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2010,124,92.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,68.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,206.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2010,124,62.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,42.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2010,124,62.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2010,124,24.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,19.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,371.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2010,124,14.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,80.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,57.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,201.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2010,124,33.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2010,124,67.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2010,124,225.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2010,124,69.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2010,124,301.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2010,124,52.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2010,124,829.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2010,124,1002.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2010,124,147.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2010,124,46.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2010,124,3801.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2010,124,255.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2010,124,879.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2010,124,2710.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2010,124,337.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2010,124,481.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2010,124,203.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2010,124,365.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2010,124,172.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2010,124,3445.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2010,125,38.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2010,125,41.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2010,125,15.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2010,125,40.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2010,125,35.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2010,125,13.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2010,125,148.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2010,125,29.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2010,125,1.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2010,125,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2010,125,14.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2010,125,1343.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2010,125,27.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2010,125,40.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2010,125,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2010,125,1.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2010,125,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2010,125,0.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2010,125,34.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2010,125,196.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2010,125,2.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2010,125,20.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2010,125,38.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2010,125,0.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2010,125,19.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2010,125,78.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2010,125,824.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2010,125,56.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2010,125,156.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2010,125,229.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2010,125,25.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2010,125,53.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2010,125,1.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2010,125,0.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2010,125,2.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2010,125,12.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2010,125,464.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2010,125,11.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2010,125,71.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2010,125,108.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2010,125,48.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2010,125,13.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2010,125,15.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2010,125,73.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2010,125,124.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2010,125,6.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2010,125,22.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2010,125,38.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2010,125,22.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2010,125,4.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2010,125,29.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2010,125,4.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2010,125,40.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2010,125,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2010,125,248.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2010,125,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2010,125,27.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2010,125,64.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2010,125,32.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2010,125,143.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2010,125,98.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2010,125,485.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2010,125,25.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2010,125,173.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2010,125,1.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2010,125,33.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2010,125,2.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2010,125,1.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2010,125,34.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2010,125,0.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2010,125,1.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2010,125,31.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2010,125,17.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2010,125,103.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2010,125,26.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2010,125,5.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2010,125,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2010,125,2.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2010,125,1.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2010,125,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2010,125,53.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2010,125,47.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2010,125,4.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2010,125,65.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2010,125,1.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2010,125,3.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2010,125,3.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2010,125,176.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2010,125,147.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2010,125,33.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2010,125,140.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2010,125,29.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2010,125,69.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2010,125,38.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2010,125,30.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2010,125,159.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2010,125,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2010,125,196.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2010,125,15.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2010,125,38.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2010,125,5.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2010,125,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2010,125,5.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2010,125,1.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2010,125,0.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2010,125,1.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2010,125,0.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2010,125,33.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2010,125,12.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2010,125,244.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2010,125,2.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2010,125,355.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2010,125,3.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2010,125,117.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2010,125,30.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2010,125,5.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2010,125,10.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2010,125,0.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2010,125,0.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2010,125,76.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2010,125,16.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2010,125,1.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2010,125,103.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2010,125,209.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2010,125,61.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2010,125,744.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2010,125,169.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,3.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,8.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,0.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,15.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2010,125,11.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2010,125,13.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2010,125,1.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,0.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,0.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,13.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,3.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,94.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,1.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2010,125,43.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2010,125,1.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2010,125,0.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2010,125,1.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2010,125,378.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2010,125,24.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2010,125,54.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2010,125,220.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2010,125,22.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2010,125,61.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2010,125,7.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2010,125,0.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2010,125,23.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2010,125,1.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2010,125,6.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2010,125,70.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2010,125,16.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2010,125,11.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2010,125,18.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2010,125,0.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2010,125,8.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2010,125,35.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2010,125,58.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2010,125,1.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2010,125,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2010,125,0.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2010,125,0.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2010,125,246.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2010,125,0.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2010,125,91.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2010,125,398.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2010,125,505.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2010,125,63.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2010,125,111.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2010,125,45.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2010,125,30.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2010,125,567.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2010,125,179.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2010,125,82.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2010,125,347.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2010,125,164.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2010,125,130.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2010,125,132.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2010,125,272.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2010,125,70.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2010,125,2942.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2010,125,475.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2010,125,3.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2010,125,77.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2010,125,24.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2010,125,118.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2010,125,27.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2010,125,1233.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2010,125,2089.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2010,125,13.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2010,125,23.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2010,125,91.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2010,125,73.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2010,125,3836.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2010,125,255.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2010,125,168.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2010,125,4.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2010,125,1.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,4.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,3.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2010,125,21.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2010,125,1.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,2.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,1.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,2.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,1.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2010,125,32.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2010,125,11.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2010,125,0.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2010,125,52.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2010,125,24.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2010,125,121.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2010,125,131.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2010,125,23.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2010,125,165.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2010,125,154.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2010,125,57.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2010,125,1745.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2010,125,279.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2010,125,196.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2010,125,658.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2010,125,7.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2010,125,257.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2010,125,56.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2010,125,618.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2010,125,17.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,0.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,58.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,57.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,1315.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2010,125,104.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2010,125,174.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2010,125,477.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2010,125,47.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2010,125,235.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2010,125,76.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2010,125,181.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2010,125,5.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,6.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,805.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2010,125,744.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,61.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,450.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,262.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2010,125,593.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,115.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,235.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2010,125,1021.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,40.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,238.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2010,125,13.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,145.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2010,125,147.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2010,125,161.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,72.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,1563.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,545.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,76.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,311.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2010,125,129.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,645.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,188.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,237.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2010,125,205.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,173.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2010,125,346.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,429.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,982.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,1.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,153.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,18151.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,185.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,24.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,128.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,23.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,25.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,4.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,419.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,105.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,830.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,27.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,71.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,52.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,1185.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2010,125,426.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,192.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,57.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2010,125,126.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,391.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,76.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,316.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,2.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2010,125,5.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,10.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,2.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,233.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,34.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,2.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,322.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,520.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,58.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,299.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2010,125,632.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2010,125,2553.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2010,125,687.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,29.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,102.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,827.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,24.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,65.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,394.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2010,125,4.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2010,125,85.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2010,125,2044.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,353.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2010,125,149.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,701.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2010,125,117.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,681.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,62.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,800.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,490.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2010,125,4.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2010,125,127.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2010,125,9.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2010,125,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,65.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,819.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2010,125,53.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2010,125,204.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2010,125,257.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2010,125,88.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2010,125,3.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,107.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2010,125,61.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2010,125,2151.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,179.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,42.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2010,125,220.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,2149.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,126.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,42.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,85.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,53.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2010,125,225.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2010,125,426.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2010,125,301.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2010,125,69.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2010,125,513.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2010,125,5687.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2010,125,50.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,159.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,682.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,370.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,67.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2010,125,225.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2010,125,121.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2010,125,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2010,125,4.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2010,125,820.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2010,125,88.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2010,125,120.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2010,125,678.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,284.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2010,125,184.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2010,125,104.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2010,125,567.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,1724.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,8.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,42.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,206.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2010,125,112.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,260.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,262.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,103.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,35.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2010,125,4.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,1.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,5.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,1.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,1.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,172.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,37.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,35.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,1345.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2010,125,125.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,12.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,4.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,2595.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,851.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2010,125,290.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,171.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,27.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,362.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,86.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,1739.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2010,125,19.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2010,125,1535.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,217.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,344.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,65.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,198.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,177.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,450.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,95.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,69.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,986.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,11.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,456.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,2.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,36.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,300.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,143.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,1.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,2.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,145.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,99.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,2077.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,8.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,11.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,2.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,1.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,16.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2010,125,2.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2010,125,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,0.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,1.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,2.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,3.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,3.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,2.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2010,125,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,2.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,1.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2010,125,1.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,15.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,4.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2010,125,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,8.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,32.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2010,125,1.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,1.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2010,125,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2010,125,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2010,125,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2010,125,1.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2010,125,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,7.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2010,125,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2010,125,62.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2010,125,3.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2010,125,179.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2010,125,1402.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2010,125,106.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2010,125,202.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2010,125,630.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2010,125,95.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2010,125,59.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2010,125,660.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2010,125,247.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2010,125,51.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2010,125,55.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2010,125,13.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2010,125,66.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2010,125,31.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,83.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2010,125,109.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,3.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2010,125,16.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,32.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,98.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2010,125,27.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,25.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2010,125,26.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2010,125,27.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,6.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,181.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2010,125,3.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,14.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,27.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,67.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2010,125,8.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2010,125,20.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2010,125,107.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2010,125,23.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2010,125,124.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2010,125,41.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2010,125,574.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2010,125,994.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2010,125,25.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2010,125,28.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2010,125,2411.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2010,125,227.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2010,125,798.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2010,125,1348.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2010,125,206.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2010,125,290.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2010,125,136.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2010,125,200.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2010,125,100.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2010,125,3005.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2010,126,41.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2010,126,33.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2010,126,13.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2010,126,8.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2010,126,15.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2010,126,5.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2010,126,53.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2010,126,26.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2010,126,2.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2010,126,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2010,126,2.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2010,126,832.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2010,126,27.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2010,126,269.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2010,126,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2010,126,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2010,126,1.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2010,126,0.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2010,126,43.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2010,126,170.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2010,126,24.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2010,126,19.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2010,126,60.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2010,126,3.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2010,126,4.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2010,126,40.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2010,126,1581.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2010,126,86.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2010,126,124.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2010,126,85.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2010,126,10.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2010,126,81.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2010,126,1.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2010,126,2.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2010,126,3.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2010,126,5.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2010,126,385.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2010,126,9.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2010,126,57.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2010,126,67.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2010,126,23.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2010,126,19.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2010,126,6.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2010,126,55.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2010,126,140.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2010,126,3.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2010,126,29.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2010,126,16.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2010,126,23.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2010,126,11.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2010,126,14.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2010,126,0.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2010,126,48.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2010,126,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2010,126,194.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2010,126,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2010,126,14.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2010,126,28.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2010,126,17.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2010,126,57.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2010,126,20.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2010,126,204.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2010,126,20.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2010,126,79.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2010,126,0.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2010,126,144.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2010,126,1.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2010,126,4.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2010,126,36.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2010,126,2.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2010,126,11.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2010,126,79.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2010,126,20.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2010,126,57.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2010,126,11.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2010,126,2.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2010,126,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2010,126,2.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2010,126,0.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2010,126,4.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2010,126,56.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2010,126,6.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2010,126,1.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2010,126,32.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2010,126,1.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2010,126,14.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2010,126,18.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2010,126,392.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2010,126,156.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2010,126,11.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2010,126,71.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2010,126,21.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2010,126,9.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2010,126,15.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2010,126,20.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2010,126,92.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2010,126,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2010,126,88.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2010,126,23.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2010,126,28.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2010,126,5.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2010,126,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2010,126,4.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2010,126,0.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2010,126,2.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2010,126,0.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2010,126,52.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2010,126,50.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2010,126,389.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2010,126,0.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2010,126,333.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2010,126,1.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2010,126,56.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2010,126,24.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2010,126,4.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2010,126,2.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2010,126,1.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2010,126,1.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2010,126,29.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2010,126,15.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2010,126,6.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2010,126,56.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2010,126,49.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2010,126,71.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2010,126,640.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2010,126,141.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,12.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,4.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,1.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,11.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2010,126,6.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2010,126,45.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2010,126,7.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,0.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,0.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,0.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,4.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,33.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,2.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2010,126,26.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2010,126,8.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2010,126,4.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2010,126,7.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2010,126,724.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2010,126,20.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2010,126,72.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2010,126,196.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2010,126,7.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2010,126,40.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2010,126,4.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2010,126,0.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2010,126,14.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2010,126,1.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2010,126,7.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2010,126,46.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2010,126,28.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2010,126,21.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2010,126,25.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2010,126,1.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2010,126,6.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2010,126,37.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2010,126,100.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2010,126,2.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2010,126,2.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2010,126,2.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2010,126,8.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2010,126,328.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2010,126,2.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2010,126,44.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2010,126,199.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2010,126,308.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2010,126,55.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2010,126,61.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2010,126,33.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2010,126,25.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2010,126,349.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2010,126,119.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2010,126,102.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2010,126,287.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2010,126,82.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2010,126,120.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2010,126,136.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2010,126,140.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2010,126,118.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2010,126,4522.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2010,126,500.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2010,126,30.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2010,126,18.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2010,126,22.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2010,126,29.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2010,126,10.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2010,126,643.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2010,126,742.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2010,126,10.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2010,126,11.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2010,126,103.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2010,126,154.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2010,126,4613.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2010,126,177.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2010,126,108.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2010,126,4.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2010,126,0.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,0.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,2.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2010,126,6.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2010,126,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,2.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,0.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,2.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,3.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2010,126,29.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2010,126,0.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2010,126,4.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2010,126,24.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2010,126,18.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2010,126,40.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2010,126,72.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2010,126,38.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2010,126,170.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2010,126,38.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2010,126,28.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2010,126,806.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2010,126,114.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2010,126,51.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2010,126,667.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2010,126,9.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2010,126,78.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2010,126,27.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2010,126,245.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2010,126,3.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,4.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,52.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,46.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,1349.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2010,126,19.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2010,126,72.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2010,126,238.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2010,126,2.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2010,126,98.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2010,126,26.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2010,126,46.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2010,126,6.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,3.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,271.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2010,126,294.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,13.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,53.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,105.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2010,126,158.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,27.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,56.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2010,126,327.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,13.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,48.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2010,126,2.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,34.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2010,126,44.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2010,126,61.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,42.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,584.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,251.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,24.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,70.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2010,126,19.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,91.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,39.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,49.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2010,126,31.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,36.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2010,126,56.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,31.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,134.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,3.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,12.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,2149.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,22.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,4.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,7.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,6.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,4.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,3.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,150.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,48.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,244.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,8.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,32.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,19.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,127.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2010,126,38.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,8.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,8.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2010,126,15.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,45.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,5.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,20.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,0.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2010,126,1.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,2.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,1.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,0.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,15.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,4.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,1.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,68.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,76.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,7.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,66.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2010,126,107.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2010,126,309.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2010,126,151.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,17.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,261.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,529.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,23.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,65.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,133.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2010,126,4.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2010,126,38.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2010,126,1136.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,281.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2010,126,16.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,200.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2010,126,37.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,313.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,4.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,510.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,144.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2010,126,1.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2010,126,33.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2010,126,4.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2010,126,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,38.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,456.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2010,126,19.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2010,126,74.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2010,126,132.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2010,126,12.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2010,126,3.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,6.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2010,126,17.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2010,126,1166.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,44.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,10.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2010,126,38.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,407.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,16.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,7.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,27.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,9.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2010,126,30.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2010,126,87.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2010,126,52.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2010,126,7.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2010,126,61.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2010,126,951.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2010,126,4.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,57.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,118.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,44.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,10.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2010,126,46.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2010,126,11.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2010,126,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2010,126,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2010,126,89.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2010,126,9.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2010,126,40.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2010,126,116.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,75.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2010,126,28.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2010,126,7.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2010,126,120.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,261.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,3.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,9.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,56.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2010,126,13.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,18.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,27.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,10.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,7.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2010,126,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,0.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,1.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,0.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,20.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,10.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,6.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,239.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2010,126,24.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,21.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,1.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,587.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,89.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2010,126,58.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,31.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,8.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,41.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,17.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,292.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2010,126,3.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2010,126,223.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,22.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,37.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,6.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,23.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,16.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,53.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,56.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,11.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,85.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,1.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,116.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,1.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,37.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,31.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,11.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,1.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,1.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,16.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,11.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,286.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,3.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,0.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,6.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2010,126,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2010,126,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,1.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,2.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,1.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,1.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,1.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2010,126,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2010,126,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,1.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,2.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2010,126,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,4.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2010,126,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2010,126,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2010,126,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2010,126,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2010,126,0.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2010,126,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,7.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,1.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2010,126,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2010,126,20.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2010,126,4.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2010,126,73.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2010,126,289.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2010,126,4.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2010,126,53.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2010,126,97.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2010,126,7.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2010,126,17.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2010,126,77.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2010,126,33.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2010,126,31.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2010,126,11.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2010,126,4.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2010,126,39.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2010,126,12.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,36.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2010,126,48.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,3.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2010,126,18.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,17.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,43.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2010,126,29.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,10.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2010,126,20.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2010,126,16.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,3.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,132.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2010,126,2.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,8.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,2.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,22.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2010,126,5.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2010,126,2.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2010,126,21.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2010,126,11.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2010,126,41.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2010,126,7.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2010,126,168.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2010,126,369.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2010,126,5.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2010,126,1.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2010,126,1054.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2010,126,59.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2010,126,277.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2010,126,241.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2010,126,70.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2010,126,89.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2010,126,34.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2010,126,25.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2010,126,4.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2010,126,726.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2010,127,23.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2010,127,12.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2010,127,17.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2010,127,6.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2010,127,10.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2010,127,11.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2010,127,9.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2010,127,9.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2010,127,2.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2010,127,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2010,127,3.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2010,127,783.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2010,127,8.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2010,127,112.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2010,127,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2010,127,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2010,127,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2010,127,4.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2010,127,273.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2010,127,231.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2010,127,1.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2010,127,53.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2010,127,51.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2010,127,2.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2010,127,1.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2010,127,36.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2010,127,745.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2010,127,48.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2010,127,45.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2010,127,32.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2010,127,0.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2010,127,66.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2010,127,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2010,127,3.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2010,127,0.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2010,127,9.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2010,127,320.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2010,127,6.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2010,127,61.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2010,127,61.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2010,127,47.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2010,127,53.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2010,127,11.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2010,127,28.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2010,127,70.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2010,127,6.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2010,127,16.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2010,127,14.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2010,127,20.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2010,127,13.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2010,127,6.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2010,127,3.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2010,127,38.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2010,127,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2010,127,251.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2010,127,1.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2010,127,11.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2010,127,7.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2010,127,8.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2010,127,20.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2010,127,4.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2010,127,61.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2010,127,3.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2010,127,16.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2010,127,1.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2010,127,457.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2010,127,2.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2010,127,4.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2010,127,20.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2010,127,2.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2010,127,17.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2010,127,58.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2010,127,7.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2010,127,14.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2010,127,8.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2010,127,1.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2010,127,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2010,127,3.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2010,127,1.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2010,127,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2010,127,31.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2010,127,4.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2010,127,2.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2010,127,8.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2010,127,1.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2010,127,2.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2010,127,12.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2010,127,524.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2010,127,39.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2010,127,11.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2010,127,81.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2010,127,16.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2010,127,0.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2010,127,3.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2010,127,3.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2010,127,32.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2010,127,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2010,127,63.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2010,127,9.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2010,127,4.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2010,127,3.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2010,127,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2010,127,1.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2010,127,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2010,127,12.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2010,127,2.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2010,127,1.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2010,127,1.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2010,127,3.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2010,127,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2010,127,0.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2010,127,3.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2010,127,32.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2010,127,2.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2010,127,45.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2010,127,694.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2010,127,0.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2010,127,302.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2010,127,6.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2010,127,15.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2010,127,44.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2010,127,4.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2010,127,15.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2010,127,3.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2010,127,3.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2010,127,106.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2010,127,4.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2010,127,17.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2010,127,17.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2010,127,9.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2010,127,34.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2010,127,242.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2010,127,88.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,30.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,2.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,1.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,4.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2010,127,3.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2010,127,183.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2010,127,29.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,2.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,0.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,3.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,6.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,14.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,5.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2010,127,14.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2010,127,11.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2010,127,2.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2010,127,28.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2010,127,921.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2010,127,6.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2010,127,96.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2010,127,138.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2010,127,13.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2010,127,35.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2010,127,5.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2010,127,2.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2010,127,4.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2010,127,2.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2010,127,26.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2010,127,69.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2010,127,33.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2010,127,14.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2010,127,9.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2010,127,6.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2010,127,2.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2010,127,26.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2010,127,112.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2010,127,4.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2010,127,5.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2010,127,2.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2010,127,10.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2010,127,365.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2010,127,10.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2010,127,22.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2010,127,99.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2010,127,54.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2010,127,25.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2010,127,23.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2010,127,14.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2010,127,7.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2010,127,215.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2010,127,47.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2010,127,100.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2010,127,121.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2010,127,46.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2010,127,163.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2010,127,136.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2010,127,118.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2010,127,64.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2010,127,4411.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2010,127,207.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2010,127,20.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2010,127,14.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2010,127,9.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2010,127,17.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2010,127,16.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2010,127,188.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2010,127,405.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2010,127,8.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2010,127,16.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2010,127,165.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2010,127,183.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2010,127,3744.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2010,127,129.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2010,127,55.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2010,127,2.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2010,127,0.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,2.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,5.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2010,127,1.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2010,127,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,10.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,3.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,3.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,1.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2010,127,26.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2010,127,1.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2010,127,5.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2010,127,24.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2010,127,8.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2010,127,7.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2010,127,60.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2010,127,36.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2010,127,30.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2010,127,4.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2010,127,21.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2010,127,230.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2010,127,38.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2010,127,49.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2010,127,449.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2010,127,1.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2010,127,74.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2010,127,7.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2010,127,89.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2010,127,4.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,2.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,20.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,22.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,1168.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2010,127,9.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2010,127,13.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2010,127,102.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2010,127,1.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2010,127,89.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2010,127,6.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2010,127,6.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2010,127,8.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,2.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,109.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2010,127,82.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,13.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,11.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,46.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2010,127,27.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,4.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,9.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2010,127,77.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,1.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,3.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2010,127,0.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,18.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2010,127,18.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2010,127,19.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,10.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,187.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,47.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,4.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,35.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2010,127,3.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,16.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,14.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,35.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2010,127,7.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,15.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2010,127,8.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,11.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,32.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,6.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,519.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,9.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,2.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,0.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,42.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,41.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,98.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,1.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,11.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,5.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,20.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2010,127,11.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,1.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,2.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2010,127,5.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,14.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,1.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,14.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2010,127,1.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,1.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,4.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,19.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,19.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,2.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,32.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2010,127,18.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2010,127,46.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2010,127,23.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,18.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,123.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,319.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,12.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,128.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,26.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2010,127,0.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2010,127,17.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2010,127,670.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,218.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2010,127,7.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,68.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2010,127,16.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,98.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,2.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,227.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,74.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2010,127,2.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2010,127,5.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2010,127,0.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2010,127,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,18.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,272.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2010,127,18.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2010,127,22.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2010,127,50.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2010,127,1.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2010,127,0.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,7.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2010,127,4.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2010,127,972.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,20.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,8.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2010,127,23.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,76.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,7.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,1.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,7.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,0.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2010,127,7.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2010,127,28.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2010,127,20.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2010,127,22.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2010,127,15.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2010,127,204.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2010,127,3.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,29.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,21.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,8.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,4.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2010,127,16.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2010,127,2.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2010,127,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2010,127,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2010,127,18.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2010,127,2.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2010,127,2.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2010,127,11.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,22.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2010,127,11.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2010,127,3.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2010,127,16.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,107.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,0.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,1.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,15.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2010,127,7.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,3.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,21.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,6.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,5.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2010,127,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,1.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,0.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,14.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,5.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,6.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,57.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2010,127,6.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,3.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,1.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,112.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,27.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2010,127,10.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,8.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,3.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,19.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,5.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,156.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2010,127,8.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2010,127,34.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,14.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,16.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,3.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,11.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,1.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,17.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,7.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,4.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,17.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,3.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,25.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,6.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,5.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,3.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,2.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,3.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,92.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,1.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,6.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2010,127,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2010,127,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,1.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,1.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2010,127,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2010,127,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2010,127,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,1.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,2.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2010,127,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2010,127,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2010,127,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2010,127,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2010,127,1.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2010,127,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,6.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2010,127,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2010,127,11.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2010,127,0.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2010,127,39.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2010,127,202.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2010,127,3.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2010,127,9.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2010,127,22.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2010,127,2.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2010,127,6.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2010,127,23.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2010,127,11.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2010,127,5.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2010,127,5.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2010,127,17.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2010,127,24.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2010,127,3.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,15.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2010,127,25.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,2.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2010,127,12.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,3.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,32.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2010,127,6.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,4.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2010,127,22.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2010,127,10.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,0.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,149.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2010,127,1.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,1.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,3.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,10.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2010,127,0.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2010,127,1.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2010,127,8.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2010,127,22.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2010,127,14.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2010,127,0.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2010,127,77.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2010,127,109.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2010,127,4.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2010,127,2.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2010,127,687.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2010,127,11.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2010,127,123.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2010,127,92.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2010,127,18.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2010,127,24.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2010,127,3.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2010,127,6.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2010,127,1.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2010,127,218.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2010,128,6.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2010,128,23.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2010,128,21.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2010,128,11.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2010,128,1.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2010,128,6.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2010,128,3.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2010,128,14.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2010,128,0.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2010,128,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2010,128,3.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2010,128,422.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2010,128,3.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2010,128,127.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2010,128,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2010,128,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2010,128,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2010,128,4.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2010,128,137.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2010,128,257.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2010,128,6.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2010,128,32.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2010,128,13.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2010,128,0.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2010,128,0.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2010,128,20.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2010,128,588.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2010,128,55.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2010,128,18.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2010,128,4.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2010,128,1.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2010,128,93.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2010,128,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2010,128,62.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2010,128,2.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2010,128,20.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2010,128,445.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2010,128,17.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2010,128,128.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2010,128,68.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2010,128,82.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2010,128,31.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2010,128,21.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2010,128,28.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2010,128,138.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2010,128,27.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2010,128,24.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2010,128,4.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2010,128,6.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2010,128,11.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2010,128,1.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2010,128,1.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2010,128,58.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2010,128,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2010,128,419.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2010,128,1.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2010,128,15.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2010,128,13.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2010,128,6.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2010,128,7.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2010,128,5.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2010,128,27.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2010,128,1.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2010,128,30.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2010,128,26.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2010,128,1151.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2010,128,3.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2010,128,4.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2010,128,22.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2010,128,9.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2010,128,85.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2010,128,22.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2010,128,6.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2010,128,23.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2010,128,3.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2010,128,0.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2010,128,1.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2010,128,3.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2010,128,0.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2010,128,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2010,128,10.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2010,128,4.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2010,128,2.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2010,128,3.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2010,128,0.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2010,128,10.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2010,128,11.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2010,128,391.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2010,128,12.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2010,128,6.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2010,128,74.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2010,128,3.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2010,128,0.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2010,128,5.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2010,128,2.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2010,128,10.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2010,128,1.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2010,128,20.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2010,128,2.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2010,128,1.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2010,128,4.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2010,128,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2010,128,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2010,128,1.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2010,128,15.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2010,128,0.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2010,128,1.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2010,128,3.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2010,128,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2010,128,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2010,128,2.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2010,128,2.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2010,128,25.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2010,128,4.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2010,128,26.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2010,128,738.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2010,128,1.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2010,128,237.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2010,128,66.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2010,128,6.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2010,128,64.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2010,128,2.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2010,128,6.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2010,128,0.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2010,128,1.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2010,128,73.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2010,128,2.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2010,128,10.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2010,128,0.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2010,128,4.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2010,128,15.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2010,128,99.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2010,128,39.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,20.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,3.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,6.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,5.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2010,128,4.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2010,128,176.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2010,128,19.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,8.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,5.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,6.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,4.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,5.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2010,128,10.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2010,128,1.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2010,128,1.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2010,128,22.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2010,128,664.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2010,128,8.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2010,128,57.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2010,128,62.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2010,128,32.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2010,128,10.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2010,128,6.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2010,128,1.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2010,128,8.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2010,128,0.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2010,128,16.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2010,128,75.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2010,128,33.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2010,128,9.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2010,128,5.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2010,128,6.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2010,128,17.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2010,128,12.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2010,128,99.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2010,128,2.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2010,128,5.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2010,128,4.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2010,128,12.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2010,128,141.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2010,128,12.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2010,128,5.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2010,128,9.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2010,128,50.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2010,128,18.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2010,128,21.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2010,128,10.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2010,128,3.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2010,128,150.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2010,128,19.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2010,128,49.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2010,128,35.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2010,128,15.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2010,128,133.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2010,128,70.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2010,128,60.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2010,128,44.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2010,128,2474.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2010,128,128.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2010,128,3.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2010,128,3.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2010,128,7.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2010,128,6.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2010,128,4.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2010,128,132.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2010,128,199.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2010,128,7.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2010,128,10.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2010,128,105.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2010,128,46.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2010,128,2494.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2010,128,50.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2010,128,28.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2010,128,2.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2010,128,2.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,0.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,2.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2010,128,4.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2010,128,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,17.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,2.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,0.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,1.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2010,128,51.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2010,128,1.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2010,128,1.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2010,128,14.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2010,128,98.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2010,128,8.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2010,128,31.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2010,128,54.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2010,128,2.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2010,128,4.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2010,128,13.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2010,128,76.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2010,128,20.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2010,128,37.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2010,128,281.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2010,128,2.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2010,128,40.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2010,128,15.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2010,128,59.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2010,128,2.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,1.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,5.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,12.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,498.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2010,128,4.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2010,128,8.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2010,128,74.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2010,128,1.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2010,128,15.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2010,128,5.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2010,128,9.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2010,128,10.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,0.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,108.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2010,128,30.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,3.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,7.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,11.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2010,128,8.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,4.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,3.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2010,128,36.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,0.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,2.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2010,128,1.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,1.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2010,128,3.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2010,128,9.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,7.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,7.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,8.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,11.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,18.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2010,128,4.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,15.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,12.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,10.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2010,128,2.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,0.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2010,128,8.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,12.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,13.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,5.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,167.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,7.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,1.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,1.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,0.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,0.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,72.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,16.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,42.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,2.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,3.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,1.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,8.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2010,128,3.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,2.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2010,128,5.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,3.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,1.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,23.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,1.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2010,128,0.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,1.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,2.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,8.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,2.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,1.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,6.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2010,128,6.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2010,128,18.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2010,128,13.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,14.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,51.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,163.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,18.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,106.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,13.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2010,128,4.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2010,128,8.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2010,128,752.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,72.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2010,128,1.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,33.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2010,128,4.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,34.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,23.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,88.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,27.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2010,128,0.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2010,128,1.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2010,128,0.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2010,128,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,11.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,249.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2010,128,7.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2010,128,5.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2010,128,27.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2010,128,0.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2010,128,2.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,1.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2010,128,2.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2010,128,839.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,5.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,7.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2010,128,16.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,29.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,1.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,1.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,3.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,0.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2010,128,12.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2010,128,9.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2010,128,4.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2010,128,3.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2010,128,14.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2010,128,92.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2010,128,3.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,16.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,6.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,4.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,6.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2010,128,10.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2010,128,6.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2010,128,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2010,128,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2010,128,6.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2010,128,1.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2010,128,1.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2010,128,3.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,13.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2010,128,0.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2010,128,1.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2010,128,5.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,93.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,2.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,1.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,3.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2010,128,5.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,1.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,13.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,5.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,0.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2010,128,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,0.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,0.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,10.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,3.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,3.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,32.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2010,128,2.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,0.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,1.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,56.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,4.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2010,128,1.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,0.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,4.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,5.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,4.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,52.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2010,128,4.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2010,128,17.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,5.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,11.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,1.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,1.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,1.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,13.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,12.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,2.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,10.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,1.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,14.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,13.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,1.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,2.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,18.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2010,128,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2010,128,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,1.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2010,128,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2010,128,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2010,128,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,1.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2010,128,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2010,128,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2010,128,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2010,128,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2010,128,2.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2010,128,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,9.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,1.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2010,128,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2010,128,5.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2010,128,1.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2010,128,26.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2010,128,136.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2010,128,1.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2010,128,3.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2010,128,8.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2010,128,1.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2010,128,3.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2010,128,16.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2010,128,5.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2010,128,5.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2010,128,3.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2010,128,8.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2010,128,14.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2010,128,1.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,3.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2010,128,26.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,0.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2010,128,9.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,2.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,16.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2010,128,2.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,4.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2010,128,9.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2010,128,10.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,0.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,134.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2010,128,1.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,1.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,1.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,2.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2010,128,1.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2010,128,0.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2010,128,3.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2010,128,30.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2010,128,13.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2010,128,1.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2010,128,56.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2010,128,43.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2010,128,0.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2010,128,1.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2010,128,885.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2010,128,9.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2010,128,79.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2010,128,69.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2010,128,15.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2010,128,15.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2010,128,5.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2010,128,1.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2010,128,7.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2010,128,114.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2010,129,19.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2010,129,7.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2010,129,21.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2010,129,7.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2010,129,1.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2010,129,9.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2010,129,0.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2010,129,13.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2010,129,4.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2010,129,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2010,129,5.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2010,129,597.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2010,129,12.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2010,129,67.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2010,129,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2010,129,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2010,129,1.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2010,129,22.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2010,129,36.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2010,129,267.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2010,129,2.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2010,129,5.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2010,129,2.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2010,129,0.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2010,129,1.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2010,129,2.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2010,129,279.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2010,129,22.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2010,129,12.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2010,129,1.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2010,129,1.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2010,129,44.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2010,129,1.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2010,129,64.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2010,129,0.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2010,129,17.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2010,129,365.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2010,129,31.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2010,129,76.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2010,129,64.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2010,129,114.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2010,129,30.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2010,129,7.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2010,129,19.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2010,129,100.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2010,129,29.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2010,129,26.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2010,129,9.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2010,129,4.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2010,129,24.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2010,129,6.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2010,129,0.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2010,129,32.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2010,129,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2010,129,325.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2010,129,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2010,129,10.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2010,129,5.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2010,129,9.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2010,129,3.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2010,129,7.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2010,129,9.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2010,129,0.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2010,129,10.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2010,129,46.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2010,129,611.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2010,129,3.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2010,129,4.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2010,129,23.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2010,129,34.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2010,129,48.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2010,129,17.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2010,129,7.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2010,129,9.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2010,129,2.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2010,129,0.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2010,129,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2010,129,1.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2010,129,3.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2010,129,0.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2010,129,6.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2010,129,7.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2010,129,13.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2010,129,1.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2010,129,0.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2010,129,3.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2010,129,8.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2010,129,342.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2010,129,1.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2010,129,4.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2010,129,31.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2010,129,0.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2010,129,0.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2010,129,1.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2010,129,2.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2010,129,3.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2010,129,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2010,129,6.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2010,129,2.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2010,129,2.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2010,129,1.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2010,129,168.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2010,129,49.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2010,129,1.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2010,129,1.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2010,129,2.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2010,129,6.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2010,129,16.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2010,129,2.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2010,129,7.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2010,129,587.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2010,129,269.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2010,129,12.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2010,129,15.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2010,129,79.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2010,129,3.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2010,129,3.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2010,129,1.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2010,129,5.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2010,129,98.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2010,129,16.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2010,129,1.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2010,129,0.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2010,129,8.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2010,129,21.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2010,129,17.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,11.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,8.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,7.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,4.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2010,129,3.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2010,129,93.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2010,129,10.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,16.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,2.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,6.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,13.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,0.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2010,129,2.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2010,129,5.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2010,129,1.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2010,129,12.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2010,129,464.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2010,129,1.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2010,129,13.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2010,129,88.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2010,129,24.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2010,129,27.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2010,129,2.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2010,129,9.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2010,129,4.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2010,129,2.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2010,129,16.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2010,129,46.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2010,129,6.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2010,129,2.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2010,129,0.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2010,129,4.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2010,129,15.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2010,129,21.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2010,129,37.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2010,129,4.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2010,129,2.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2010,129,3.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2010,129,3.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2010,129,169.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2010,129,7.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2010,129,4.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2010,129,13.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2010,129,15.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2010,129,1.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2010,129,8.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2010,129,2.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2010,129,1.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2010,129,83.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2010,129,15.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2010,129,24.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2010,129,9.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2010,129,10.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2010,129,96.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2010,129,31.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2010,129,37.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2010,129,40.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2010,129,731.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2010,129,57.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2010,129,2.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2010,129,4.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2010,129,8.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2010,129,2.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2010,129,6.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2010,129,69.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2010,129,79.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2010,129,2.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2010,129,3.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2010,129,87.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2010,129,14.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2010,129,1584.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2010,129,17.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2010,129,39.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2010,129,3.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2010,129,0.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,2.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,3.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2010,129,1.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2010,129,1.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,5.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,1.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,2.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,0.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2010,129,29.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2010,129,3.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2010,129,2.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2010,129,1.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2010,129,50.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2010,129,3.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2010,129,11.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2010,129,21.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2010,129,3.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2010,129,4.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2010,129,7.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2010,129,33.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2010,129,15.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2010,129,19.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2010,129,145.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2010,129,0.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2010,129,98.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2010,129,5.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2010,129,45.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2010,129,2.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,4.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,2.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,5.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,207.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2010,129,1.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2010,129,4.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2010,129,88.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2010,129,4.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2010,129,6.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2010,129,4.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2010,129,6.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2010,129,6.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,0.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,147.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2010,129,58.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,3.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,2.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,4.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2010,129,3.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,1.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,3.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2010,129,25.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,0.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,3.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2010,129,0.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,4.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2010,129,2.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2010,129,3.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,5.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,4.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,14.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,16.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,31.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2010,129,15.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,8.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,10.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,15.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2010,129,2.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,3.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2010,129,6.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,10.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,8.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,5.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,147.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,10.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,1.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,1.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,0.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,20.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,2.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,22.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,2.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,7.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,1.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,17.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2010,129,4.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,1.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,9.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2010,129,3.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,5.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,1.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,2.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,1.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,2.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,0.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,8.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2010,129,8.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2010,129,15.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2010,129,7.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,7.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,8.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,46.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,11.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,28.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,17.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2010,129,3.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2010,129,4.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2010,129,471.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,53.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2010,129,11.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,15.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2010,129,1.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,20.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,27.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,50.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,9.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2010,129,2.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2010,129,3.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2010,129,0.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2010,129,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,6.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,130.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2010,129,3.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2010,129,0.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2010,129,8.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2010,129,0.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,0.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2010,129,0.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2010,129,402.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,9.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,4.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2010,129,14.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,13.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,1.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,0.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,2.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,5.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2010,129,2.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2010,129,2.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2010,129,3.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2010,129,1.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2010,129,4.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2010,129,77.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2010,129,1.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,5.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,10.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,1.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,1.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2010,129,10.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2010,129,0.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2010,129,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2010,129,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2010,129,10.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2010,129,1.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2010,129,1.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2010,129,2.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,1.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2010,129,1.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2010,129,0.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2010,129,2.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,79.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,0.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,4.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2010,129,3.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,0.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,12.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,10.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,1.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2010,129,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,0.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,3.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,2.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,1.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,21.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2010,129,0.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,1.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,47.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,1.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2010,129,2.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,2.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,0.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,6.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,1.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,36.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2010,129,3.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2010,129,6.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,3.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,5.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,1.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,4.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,41.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,28.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,2.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,14.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,3.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,15.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,9.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,1.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,1.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,24.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,1.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2010,129,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2010,129,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,1.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2010,129,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,1.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2010,129,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2010,129,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,1.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2010,129,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2010,129,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2010,129,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2010,129,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2010,129,0.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2010,129,1.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,4.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,1.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2010,129,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2010,129,4.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2010,129,3.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2010,129,14.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2010,129,173.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2010,129,2.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2010,129,2.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2010,129,10.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2010,129,1.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2010,129,2.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2010,129,23.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2010,129,5.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2010,129,25.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2010,129,3.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2010,129,11.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2010,129,10.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2010,129,1.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,2.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2010,129,23.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,6.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2010,129,7.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,2.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,19.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2010,129,5.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,10.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2010,129,15.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2010,129,64.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,3.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,83.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2010,129,0.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,1.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,2.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,3.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2010,129,0.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2010,129,0.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2010,129,2.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2010,129,8.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2010,129,7.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2010,129,0.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2010,129,20.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2010,129,32.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2010,129,5.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2010,129,3.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2010,129,1382.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2010,129,19.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2010,129,33.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2010,129,67.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2010,129,13.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2010,129,15.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2010,129,1.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2010,129,3.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2010,129,2.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2010,129,82.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2010,130,38.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2010,130,34.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2010,130,15.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2010,130,22.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2010,130,17.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2010,130,20.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2010,130,4.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2010,130,24.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2010,130,0.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2010,130,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2010,130,14.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2010,130,1010.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2010,130,16.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2010,130,102.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2010,130,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2010,130,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2010,130,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2010,130,45.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2010,130,25.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2010,130,233.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2010,130,0.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2010,130,27.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2010,130,1.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2010,130,1.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2010,130,0.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2010,130,23.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2010,130,70.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2010,130,21.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2010,130,5.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2010,130,2.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2010,130,2.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2010,130,46.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2010,130,1.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2010,130,43.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2010,130,0.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2010,130,20.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2010,130,307.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2010,130,30.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2010,130,82.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2010,130,78.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2010,130,77.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2010,130,47.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2010,130,17.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2010,130,57.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2010,130,149.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2010,130,25.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2010,130,18.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2010,130,46.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2010,130,15.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2010,130,114.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2010,130,18.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2010,130,4.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2010,130,60.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2010,130,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2010,130,267.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2010,130,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2010,130,3.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2010,130,8.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2010,130,3.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2010,130,12.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2010,130,4.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2010,130,21.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2010,130,0.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2010,130,6.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2010,130,58.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2010,130,227.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2010,130,2.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2010,130,3.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2010,130,9.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2010,130,12.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2010,130,45.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2010,130,17.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2010,130,15.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2010,130,2.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2010,130,2.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2010,130,0.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2010,130,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2010,130,2.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2010,130,2.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2010,130,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2010,130,5.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2010,130,2.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2010,130,40.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2010,130,3.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2010,130,0.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2010,130,4.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2010,130,5.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2010,130,167.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2010,130,6.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2010,130,2.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2010,130,6.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2010,130,0.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2010,130,0.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2010,130,0.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2010,130,0.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2010,130,1.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2010,130,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2010,130,3.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2010,130,0.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2010,130,0.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2010,130,8.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2010,130,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2010,130,0.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2010,130,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2010,130,358.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2010,130,1.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2010,130,42.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2010,130,9.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2010,130,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2010,130,0.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2010,130,53.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2010,130,0.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2010,130,19.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2010,130,1.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2010,130,5.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2010,130,483.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2010,130,7.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2010,130,278.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2010,130,7.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2010,130,19.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2010,130,112.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2010,130,0.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2010,130,13.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2010,130,3.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2010,130,95.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2010,130,182.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2010,130,2.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2010,130,35.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2010,130,0.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2010,130,0.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2010,130,10.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2010,130,25.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2010,130,7.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,21.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,11.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,3.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,1.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2010,130,7.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2010,130,74.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2010,130,3.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,16.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,2.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,31.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,22.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,8.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2010,130,26.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2010,130,7.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2010,130,0.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2010,130,32.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2010,130,377.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2010,130,5.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2010,130,3.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2010,130,39.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2010,130,9.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2010,130,19.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2010,130,14.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2010,130,5.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2010,130,2.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2010,130,3.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2010,130,7.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2010,130,88.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2010,130,14.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2010,130,22.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2010,130,7.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2010,130,0.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2010,130,11.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2010,130,23.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2010,130,23.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2010,130,2.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2010,130,1.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2010,130,2.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2010,130,5.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2010,130,86.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2010,130,20.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2010,130,5.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2010,130,11.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2010,130,16.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2010,130,5.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2010,130,9.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2010,130,1.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2010,130,0.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2010,130,30.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2010,130,2.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2010,130,23.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2010,130,4.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2010,130,9.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2010,130,93.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2010,130,20.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2010,130,46.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2010,130,36.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2010,130,276.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2010,130,27.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2010,130,0.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2010,130,0.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2010,130,8.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2010,130,3.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2010,130,1.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2010,130,43.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2010,130,53.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2010,130,2.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2010,130,3.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2010,130,58.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2010,130,9.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2010,130,1147.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2010,130,21.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2010,130,15.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2010,130,1.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2010,130,2.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,1.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,3.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2010,130,3.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2010,130,1.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,7.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,2.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,1.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,0.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2010,130,33.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2010,130,1.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2010,130,0.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2010,130,2.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2010,130,31.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2010,130,13.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2010,130,2.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2010,130,8.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2010,130,0.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2010,130,5.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2010,130,1.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2010,130,100.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2010,130,10.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2010,130,13.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2010,130,91.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2010,130,0.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2010,130,53.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2010,130,4.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2010,130,42.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2010,130,5.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,0.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,1.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,6.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,251.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2010,130,5.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2010,130,0.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2010,130,79.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2010,130,0.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2010,130,1.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2010,130,5.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2010,130,1.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2010,130,1.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,1.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,108.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2010,130,53.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,3.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,6.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,6.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2010,130,1.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,5.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,0.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2010,130,18.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,0.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,6.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2010,130,0.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,5.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2010,130,1.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2010,130,2.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,4.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,3.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,11.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,15.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,28.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2010,130,3.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,3.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,11.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,13.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2010,130,6.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,3.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2010,130,8.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,21.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,8.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,1.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,107.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,10.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,3.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,2.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,0.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,9.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,9.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,7.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,3.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,2.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,0.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,24.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2010,130,1.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,3.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2010,130,6.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,1.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,3.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2010,130,1.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,2.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,4.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,0.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,4.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,2.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,2.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,14.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2010,130,1.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2010,130,10.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2010,130,5.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,5.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,6.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,95.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,11.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,23.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,5.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2010,130,2.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2010,130,4.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2010,130,411.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,27.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2010,130,17.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,12.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2010,130,2.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,31.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,2.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,23.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,4.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2010,130,0.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2010,130,0.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2010,130,1.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2010,130,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,1.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,51.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2010,130,4.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2010,130,2.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2010,130,6.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2010,130,0.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,2.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2010,130,2.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2010,130,286.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,6.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,0.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2010,130,8.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,15.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,4.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,1.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,2.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,3.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2010,130,1.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2010,130,4.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2010,130,2.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2010,130,3.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2010,130,4.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2010,130,63.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2010,130,0.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,5.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,14.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,3.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,4.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2010,130,3.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2010,130,0.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2010,130,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2010,130,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2010,130,36.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2010,130,4.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2010,130,1.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2010,130,0.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,0.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2010,130,3.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2010,130,0.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2010,130,2.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,48.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,3.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,0.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2010,130,1.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,0.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,11.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,2.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,1.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2010,130,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,0.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,11.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,1.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,17.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2010,130,0.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,38.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,3.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2010,130,1.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,3.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,0.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,5.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,1.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,26.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2010,130,2.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2010,130,6.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,1.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,18.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,1.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,13.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,42.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,5.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,5.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,8.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,18.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,1.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,8.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,1.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,1.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,2.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,60.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,1.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,1.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2010,130,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2010,130,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,2.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,1.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2010,130,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2010,130,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2010,130,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2010,130,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2010,130,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2010,130,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2010,130,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2010,130,0.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2010,130,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,2.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2010,130,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2010,130,10.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2010,130,2.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2010,130,17.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2010,130,163.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2010,130,7.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2010,130,1.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2010,130,22.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2010,130,1.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2010,130,3.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2010,130,16.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2010,130,4.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2010,130,19.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2010,130,3.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2010,130,7.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2010,130,15.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2010,130,5.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,11.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2010,130,20.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,8.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2010,130,5.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,4.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,31.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2010,130,6.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,6.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2010,130,22.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2010,130,39.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,7.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,72.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2010,130,1.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,6.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,7.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,5.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2010,130,0.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2010,130,6.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2010,130,1.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2010,130,14.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2010,130,10.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2010,130,2.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2010,130,28.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2010,130,73.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2010,130,11.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2010,130,3.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2010,130,1779.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2010,130,29.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2010,130,20.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2010,130,80.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2010,130,12.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2010,130,26.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2010,130,2.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2010,130,2.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2010,130,2.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2010,130,77.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2010,131,140.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2010,131,75.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2010,131,92.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2010,131,100.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2010,131,33.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2010,131,171.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2010,131,8.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2010,131,86.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2010,131,2.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2010,131,3.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2010,131,7.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2010,131,3000.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2010,131,15.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2010,131,118.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2010,131,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2010,131,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2010,131,0.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2010,131,62.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2010,131,90.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2010,131,710.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2010,131,0.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2010,131,9.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2010,131,0.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2010,131,0.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2010,131,35.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2010,131,15.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2010,131,62.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2010,131,11.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2010,131,11.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2010,131,1.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2010,131,1.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2010,131,187.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2010,131,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2010,131,14.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2010,131,0.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2010,131,38.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2010,131,460.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2010,131,66.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2010,131,47.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2010,131,40.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2010,131,88.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2010,131,59.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2010,131,72.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2010,131,126.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2010,131,200.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2010,131,41.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2010,131,64.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2010,131,189.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2010,131,56.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2010,131,188.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2010,131,37.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2010,131,2.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2010,131,96.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2010,131,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2010,131,106.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2010,131,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2010,131,13.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2010,131,23.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2010,131,18.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2010,131,89.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2010,131,33.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2010,131,86.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2010,131,20.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2010,131,84.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2010,131,58.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2010,131,92.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2010,131,3.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2010,131,30.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2010,131,20.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2010,131,14.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2010,131,2.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2010,131,10.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2010,131,25.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2010,131,8.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2010,131,5.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2010,131,0.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2010,131,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2010,131,2.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2010,131,3.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2010,131,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2010,131,7.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2010,131,0.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2010,131,36.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2010,131,4.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2010,131,1.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2010,131,22.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2010,131,5.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2010,131,156.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2010,131,25.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2010,131,2.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2010,131,0.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2010,131,0.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2010,131,1.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2010,131,5.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2010,131,4.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2010,131,0.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2010,131,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2010,131,2.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2010,131,0.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2010,131,4.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2010,131,47.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2010,131,2.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2010,131,1.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2010,131,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2010,131,197.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2010,131,9.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2010,131,27.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2010,131,92.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2010,131,0.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2010,131,2.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2010,131,128.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2010,131,4.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2010,131,26.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2010,131,6.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2010,131,7.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2010,131,693.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2010,131,9.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2010,131,490.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2010,131,26.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2010,131,37.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2010,131,112.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2010,131,4.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2010,131,6.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2010,131,1.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2010,131,3.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2010,131,205.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2010,131,3.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2010,131,53.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2010,131,0.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2010,131,0.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2010,131,1.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2010,131,15.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2010,131,15.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,24.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,1.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,8.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,0.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2010,131,17.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2010,131,89.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2010,131,7.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,4.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,24.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,12.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,15.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,8.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2010,131,51.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2010,131,13.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2010,131,5.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2010,131,30.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2010,131,296.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2010,131,14.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2010,131,4.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2010,131,33.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2010,131,5.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2010,131,17.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2010,131,18.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2010,131,7.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2010,131,12.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2010,131,3.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2010,131,5.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2010,131,85.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2010,131,16.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2010,131,12.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2010,131,7.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2010,131,1.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2010,131,6.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2010,131,34.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2010,131,35.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2010,131,4.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2010,131,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2010,131,0.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2010,131,2.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2010,131,68.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2010,131,8.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2010,131,5.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2010,131,54.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2010,131,36.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2010,131,10.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2010,131,7.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2010,131,1.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2010,131,0.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2010,131,44.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2010,131,3.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2010,131,22.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2010,131,4.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2010,131,2.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2010,131,103.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2010,131,2.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2010,131,25.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2010,131,19.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2010,131,249.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2010,131,26.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2010,131,0.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2010,131,2.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2010,131,9.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2010,131,1.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2010,131,0.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2010,131,12.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2010,131,68.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2010,131,1.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2010,131,7.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2010,131,33.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2010,131,18.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2010,131,841.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2010,131,23.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2010,131,9.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2010,131,3.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2010,131,3.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,3.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,2.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2010,131,2.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2010,131,1.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,17.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,1.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,1.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,3.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2010,131,23.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2010,131,3.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2010,131,0.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2010,131,37.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2010,131,64.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2010,131,19.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2010,131,8.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2010,131,15.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2010,131,2.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2010,131,7.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2010,131,21.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2010,131,441.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2010,131,8.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2010,131,85.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2010,131,91.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2010,131,1.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2010,131,38.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2010,131,10.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2010,131,82.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2010,131,2.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,0.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,0.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,9.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,212.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2010,131,61.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2010,131,11.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2010,131,109.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2010,131,12.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2010,131,5.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2010,131,3.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2010,131,13.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2010,131,5.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,0.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,112.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2010,131,101.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,10.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,3.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,45.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2010,131,3.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,37.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,8.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2010,131,19.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,0.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,1.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2010,131,0.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,2.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2010,131,4.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2010,131,9.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,13.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,5.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,30.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,21.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,39.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2010,131,4.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,6.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,12.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,65.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2010,131,5.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,32.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2010,131,19.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,16.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,5.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,5.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,161.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,2.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,1.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,0.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,86.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,20.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,61.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,2.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,10.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,0.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,27.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2010,131,0.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,3.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2010,131,2.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,14.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,1.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,2.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,0.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,6.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,6.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,0.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,9.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2010,131,3.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2010,131,13.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2010,131,15.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,6.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,3.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,355.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,14.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,39.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,10.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2010,131,3.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2010,131,654.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,42.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2010,131,17.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,12.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2010,131,1.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,54.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,11.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,15.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,7.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2010,131,1.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2010,131,3.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2010,131,1.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2010,131,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,3.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,61.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2010,131,10.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2010,131,1.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2010,131,21.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2010,131,0.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2010,131,1.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,5.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2010,131,3.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2010,131,729.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,31.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,2.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2010,131,4.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,15.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,2.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,3.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,0.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,2.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2010,131,7.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2010,131,5.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2010,131,5.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2010,131,5.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2010,131,8.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2010,131,129.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2010,131,2.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,0.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,6.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,5.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,5.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2010,131,8.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2010,131,0.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2010,131,0.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2010,131,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2010,131,10.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2010,131,0.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2010,131,2.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2010,131,0.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,12.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2010,131,0.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2010,131,0.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2010,131,3.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,79.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,2.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,4.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,1.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2010,131,12.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,0.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,7.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,9.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,2.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2010,131,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,4.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,1.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,9.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,1.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,37.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2010,131,5.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,20.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,4.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2010,131,0.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,1.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,8.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,2.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,50.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2010,131,0.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2010,131,21.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,1.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,15.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,2.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,31.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,42.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,2.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,6.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,4.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,25.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,5.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,78.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,3.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,3.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,104.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,4.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,1.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2010,131,0.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2010,131,0.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,1.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,1.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,2.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,1.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2010,131,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2010,131,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,1.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2010,131,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,1.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2010,131,0.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2010,131,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2010,131,0.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2010,131,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2010,131,0.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2010,131,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,4.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2010,131,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2010,131,31.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2010,131,2.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2010,131,46.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2010,131,324.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2010,131,6.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2010,131,3.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2010,131,24.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2010,131,0.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2010,131,4.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2010,131,10.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2010,131,7.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2010,131,52.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2010,131,10.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2010,131,78.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2010,131,26.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2010,131,41.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,4.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2010,131,54.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,78.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2010,131,10.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,23.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,32.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2010,131,17.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,8.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2010,131,50.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2010,131,45.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,17.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,148.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2010,131,3.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,11.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,41.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,4.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2010,131,2.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2010,131,26.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2010,131,17.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2010,131,32.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2010,131,49.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2010,131,3.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2010,131,86.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2010,131,120.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2010,131,5.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2010,131,5.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2010,131,1902.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2010,131,27.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2010,131,27.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2010,131,217.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2010,131,24.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2010,131,55.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2010,131,1.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2010,131,3.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2010,131,12.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2010,131,65.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2010,132,372.0,538380.0,8.20647606760077,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2010,132,151.0,71365.0,1.75101762269928,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2010,132,129.0,171099.0,7.02405991121718,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2010,132,269.0,295494.0,11.7865864802163,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2010,132,111.0,70182.0,4.39061679655587,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2010,132,333.0,228320.0,9.29955836617705,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2010,132,83.0,132596.0,4.96352406714637,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2010,132,205.0,53065.0,3.62142412574172,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2010,132,8.0,131396.0,4.1137755121075,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2010,132,0.0,74368.0,1.39009488140366,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2010,132,22.0,50594.0,1.24764695583046,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2010,132,5433.0,417780.0,18.7675527594149,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2010,132,54.0,58655.0,3.69320902969296,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2010,132,56.0,95928.0,0.288683475457698,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2010,132,0.0,24653.0,0.339448204065796,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2010,132,0.0,224068.0,1.05066724271851,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2010,132,1.0,127829.0,1.13496793737296,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2010,132,163.0,87385.0,2.19024770976968,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2010,132,220.0,151919.0,1.35525224817321,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2010,132,910.0,2039681.0,49.3910810654372,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2010,132,1.0,52879.0,1.69654109779265,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2010,132,14.0,151977.0,5.97126231715736,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2010,132,1.0,242180.0,2.26331709003037,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2010,132,12.0,48033.0,0.755869617093256,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2010,132,73.0,69378.0,0.371164988743031,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2010,132,95.0,165027.0,0.746645953155636,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2010,132,88.0,320322.0,4.71750928263824,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2010,132,7.0,41802.0,1.36011393085148,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2010,132,15.0,41874.0,0.564714803765394,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2010,132,17.0,47229.0,0.9178932664771,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2010,132,3.0,184473.0,1.17083127893585,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2010,132,227.0,484728.0,5.24227044120484,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2010,132,0.0,67616.0,0.748243382673973,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2010,132,14.0,129870.0,2.8788349059539,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2010,132,0.0,204125.0,6.78462617385331,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2010,132,22.0,153166.0,5.29616882145445,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2010,132,308.0,2140643.0,683.661973719814,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2010,132,74.0,295009.0,78.365696794286,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2010,132,33.0,247354.0,41.6690719547737,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2010,132,37.0,382812.0,43.4824749208569,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2010,132,77.0,437256.0,26.2278303246407,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2010,132,38.0,287560.0,12.1317600731568,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2010,132,21.0,434574.0,15.3516572640871,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2010,132,244.0,209209.0,1.10325970988501,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2010,132,98.0,282175.0,1.2477037919252,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2010,132,71.0,329008.0,10.0159196275216,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2010,132,82.0,291900.0,6.0298641106465,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2010,132,263.0,166420.0,1.37270247224847,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2010,132,70.0,255770.0,11.378802192277,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2010,132,123.0,284562.0,14.1670890362511,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2010,132,38.0,183163.0,8.66932144507408,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2010,132,8.0,136685.0,4.3809508128965,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2010,132,43.0,29390.0,0.796762243394943,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2010,132,0.0,24223.0,1.16668448859791,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2010,132,58.0,545796.0,14.1391207636886,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2010,132,0.0,69280.0,1.48649916074599,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2010,132,10.0,196389.0,12.4505925714131,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2010,132,50.0,278791.0,10.5422834931632,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2010,132,25.0,142322.0,4.09295869306405,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2010,132,130.0,116001.0,2.25406371404205,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2010,132,46.0,137233.0,5.0050361219326,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2010,132,125.0,322655.0,15.2341678289589,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2010,132,24.0,71941.0,1.34393584172527,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2010,132,35.0,118121.0,2.50284317874435,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2010,132,9.0,183898.0,19.4897358864958,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2010,132,35.0,1306029.0,914.259432365182,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2010,132,1.0,161268.0,25.0654577873098,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2010,132,14.0,176114.0,16.3323330567249,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2010,132,4.0,563877.0,32.7438106357531,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2010,132,34.0,210676.0,29.8769355929379,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2010,132,4.0,221613.0,10.2723227052891,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2010,132,20.0,621803.0,17.2759055737241,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2010,132,30.0,566701.0,19.3920348701116,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2010,132,10.0,411884.0,37.4957506055807,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2010,132,14.0,311548.0,8.45664612838791,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2010,132,0.0,191029.0,29.2128972665323,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2010,132,0.0,139136.0,23.0631978070768,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2010,132,2.0,219678.0,20.3580899142459,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2010,132,0.0,263300.0,26.4990151196171,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2010,132,1.0,87335.0,24.2598233284156,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2010,132,6.0,416131.0,27.1240161895924,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2010,132,10.0,209373.0,8.37655863504039,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2010,132,11.0,109843.0,7.72339389767816,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2010,132,2.0,130436.0,3.57421305518328,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2010,132,2.0,68011.0,4.00638242177364,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2010,132,88.0,329404.0,26.4226575114863,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2010,132,2.0,303544.0,31.1955639986449,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2010,132,126.0,999449.0,108.89520375952,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2010,132,22.0,220421.0,9.05041569593213,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2010,132,1.0,130856.0,15.7451498513343,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2010,132,1.0,104016.0,7.74358874215892,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2010,132,0.0,43605.0,1.71201606373402,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2010,132,4.0,40688.0,3.66096592861424,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2010,132,24.0,121724.0,6.60135165632919,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2010,132,5.0,88078.0,3.18900060083146,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2010,132,0.0,135161.0,4.91187048708852,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2010,132,0.0,82578.0,4.62962853416264,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2010,132,1.0,199654.0,19.3853783135611,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2010,132,0.0,57888.0,13.4230009602554,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2010,132,1.0,261949.0,8.30685720685329,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2010,132,90.0,360914.0,41.7577512336272,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2010,132,1.0,295250.0,58.3079316897326,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2010,132,5.0,55972.0,27.018138954292,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2010,132,0.0,24466.0,90.6258917023355,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2010,132,28.0,380950.0,46.2233438900323,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2010,132,6.0,137437.0,32.534383167404,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2010,132,13.0,72052.0,12.0049822945568,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2010,132,169.0,206730.0,55.6982725654382,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2010,132,1.0,105626.0,73.6896542217357,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2010,132,2.0,101353.0,96.5641163747509,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2010,132,56.0,84727.0,28.044312274292,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2010,132,4.0,124708.0,23.4799042454247,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2010,132,23.0,186971.0,69.4978732975755,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2010,132,19.0,62506.0,48.1984921552266,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2010,132,11.0,134149.0,52.7647007025845,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2010,132,1528.0,3345697.0,991.716773827642,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2010,132,30.0,117000.0,294.670758106969,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2010,132,349.0,240791.0,18.785791075442,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2010,132,40.0,266224.0,22.2637064641932,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2010,132,52.0,145438.0,12.4109972142365,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2010,132,59.0,217644.0,22.2492647413732,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2010,132,0.0,109732.0,50.9614456684684,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2010,132,12.0,313596.0,31.582657747891,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2010,132,3.0,62688.0,14.6099796958084,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2010,132,2.0,42471.0,20.6964307369088,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2010,132,133.0,222906.0,46.8835838645581,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2010,132,5.0,96712.0,27.2933168445612,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2010,132,68.0,56681.0,35.046375847317,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2010,132,29.0,95376.0,21.4631923909449,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2010,132,0.0,56871.0,44.1465844509148,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2010,132,28.0,90318.0,33.9312235800601,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2010,132,24.0,534228.0,117.265054345976,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2010,132,10.0,99871.0,51.4884225333324,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,45.0,332697.0,79.6416601051503,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,9.0,72466.0,17.7097809890382,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,7.0,39040.0,13.6499407791302,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,2.0,140584.0,29.3707092082299,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2010,132,17.0,62766.0,63.2982463929593,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2010,132,68.0,114231.0,42.9730507965958,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2010,132,1.0,65024.0,39.8549939101173,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,4.0,52545.0,27.5780827648901,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,1.0,51329.0,12.5866387745096,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,27.0,61524.0,20.4348655706055,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,4.0,97692.0,31.8637780913529,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,6.0,118840.0,31.5053193241531,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,5.0,62901.0,32.9043731019573,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2010,132,53.0,134060.0,34.1230630046441,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2010,132,22.0,229881.0,65.6386417356908,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2010,132,8.0,84026.0,32.9585510829478,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2010,132,15.0,288671.0,139.131325525198,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2010,132,276.0,1030774.0,2355.15925392979,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2010,132,15.0,129082.0,93.0192435417942,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2010,132,27.0,116065.0,38.0727901726618,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2010,132,25.0,167970.0,49.523980576397,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2010,132,21.0,181850.0,37.8485786917945,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2010,132,33.0,126704.0,49.7139760602871,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2010,132,9.0,70696.0,21.466127958262,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2010,132,10.0,84041.0,27.5837905280441,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2010,132,10.0,115888.0,44.6114197084779,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2010,132,0.0,39142.0,22.3636892724647,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2010,132,0.0,73911.0,28.3142110787923,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2010,132,57.0,121544.0,17.4148382803076,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2010,132,11.0,63707.0,15.127901073563,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2010,132,8.0,119703.0,30.6348883041582,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2010,132,1.0,93442.0,70.6773217155574,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2010,132,4.0,53596.0,200.101865067825,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2010,132,2.0,116502.0,98.7437607901776,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2010,132,14.0,164827.0,127.771339962806,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2010,132,13.0,502767.0,238.649144009055,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2010,132,0.0,108562.0,64.3336667751195,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2010,132,0.0,53992.0,45.6469530361446,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2010,132,0.0,142073.0,71.4818547655888,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2010,132,0.0,132743.0,118.557138238196,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2010,132,32.0,1034679.0,828.945646870402,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2010,132,9.0,82430.0,95.2007325746739,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2010,132,3.0,307658.0,26.659786960425,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2010,132,20.0,162047.0,18.4966250435477,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2010,132,53.0,314642.0,35.6479048546657,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2010,132,11.0,213417.0,24.2596870990564,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2010,132,10.0,444091.0,29.6663835778001,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2010,132,0.0,134211.0,14.10369464221,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2010,132,1.0,179529.0,33.0575365421706,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2010,132,24.0,852263.0,108.393842716302,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2010,132,5.0,273742.0,152.490075799174,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2010,132,19.0,253339.0,144.747032503819,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2010,132,7.0,441931.0,86.3180523887708,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2010,132,5.0,216408.0,84.5329320998206,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2010,132,60.0,535743.0,182.353439253873,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2010,132,17.0,216643.0,230.815841944994,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2010,132,7.0,559311.0,123.58643835542,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2010,132,13.0,166303.0,308.797951250497,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2010,132,250.0,3256460.0,2602.94634528606,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2010,132,25.0,265665.0,275.080120900857,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2010,132,0.0,2629.0,202.32043881268,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2010,132,3.0,89474.0,34.0684538556107,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2010,132,4.0,79633.0,58.3162960531998,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2010,132,4.0,171286.0,55.891792168226,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2010,132,1.0,92352.0,51.1470545059347,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2010,132,12.0,175213.0,73.2611313586366,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2010,132,57.0,410890.0,169.39222952712,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2010,132,1.0,37387.0,39.9545190313776,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2010,132,8.0,146640.0,79.5802743375861,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2010,132,35.0,301552.0,76.4603586416217,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2010,132,3.0,66859.0,66.4248171070452,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2010,132,357.0,1140596.0,636.90152138302,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2010,132,14.0,284488.0,95.7603834944138,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2010,132,12.0,124552.0,72.7773454029125,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2010,132,0.0,156232.0,28.6889478750512,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2010,132,1.0,68458.0,36.6584806112043,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,2.0,62963.0,50.7420434680509,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,2.0,160387.0,141.765619559593,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2010,132,4.0,108731.0,53.977222902792,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2010,132,0.0,114246.0,75.7726598890542,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,11.0,91153.0,86.4179214955758,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,0.0,46853.0,61.1947514688643,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,5.0,54722.0,38.2467883430182,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,5.0,89617.0,120.975930764393,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2010,132,21.0,835654.0,957.870207877204,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2010,132,3.0,154348.0,83.9562154159842,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2010,132,1.0,124667.0,61.5923667991287,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2010,132,118.0,286246.0,5.41572145643169,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2010,132,78.0,114886.0,5.07851549682533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2010,132,43.0,178317.0,4.24676847508962,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2010,132,9.0,454567.0,8.3079646388305,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2010,132,4.0,167144.0,13.4150124347345,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2010,132,6.0,171681.0,5.27253460330642,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2010,132,0.0,171237.0,11.8606985563639,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2010,132,11.0,286837.0,17.2538935533105,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2010,132,765.0,373515.0,20.4824953964019,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2010,132,15.0,327046.0,17.3809958432323,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2010,132,120.0,249389.0,15.1453180233918,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2010,132,99.0,992989.0,77.9114379818648,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2010,132,6.0,99384.0,12.3979127642847,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2010,132,49.0,298267.0,15.9581143410593,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2010,132,4.0,309489.0,35.7705854351729,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2010,132,101.0,414844.0,38.9582889088724,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2010,132,1.0,308379.0,53.6567664390623,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,0.0,115348.0,26.3566626185921,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,3.0,212089.0,77.164934831564,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,3.0,539855.0,94.6937225553692,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,153.0,3459377.0,1196.82720139335,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2010,132,39.0,187461.0,11.6576172640792,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2010,132,4.0,254189.0,12.2525174789398,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2010,132,187.0,507388.0,29.4961397330258,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2010,132,30.0,97836.0,19.0198513814111,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2010,132,15.0,371401.0,15.8438135524751,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2010,132,15.0,235843.0,15.3736509682212,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2010,132,43.0,626487.0,33.2973010269306,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2010,132,2.0,197937.0,17.5551321099287,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,0.0,263304.0,45.7662574187709,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,177.0,1020793.0,48.0241064152533,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2010,132,95.0,727907.0,26.2646400135642,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,40.0,148829.0,5.43047659172502,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,17.0,217555.0,6.21420477014679,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,73.0,274186.0,8.25567504948617,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2010,132,8.0,247505.0,16.458891960662,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,34.0,210720.0,11.8150306840076,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,93.0,164941.0,7.16472394256127,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2010,132,66.0,602000.0,26.9471755630171,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,0.0,42665.0,4.70843227189839,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,3.0,68570.0,8.66376551063617,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2010,132,0.0,82694.0,11.1927921732797,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,3.0,197510.0,16.4390666795225,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2010,132,103.0,156456.0,15.2345835601561,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2010,132,11.0,83152.0,16.4660536619019,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,16.0,179711.0,11.6265554068493,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,86.0,266661.0,22.9520960906608,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,20.0,118758.0,14.0008973584933,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,30.0,143362.0,16.4196971171094,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,104.0,816568.0,43.4629289354286,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2010,132,8.0,197806.0,16.5383285901356,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,8.0,253384.0,23.6275358430199,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,19.0,179525.0,10.6317698469601,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,103.0,346045.0,37.0837820854054,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2010,132,4.0,204475.0,14.5332850463989,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,10.0,96831.0,9.14986562500703,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2010,132,40.0,150661.0,10.9926899459651,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,63.0,165199.0,22.0605057094294,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,22.0,392820.0,45.9813485638142,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,0.0,84621.0,12.4115621130858,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,5.0,123592.0,69.8115017257699,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,226.0,4772563.0,818.859515622679,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,5.0,378853.0,47.0389493851194,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,2.0,61418.0,25.4055151427257,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,1.0,173738.0,55.1225976517875,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,3.0,247310.0,83.4497839912813,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,4.0,130992.0,22.7413225796437,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,0.0,81527.0,17.7914392695729,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,210.0,415611.0,36.7238967313083,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,59.0,63207.0,34.1703602128102,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,177.0,526492.0,120.997513330286,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,17.0,253455.0,45.7609770726847,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,35.0,149456.0,17.9329442142348,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,4.0,81622.0,10.6082435488974,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,47.0,483524.0,95.2258209772803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2010,132,116.0,152127.0,33.3143426135055,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,1.0,111793.0,41.5062064480007,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,4.0,125997.0,31.4137444358664,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2010,132,2.0,226462.0,31.9280293967291,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,1.0,265905.0,51.4093646315697,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,4.0,225289.0,45.059328703572,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,2.0,441180.0,58.2318256968152,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,0.0,342238.0,73.8780115932448,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2010,132,0.0,326395.0,66.3700923351746,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,0.0,140201.0,42.7973714069364,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,1.0,208389.0,54.1878426269176,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,0.0,73871.0,14.659448166143,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,0.0,189238.0,63.4647922770588,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,8.0,149646.0,43.2878206547141,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,2.0,182700.0,31.7338016921131,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,0.0,222054.0,66.1630973060167,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,26.0,187117.0,38.4636498047353,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,18.0,273874.0,56.6135862514933,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,0.0,221636.0,45.9365835055659,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,59.0,276129.0,58.3077483705977,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2010,132,4.0,269600.0,74.9283886648261,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2010,132,70.0,730264.0,81.746136069373,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2010,132,86.0,216634.0,55.4718710948561,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,4.0,89204.0,22.0723502241876,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,4.0,124097.0,33.8337834531055,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,185.0,199700.0,46.0087405051495,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,121.0,54396.0,18.4472860020402,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,58.0,186051.0,40.1977834681104,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,21.0,308392.0,44.3775902406947,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2010,132,2.0,132059.0,34.4348228086835,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2010,132,2.0,104550.0,31.82405257377,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2010,132,1046.0,1563129.0,1095.42367930525,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,87.0,185051.0,87.9618512234621,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2010,132,23.0,158317.0,45.7982796291161,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,35.0,332276.0,80.7443041139003,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2010,132,0.0,75450.0,59.5269667998795,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,249.0,195129.0,62.2249012330192,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,50.0,122347.0,54.5867118526068,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,58.0,587762.0,82.0603638141419,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,18.0,261540.0,101.294464085321,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2010,132,0.0,155699.0,94.0280504764041,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2010,132,15.0,62937.0,49.6925175002629,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2010,132,6.0,233267.0,112.073150182495,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2010,132,0.0,29508.0,16.2712690559416,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,32.0,162490.0,99.057110677315,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,88.0,538650.0,274.66645165918,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2010,132,18.0,680349.0,178.390787824096,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2010,132,2.0,175294.0,74.0307621278968,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2010,132,25.0,206845.0,123.700931806978,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2010,132,2.0,163720.0,104.39306769694,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2010,132,1.0,480101.0,268.967756049705,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,4.0,109956.0,77.5480820676449,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2010,132,19.0,223657.0,254.634517756619,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2010,132,1275.0,11604332.0,2548.46784520521,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,72.0,149188.0,37.875889250018,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,10.0,104643.0,37.1920116795239,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2010,132,7.0,139507.0,43.4905785970925,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,86.0,763503.0,73.2560598100219,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,2.0,221505.0,97.7235581631943,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,10.0,46377.0,20.201636902351,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,1.0,65346.0,32.5252465760589,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,8.0,79252.0,32.734436580839,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2010,132,22.0,135469.0,49.8748864666246,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2010,132,20.0,211409.0,38.1272378395531,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2010,132,27.0,95728.0,47.4813809692461,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2010,132,11.0,386862.0,112.282463434256,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2010,132,54.0,408240.0,86.0345717082341,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2010,132,414.0,1033064.0,171.992127689911,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2010,132,3.0,106352.0,34.5625504615883,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,33.0,181704.0,26.4436716095366,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,141.0,256647.0,47.7965853420008,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,8.0,257556.0,57.2025866509821,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,4.0,160322.0,41.4121066106001,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2010,132,4.0,562096.0,66.2153971642932,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2010,132,0.0,346457.0,85.7899228920206,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2010,132,1.0,178442.0,30.2370918986626,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2010,132,0.0,207173.0,47.5406713706988,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2010,132,53.0,502308.0,79.9560294818321,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2010,132,5.0,308738.0,97.3498184348113,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2010,132,3.0,242627.0,82.3741001739033,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2010,132,4.0,578728.0,248.921666190877,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,20.0,556425.0,147.233122115459,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2010,132,1.0,183687.0,104.158894759601,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2010,132,0.0,409437.0,75.4439505008567,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2010,132,5.0,382563.0,163.727455001738,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,112.0,2632199.0,846.635217444657,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,3.0,178894.0,111.796199980281,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,5.0,116165.0,40.5167402479843,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,5.0,158322.0,43.1372337993337,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2010,132,22.0,573432.0,32.7806147227024,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,1.0,109809.0,47.7338623238252,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,5.0,330234.0,67.5792940275614,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,13.0,263993.0,36.9721310739719,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,5.0,290053.0,52.116514582764,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2010,132,0.0,240488.0,31.261008027116,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,0.0,191648.0,51.4298994535434,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,1.0,258034.0,115.600484343077,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,0.0,135061.0,20.5070669361426,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,1.0,189320.0,45.694914373319,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,16.0,1323862.0,311.931946041956,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,1.0,633489.0,787.738953403983,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,3.0,498091.0,158.701052599826,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,0.0,68925.0,67.7828468431999,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,62.0,1413034.0,351.700582008291,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2010,132,8.0,402280.0,148.793712813002,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,1.0,26294.0,12.5482334713889,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,0.0,70412.0,15.9282905513299,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,54.0,281778.0,147.860746375199,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,2.0,243640.0,21.8386604488826,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2010,132,4.0,218840.0,107.344946093742,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,5.0,1775058.0,2616.51168387005,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,2.0,453684.0,760.751310747301,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,22.0,1347639.0,1733.60380859655,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,3.0,986638.0,672.264459518489,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,86.0,13793504.0,5845.13213521632,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2010,132,4.0,1316059.0,639.227706325671,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2010,132,75.0,1469926.0,1079.43511639929,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,2.0,270886.0,26.6292022776038,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,33.0,265131.0,25.8447181566964,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,1.0,142455.0,35.1769640144571,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,3.0,116764.0,24.0381391996504,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,0.0,217490.0,30.7367461341721,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,25.0,183957.0,35.9905989750561,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,191.0,82542.0,34.9023868158555,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,1.0,34673.0,26.6278331655999,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,17.0,540541.0,347.367526493505,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,4.0,286963.0,126.680430501618,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,96.0,724496.0,206.054885874936,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,0.0,46360.0,20.3652329590437,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,0.0,137619.0,22.3253738031704,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,19.0,71176.0,31.5167618558587,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,2.0,176283.0,38.946931017792,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,427.0,122502.0,44.4095308000369,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,1.0,77320.0,25.4400501385157,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,0.0,98837.0,31.2884047085672,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,158994.0,16.809048173285,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,100307.0,17.6219774001258,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,1.0,430075.0,64.3872346153902,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,13.0,377799.0,43.2387924891441,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,9.0,432805.0,50.6098416472101,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,293.0,408785.0,73.6250834981475,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,3.0,95305.0,41.0133494992964,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,1.0,242445.0,44.7967875279633,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,1.0,159397.0,40.8365770905072,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,75744.0,15.3946565466364,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,2.0,378268.0,23.3501699816474,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,90358.0,16.714829913038,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,128316.0,21.1215275375663,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,97530.0,34.361052238682,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,116709.0,21.3461563025426,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,62312.0,24.6287672861338,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,0.0,29056.0,8.41333219526125,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,0.0,49451.0,21.5133768681342,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,5.0,3055104.0,358.472713816042,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2010,132,1.0,265362.0,43.5365115242174,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2010,132,1.0,89484.0,36.5666175434445,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,174725.0,40.9941973824003,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,1.0,405123.0,67.2669281556476,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,0.0,152439.0,31.4430785812909,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,0.0,326455.0,36.1384408011151,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,141981.0,45.1416053043006,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,0.0,243782.0,25.926196364814,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,1.0,126394.0,66.2064424928109,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,2.0,842821.0,181.537116686064,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,0.0,122656.0,18.6240719265272,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,1.0,284169.0,18.0485823197676,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,204913.0,38.6970560745078,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,1.0,677553.0,143.19823706909,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,2.0,571027.0,371.831160132583,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,0.0,55780.0,36.6704064810936,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,91909.0,43.1451113639504,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,1.0,878852.0,303.330803856972,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2010,132,0.0,23926.0,10.2000642346531,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,374934.0,80.9679605204014,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,369366.0,174.76348341341,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2010,132,0.0,180877.0,60.873632916342,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,1.0,157299.0,45.4970506682174,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,1.0,143804.0,37.7227384411228,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,174621.0,33.5296647422033,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,211685.0,37.3319715143467,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2010,132,0.0,60635.0,19.7025813797786,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,66075.0,29.7657914880337,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,1.0,197014.0,18.195427021464,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,183938.0,36.1156686485739,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,159981.0,32.7445159157921,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2010,132,2.0,327778.0,46.3125159649059,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,150229.0,17.8433526593177,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,42227.0,28.1755618023399,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2010,132,0.0,71504.0,19.8109996406135,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2010,132,1.0,127233.0,35.0536719012825,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2010,132,0.0,157373.0,9.13281103298684,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2010,132,1.0,769626.0,154.748914890663,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,110704.0,9.8669421655108,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,363030.0,30.9403632202871,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,63254.0,21.0624998421389,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,320261.0,57.6009808912127,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,305651.0,75.5422837619947,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,152980.0,20.1634247727411,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,202509.0,97.7610567944556,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2010,132,0.0,296668.0,113.795025918207,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,1.0,143682.0,29.4409618827218,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,3629049.0,647.789781584757,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,341206.0,38.8077712344126,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,130470.0,22.176416069817,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,364352.0,11.7237984973901,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,185124.0,10.7042167932125,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,1.0,173819.0,12.202158722419,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,116448.0,7.09225668792927,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,482438.0,46.6915738958286,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,53168.0,8.39004742874924,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2010,132,0.0,259697.0,28.0392173336753,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2010,132,41.0,138794.0,1.67156534410718,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2010,132,12.0,105446.0,3.80060737906322,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2010,132,106.0,117215.0,2.81326902960705,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2010,132,728.0,874205.0,30.9462378886381,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2010,132,12.0,60275.0,3.74729276858555,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2010,132,21.0,76442.0,4.44787311828008,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2010,132,22.0,156176.0,3.30503936850022,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2010,132,1.0,88368.0,6.56114735300055,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2010,132,59.0,105286.0,4.66316340944827,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2010,132,162.0,500955.0,13.3972413323754,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2010,132,14.0,226179.0,10.0604821902743,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2010,132,243.0,137536.0,1.10905533940023,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2010,132,44.0,99164.0,1.92920025276323,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2010,132,126.0,143380.0,3.35266138755329,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2010,132,47.0,89250.0,1.49749367721583,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2010,132,42.0,75598.0,1.3765409357579,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,142.0,191179.0,3.50497945181453,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2010,132,247.0,173103.0,3.45912090010624,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,83.0,32886.0,0.70323236158944,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2010,132,17.0,112106.0,1.31979941992851,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,28.0,99084.0,1.64045672205403,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,94.0,65142.0,2.03638185351895,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2010,132,156.0,67792.0,2.16171730446229,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,52.0,144796.0,6.4863495331364,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2010,132,244.0,107409.0,5.68933414461803,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2010,132,57.0,32643.0,4.87111595035433,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,17.0,30894.0,3.34516004994695,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,476.0,851859.0,30.853265228307,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2010,132,35.0,132179.0,2.47889888198792,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,79.0,83726.0,8.16583522729613,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,86.0,54464.0,2.01139276009528,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,199.0,275710.0,11.2997687453594,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2010,132,6.0,34091.0,3.18202554094482,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2010,132,61.0,76680.0,3.14528123776479,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2010,132,8.0,88372.0,4.36460311853722,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2010,132,57.0,55472.0,5.01844731908991,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2010,132,133.0,231437.0,6.58285881294097,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2010,132,33.0,62656.0,2.94178992851418,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2010,132,164.0,231086.0,17.5610107597606,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2010,132,198.0,540619.0,64.6090001863021,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2010,132,53.0,59075.0,8.35400689949811,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2010,132,39.0,109610.0,20.0740802214776,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2010,132,3788.0,2116630.0,313.345979637178,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2010,132,51.0,107305.0,6.17442979529741,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2010,132,72.0,1052406.0,27.5812483589212,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2010,132,158.0,446583.0,7.96653794019392,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2010,132,49.0,113590.0,8.35010352294096,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2010,132,106.0,361360.0,17.1089808614382,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2010,132,5.0,93136.0,9.77710003848754,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2010,132,8.0,147191.0,9.66528121468964,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2010,132,120.0,110837.0,6.89482189051935,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2010,132,152.0,2562963.0,443.093226261989,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2011,133,49.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2011,133,151.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2011,133,54.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2011,133,77.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2011,133,157.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2011,133,63.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2011,133,31.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2011,133,116.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2011,133,25.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2011,133,8.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2011,133,8.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2011,133,8428.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2011,133,21.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2011,133,85.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2011,133,27.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2011,133,15.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2011,133,8.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2011,133,1018.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2011,133,154.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2011,133,8286.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2011,133,10.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2011,133,162.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2011,133,38.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2011,133,79.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2011,133,182.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2011,133,61.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2011,133,138.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2011,133,8.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2011,133,8.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2011,133,2.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2011,133,43.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2011,133,406.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2011,133,2.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2011,133,12.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2011,133,0.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2011,133,20.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2011,133,471.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2011,133,53.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2011,133,66.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2011,133,80.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2011,133,143.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2011,133,80.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2011,133,49.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2011,133,390.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2011,133,457.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2011,133,335.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2011,133,198.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2011,133,216.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2011,133,246.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2011,133,279.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2011,133,160.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2011,133,39.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2011,133,99.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2011,133,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2011,133,500.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2011,133,5.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2011,133,91.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2011,133,120.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2011,133,88.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2011,133,62.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2011,133,107.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2011,133,355.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2011,133,67.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2011,133,47.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2011,133,83.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2011,133,112.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2011,133,3.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2011,133,10.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2011,133,24.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2011,133,67.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2011,133,39.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2011,133,171.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2011,133,141.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2011,133,54.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2011,133,128.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2011,133,25.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2011,133,8.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2011,133,79.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2011,133,13.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2011,133,13.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2011,133,30.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2011,133,12.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2011,133,30.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2011,133,28.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2011,133,2.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2011,133,279.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2011,133,28.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2011,133,350.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2011,133,43.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2011,133,3.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2011,133,8.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2011,133,11.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2011,133,1.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2011,133,3.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2011,133,24.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2011,133,11.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2011,133,9.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2011,133,1.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2011,133,2.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2011,133,4.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2011,133,266.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2011,133,6.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2011,133,99.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2011,133,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2011,133,94.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2011,133,160.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2011,133,57.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2011,133,534.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2011,133,25.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2011,133,40.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2011,133,51.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2011,133,28.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2011,133,71.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2011,133,81.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2011,133,15.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2011,133,2288.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2011,133,75.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2011,133,554.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2011,133,177.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2011,133,77.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2011,133,56.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2011,133,6.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2011,133,20.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2011,133,5.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2011,133,8.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2011,133,458.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2011,133,68.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2011,133,35.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2011,133,1.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2011,133,5.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2011,133,84.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2011,133,90.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2011,133,40.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,232.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,13.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,21.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,6.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2011,133,74.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2011,133,123.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2011,133,25.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,10.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,20.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,10.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,11.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,59.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,20.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2011,133,47.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2011,133,52.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2011,133,3.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2011,133,80.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2011,133,271.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2011,133,3.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2011,133,42.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2011,133,106.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2011,133,96.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2011,133,64.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2011,133,23.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2011,133,7.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2011,133,67.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2011,133,5.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2011,133,3.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2011,133,103.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2011,133,4.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2011,133,84.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2011,133,4.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2011,133,24.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2011,133,9.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2011,133,13.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2011,133,32.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2011,133,0.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2011,133,1.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2011,133,0.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2011,133,9.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2011,133,66.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2011,133,10.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2011,133,15.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2011,133,104.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2011,133,139.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2011,133,14.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2011,133,77.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2011,133,7.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2011,133,0.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2011,133,7.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2011,133,2.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2011,133,42.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2011,133,10.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2011,133,5.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2011,133,176.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2011,133,15.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2011,133,12.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2011,133,9.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2011,133,110.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2011,133,34.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2011,133,1.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2011,133,4.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2011,133,4.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2011,133,0.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2011,133,2.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2011,133,68.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2011,133,64.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2011,133,1.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2011,133,8.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2011,133,31.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2011,133,5.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2011,133,317.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2011,133,16.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2011,133,15.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2011,133,1.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2011,133,13.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,0.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,7.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2011,133,4.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2011,133,8.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,14.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,1.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,0.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,3.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2011,133,38.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2011,133,7.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2011,133,2.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2011,133,660.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2011,133,155.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2011,133,44.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2011,133,66.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2011,133,23.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2011,133,11.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2011,133,9.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2011,133,8.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2011,133,760.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2011,133,68.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2011,133,100.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2011,133,83.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2011,133,11.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2011,133,13.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2011,133,37.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2011,133,95.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2011,133,4.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,2.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,1.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,16.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,232.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2011,133,38.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2011,133,8.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2011,133,160.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2011,133,11.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2011,133,23.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2011,133,1.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2011,133,48.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2011,133,6.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,5.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,134.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2011,133,58.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,3.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,5.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,57.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2011,133,28.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,14.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,14.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2011,133,58.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,1.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,10.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2011,133,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,19.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2011,133,14.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2011,133,19.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,19.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,187.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,7.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,88.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,119.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2011,133,5.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,26.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,40.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,222.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2011,133,15.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,37.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2011,133,311.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,2.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,16.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,1.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,0.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,470.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,20.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,1.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,7.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,2.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,7.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,249.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,70.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,364.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,24.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,81.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,1.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,34.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2011,133,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,1.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,5.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2011,133,8.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,12.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,1.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,9.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,0.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2011,133,2.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,1.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,0.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,1.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,1.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,0.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,2.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,118.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,41.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,3.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,31.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2011,133,20.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2011,133,610.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2011,133,355.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,116.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,30.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,324.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,457.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,119.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,131.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2011,133,2.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2011,133,1.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2011,133,1188.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,60.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2011,133,41.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,220.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2011,133,7.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,629.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,218.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,154.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,12.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2011,133,3.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2011,133,39.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2011,133,6.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2011,133,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,39.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,171.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2011,133,70.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2011,133,4.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2011,133,59.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2011,133,31.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2011,133,20.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,13.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2011,133,287.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2011,133,3519.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,146.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,7.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2011,133,9.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,52.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,7.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,14.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,2.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,17.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2011,133,44.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2011,133,118.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2011,133,338.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2011,133,16.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2011,133,25.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2011,133,1403.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2011,133,3.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,21.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,11.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,11.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,2.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2011,133,95.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2011,133,5.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2011,133,0.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2011,133,0.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2011,133,59.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2011,133,7.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2011,133,27.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2011,133,17.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,26.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2011,133,5.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2011,133,5.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2011,133,10.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,316.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,2.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,15.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,3.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2011,133,18.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,1.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,3.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,36.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,9.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2011,133,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,2.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,0.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,68.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,11.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,14.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,262.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2011,133,58.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,1.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,0.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,35.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,6.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2011,133,15.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,56.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,2.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,22.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,16.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,307.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2011,133,12.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2011,133,22.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,8.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,6.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,3.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,2.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,2.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,12.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,53.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,12.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,4.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,1374.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,1.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,19.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,175.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,711.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,4.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,4.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,9.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,11.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,100.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,4.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,1.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,15.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2011,133,1.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2011,133,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,4.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,1.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,1.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,1.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,4.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,2.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,6.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2011,133,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,1.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2011,133,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,1.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2011,133,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,4.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,2.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2011,133,1.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2011,133,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2011,133,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2011,133,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2011,133,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,1.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,1.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2011,133,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,1.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,5.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2011,133,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2011,133,14.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2011,133,14.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2011,133,149.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2011,133,584.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2011,133,27.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2011,133,77.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2011,133,49.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2011,133,24.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2011,133,6.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2011,133,27.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2011,133,14.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2011,133,133.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2011,133,32.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2011,133,76.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2011,133,19.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2011,133,21.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,23.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2011,133,167.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,67.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2011,133,19.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,15.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,65.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2011,133,55.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,33.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2011,133,90.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2011,133,26.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,6.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,251.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2011,133,4.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,24.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,74.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,36.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2011,133,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2011,133,6.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2011,133,108.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2011,133,50.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2011,133,75.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2011,133,9.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2011,133,144.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2011,133,240.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2011,133,15.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2011,133,11.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2011,133,2435.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2011,133,85.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2011,133,266.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2011,133,116.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2011,133,93.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2011,133,126.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2011,133,9.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2011,133,10.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2011,133,18.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2011,133,216.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2011,134,78.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2011,134,152.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2011,134,33.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2011,134,74.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2011,134,86.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2011,134,49.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2011,134,32.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2011,134,56.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2011,134,22.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2011,134,8.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2011,134,2.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2011,134,4637.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2011,134,42.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2011,134,104.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2011,134,11.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2011,134,20.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2011,134,8.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2011,134,409.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2011,134,236.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2011,134,20399.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2011,134,16.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2011,134,351.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2011,134,57.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2011,134,42.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2011,134,187.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2011,134,165.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2011,134,96.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2011,134,10.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2011,134,10.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2011,134,12.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2011,134,138.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2011,134,539.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2011,134,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2011,134,14.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2011,134,3.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2011,134,39.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2011,134,517.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2011,134,37.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2011,134,42.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2011,134,131.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2011,134,108.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2011,134,98.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2011,134,91.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2011,134,226.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2011,134,478.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2011,134,559.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2011,134,348.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2011,134,253.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2011,134,238.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2011,134,173.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2011,134,204.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2011,134,144.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2011,134,40.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2011,134,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2011,134,668.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2011,134,2.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2011,134,67.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2011,134,122.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2011,134,60.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2011,134,60.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2011,134,142.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2011,134,382.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2011,134,58.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2011,134,97.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2011,134,39.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2011,134,277.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2011,134,10.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2011,134,40.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2011,134,61.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2011,134,93.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2011,134,28.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2011,134,151.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2011,134,322.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2011,134,71.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2011,134,88.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2011,134,30.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2011,134,6.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2011,134,106.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2011,134,33.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2011,134,62.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2011,134,82.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2011,134,9.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2011,134,15.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2011,134,43.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2011,134,2.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2011,134,198.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2011,134,73.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2011,134,550.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2011,134,71.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2011,134,9.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2011,134,9.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2011,134,10.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2011,134,4.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2011,134,2.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2011,134,13.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2011,134,19.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2011,134,58.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2011,134,19.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2011,134,8.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2011,134,26.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2011,134,250.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2011,134,10.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2011,134,118.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2011,134,1.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2011,134,201.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2011,134,173.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2011,134,248.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2011,134,386.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2011,134,62.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2011,134,77.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2011,134,55.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2011,134,261.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2011,134,236.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2011,134,153.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2011,134,16.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2011,134,3724.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2011,134,171.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2011,134,569.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2011,134,243.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2011,134,109.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2011,134,150.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2011,134,7.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2011,134,91.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2011,134,3.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2011,134,7.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2011,134,606.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2011,134,84.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2011,134,41.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2011,134,8.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2011,134,7.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2011,134,181.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2011,134,229.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2011,134,136.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,422.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,29.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,8.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,17.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2011,134,104.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2011,134,233.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2011,134,55.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,32.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,73.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,35.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,28.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,111.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,123.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2011,134,72.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2011,134,195.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2011,134,16.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2011,134,179.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2011,134,485.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2011,134,5.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2011,134,70.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2011,134,118.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2011,134,131.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2011,134,231.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2011,134,88.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2011,134,42.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2011,134,64.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2011,134,16.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2011,134,3.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2011,134,142.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2011,134,26.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2011,134,114.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2011,134,10.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2011,134,58.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2011,134,53.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2011,134,32.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2011,134,79.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2011,134,11.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2011,134,0.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2011,134,4.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2011,134,38.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2011,134,201.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2011,134,3.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2011,134,36.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2011,134,74.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2011,134,324.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2011,134,10.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2011,134,88.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2011,134,8.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2011,134,0.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2011,134,14.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2011,134,8.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2011,134,43.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2011,134,26.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2011,134,4.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2011,134,395.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2011,134,31.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2011,134,58.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2011,134,35.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2011,134,325.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2011,134,63.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2011,134,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2011,134,2.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2011,134,2.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2011,134,2.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2011,134,5.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2011,134,150.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2011,134,220.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2011,134,0.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2011,134,10.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2011,134,56.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2011,134,21.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2011,134,400.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2011,134,34.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2011,134,6.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2011,134,4.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2011,134,12.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,3.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,10.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2011,134,17.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2011,134,7.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,39.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,1.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,4.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,4.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2011,134,49.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2011,134,6.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2011,134,0.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2011,134,1033.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2011,134,306.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2011,134,48.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2011,134,122.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2011,134,15.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2011,134,74.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2011,134,37.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2011,134,14.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2011,134,793.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2011,134,57.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2011,134,158.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2011,134,250.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2011,134,59.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2011,134,6.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2011,134,53.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2011,134,84.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2011,134,13.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,2.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,5.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,23.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,241.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2011,134,74.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2011,134,18.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2011,134,168.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2011,134,13.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2011,134,92.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2011,134,4.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2011,134,120.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2011,134,7.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,5.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,123.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2011,134,218.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,3.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,17.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,85.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2011,134,19.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,16.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,7.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2011,134,120.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,1.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,16.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2011,134,3.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,38.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2011,134,19.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2011,134,35.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,22.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,148.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,8.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,139.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,156.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2011,134,2.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,69.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,41.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,263.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2011,134,26.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,58.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2011,134,531.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,12.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,32.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,9.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,492.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,27.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,2.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,9.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,9.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,54.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,232.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,42.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,622.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,81.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,142.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,2.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,50.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2011,134,5.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,3.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,2.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2011,134,9.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,25.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,4.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,14.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,4.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2011,134,4.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,2.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,2.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,4.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,2.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,1.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,162.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,51.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,7.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,34.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2011,134,112.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2011,134,891.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2011,134,373.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,453.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,47.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,669.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,336.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,134.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,160.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2011,134,3.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2011,134,6.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2011,134,1697.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,132.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2011,134,54.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,598.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2011,134,9.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,876.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,365.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,289.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,104.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2011,134,3.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2011,134,160.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2011,134,58.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2011,134,2.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,177.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,546.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2011,134,381.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2011,134,20.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2011,134,319.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2011,134,131.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2011,134,85.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,57.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2011,134,458.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2011,134,11863.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,249.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,15.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2011,134,47.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,102.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,26.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,8.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,7.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,40.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2011,134,185.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2011,134,311.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2011,134,455.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2011,134,101.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2011,134,99.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2011,134,4384.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2011,134,35.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,17.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,9.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,14.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,66.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2011,134,519.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2011,134,10.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2011,134,6.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2011,134,2.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2011,134,369.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2011,134,8.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2011,134,64.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2011,134,95.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,16.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2011,134,21.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2011,134,10.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2011,134,49.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,821.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,1.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,39.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,5.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2011,134,256.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,24.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,13.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,83.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,79.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2011,134,1.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,4.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,2.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,4.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,200.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,35.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,9.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,822.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2011,134,908.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,0.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,1.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,123.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,21.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2011,134,12.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,162.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,33.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,55.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,63.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,646.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2011,134,16.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2011,134,32.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,20.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,5.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,3.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,12.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,30.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,318.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,56.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,14.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,2620.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,160.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1267.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1582.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,41.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,1.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,1.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,33.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,116.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,381.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,3.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,2.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,1.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,18.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2011,134,1.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2011,134,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,1.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,6.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,5.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,4.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,1.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,2.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2011,134,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,1.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,1.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2011,134,1.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,3.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,1.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,1.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2011,134,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,7.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,1.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2011,134,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2011,134,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2011,134,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2011,134,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2011,134,2.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,1.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,1.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2011,134,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,1.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,5.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,1.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2011,134,1.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2011,134,44.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2011,134,25.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2011,134,220.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2011,134,461.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2011,134,28.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2011,134,103.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2011,134,80.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2011,134,99.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2011,134,10.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2011,134,25.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2011,134,19.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2011,134,59.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2011,134,21.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2011,134,44.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2011,134,15.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2011,134,14.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,20.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2011,134,130.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,31.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2011,134,14.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,13.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,37.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2011,134,24.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,17.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2011,134,30.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2011,134,7.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,2.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,220.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2011,134,4.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,11.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,55.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,19.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2011,134,3.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2011,134,5.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2011,134,89.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2011,134,21.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2011,134,64.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2011,134,8.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2011,134,108.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2011,134,288.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2011,134,15.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2011,134,21.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2011,134,2542.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2011,134,125.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2011,134,574.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2011,134,107.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2011,134,103.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2011,134,116.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2011,134,19.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2011,134,3.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2011,134,5.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2011,134,179.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2011,135,64.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2011,135,159.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2011,135,36.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2011,135,83.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2011,135,166.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2011,135,74.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2011,135,25.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2011,135,64.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2011,135,14.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2011,135,97.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2011,135,69.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2011,135,2722.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2011,135,30.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2011,135,99.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2011,135,6.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2011,135,13.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2011,135,5.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2011,135,116.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2011,135,85.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2011,135,17651.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2011,135,15.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2011,135,479.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2011,135,42.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2011,135,48.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2011,135,63.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2011,135,199.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2011,135,131.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2011,135,26.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2011,135,1.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2011,135,14.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2011,135,139.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2011,135,264.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2011,135,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2011,135,3.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2011,135,1.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2011,135,72.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2011,135,410.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2011,135,44.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2011,135,94.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2011,135,101.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2011,135,52.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2011,135,72.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2011,135,112.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2011,135,107.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2011,135,342.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2011,135,405.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2011,135,184.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2011,135,251.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2011,135,227.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2011,135,148.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2011,135,134.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2011,135,144.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2011,135,103.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2011,135,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2011,135,424.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2011,135,3.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2011,135,166.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2011,135,169.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2011,135,65.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2011,135,96.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2011,135,104.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2011,135,514.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2011,135,43.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2011,135,63.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2011,135,20.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2011,135,482.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2011,135,5.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2011,135,18.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2011,135,36.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2011,135,13.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2011,135,9.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2011,135,73.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2011,135,370.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2011,135,121.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2011,135,57.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2011,135,25.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2011,135,5.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2011,135,11.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2011,135,11.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2011,135,30.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2011,135,122.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2011,135,17.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2011,135,51.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2011,135,43.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2011,135,11.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2011,135,140.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2011,135,277.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2011,135,719.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2011,135,71.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2011,135,6.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2011,135,15.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2011,135,6.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2011,135,11.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2011,135,13.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2011,135,88.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2011,135,24.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2011,135,99.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2011,135,25.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2011,135,24.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2011,135,64.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2011,135,188.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2011,135,17.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2011,135,120.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2011,135,3.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2011,135,510.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2011,135,234.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2011,135,176.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2011,135,150.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2011,135,83.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2011,135,168.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2011,135,82.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2011,135,397.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2011,135,344.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2011,135,168.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2011,135,25.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2011,135,8620.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2011,135,72.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2011,135,780.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2011,135,234.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2011,135,90.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2011,135,98.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2011,135,29.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2011,135,180.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2011,135,12.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2011,135,15.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2011,135,404.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2011,135,89.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2011,135,32.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2011,135,14.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2011,135,50.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2011,135,122.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2011,135,232.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2011,135,66.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,563.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,43.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,44.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,59.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2011,135,31.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2011,135,166.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2011,135,60.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,60.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,39.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,53.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,78.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,91.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,233.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2011,135,194.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2011,135,581.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2011,135,59.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2011,135,386.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2011,135,1573.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2011,135,52.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2011,135,72.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2011,135,171.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2011,135,130.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2011,135,274.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2011,135,33.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2011,135,53.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2011,135,123.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2011,135,42.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2011,135,17.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2011,135,119.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2011,135,42.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2011,135,86.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2011,135,79.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2011,135,154.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2011,135,159.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2011,135,142.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2011,135,110.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2011,135,53.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2011,135,25.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2011,135,42.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2011,135,73.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2011,135,726.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2011,135,11.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2011,135,31.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2011,135,183.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2011,135,536.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2011,135,19.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2011,135,91.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2011,135,17.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2011,135,16.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2011,135,55.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2011,135,8.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2011,135,91.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2011,135,75.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2011,135,5.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2011,135,473.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2011,135,82.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2011,135,135.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2011,135,91.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2011,135,744.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2011,135,114.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2011,135,7.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2011,135,7.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2011,135,17.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2011,135,14.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2011,135,6.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2011,135,116.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2011,135,237.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2011,135,1.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2011,135,17.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2011,135,151.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2011,135,96.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2011,135,727.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2011,135,44.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2011,135,35.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2011,135,8.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2011,135,13.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,3.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,19.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2011,135,26.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2011,135,12.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,8.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,10.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,5.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,9.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2011,135,106.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2011,135,20.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2011,135,9.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2011,135,862.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2011,135,442.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2011,135,47.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2011,135,317.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2011,135,46.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2011,135,186.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2011,135,65.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2011,135,48.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2011,135,1315.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2011,135,114.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2011,135,158.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2011,135,527.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2011,135,124.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2011,135,50.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2011,135,211.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2011,135,125.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2011,135,42.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,3.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,9.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,48.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,493.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2011,135,92.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2011,135,132.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2011,135,255.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2011,135,54.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2011,135,111.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2011,135,17.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2011,135,274.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2011,135,13.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,13.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,328.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2011,135,549.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,22.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,33.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,76.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2011,135,18.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,18.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,23.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2011,135,145.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,2.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,41.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2011,135,1.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,48.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2011,135,38.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2011,135,41.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,11.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,141.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,20.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,153.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,196.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2011,135,11.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,135.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,61.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,337.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2011,135,27.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,10.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2011,135,385.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,17.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,55.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,1.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,6.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,696.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,57.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,2.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,5.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,24.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,87.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,89.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,461.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,27.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,677.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,49.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,115.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,3.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,98.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2011,135,10.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,2.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,8.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2011,135,17.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,72.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,13.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,93.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,6.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2011,135,6.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,18.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,3.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,1.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,1.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,6.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,2.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,304.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,35.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,15.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,69.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2011,135,196.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2011,135,679.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2011,135,537.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,423.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,112.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,623.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,254.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,182.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,174.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2011,135,14.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2011,135,10.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2011,135,2932.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,257.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2011,135,78.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,673.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2011,135,19.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,606.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,362.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,541.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,287.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2011,135,46.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2011,135,434.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2011,135,219.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2011,135,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,503.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,1247.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2011,135,1023.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2011,135,173.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2011,135,779.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2011,135,324.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2011,135,148.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,105.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2011,135,310.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2011,135,23408.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,320.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,21.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2011,135,84.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,287.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,76.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,6.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,6.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,30.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2011,135,252.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2011,135,423.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2011,135,513.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2011,135,391.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2011,135,161.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2011,135,6580.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2011,135,88.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,47.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,6.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,33.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,110.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2011,135,1138.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2011,135,40.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2011,135,12.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2011,135,13.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2011,135,936.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2011,135,44.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2011,135,336.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2011,135,540.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,150.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2011,135,41.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2011,135,101.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2011,135,300.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,1787.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,11.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,58.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,25.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2011,135,172.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,26.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,36.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,159.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,237.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2011,135,2.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,3.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,11.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,3.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,1.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,650.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,77.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,47.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,2.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,2232.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2011,135,1327.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,7.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,8.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,406.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,169.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2011,135,36.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,469.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,97.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,277.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,159.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,1324.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2011,135,16.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2011,135,54.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,50.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,115.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,8.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,42.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,54.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,70.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,660.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,5.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,92.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,20.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,2637.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,9.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,9.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,658.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,1742.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,1487.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,1.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,58.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,4.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,1.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,162.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,332.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,2268.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,16.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,17.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,1.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,1.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,1.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,21.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2011,135,3.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2011,135,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,1.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,1.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,1.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,1.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,6.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,1.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,2.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,1.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,1.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,4.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2011,135,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,3.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,1.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2011,135,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,43.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,1.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,2.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2011,135,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,1.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,1.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,2.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2011,135,1.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2011,135,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2011,135,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2011,135,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2011,135,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,1.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,2.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,1.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2011,135,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,1.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,19.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,3.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,2.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2011,135,2.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2011,135,52.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2011,135,4.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2011,135,186.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2011,135,478.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2011,135,80.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2011,135,185.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2011,135,125.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2011,135,249.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2011,135,11.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2011,135,43.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2011,135,21.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2011,135,18.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2011,135,10.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2011,135,39.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2011,135,24.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2011,135,21.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,23.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2011,135,109.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,10.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2011,135,8.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,13.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,43.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2011,135,16.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,27.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2011,135,17.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2011,135,10.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,3.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,264.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2011,135,8.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,11.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,45.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,11.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2011,135,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2011,135,12.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2011,135,58.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2011,135,29.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2011,135,99.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2011,135,3.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2011,135,140.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2011,135,368.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2011,135,12.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2011,135,34.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2011,135,2354.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2011,135,104.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2011,135,832.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2011,135,155.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2011,135,91.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2011,135,141.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2011,135,27.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2011,135,8.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2011,135,5.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2011,135,242.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2011,136,55.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2011,136,97.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2011,136,22.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2011,136,42.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2011,136,134.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2011,136,41.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2011,136,14.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2011,136,51.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2011,136,2.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2011,136,45.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2011,136,46.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2011,136,1140.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2011,136,21.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2011,136,22.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2011,136,4.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2011,136,22.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2011,136,1.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2011,136,26.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2011,136,23.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2011,136,4787.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2011,136,2.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2011,136,254.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2011,136,10.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2011,136,1.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2011,136,7.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2011,136,64.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2011,136,82.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2011,136,13.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2011,136,13.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2011,136,9.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2011,136,24.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2011,136,266.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2011,136,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2011,136,4.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2011,136,2.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2011,136,29.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2011,136,255.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2011,136,18.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2011,136,39.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2011,136,45.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2011,136,22.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2011,136,32.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2011,136,55.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2011,136,37.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2011,136,269.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2011,136,105.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2011,136,94.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2011,136,98.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2011,136,119.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2011,136,62.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2011,136,80.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2011,136,68.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2011,136,91.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2011,136,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2011,136,215.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2011,136,7.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2011,136,158.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2011,136,130.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2011,136,39.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2011,136,113.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2011,136,69.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2011,136,561.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2011,136,25.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2011,136,34.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2011,136,11.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2011,136,441.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2011,136,1.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2011,136,26.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2011,136,5.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2011,136,2.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2011,136,6.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2011,136,24.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2011,136,141.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2011,136,83.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2011,136,44.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2011,136,23.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2011,136,10.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2011,136,2.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2011,136,11.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2011,136,7.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2011,136,65.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2011,136,21.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2011,136,26.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2011,136,31.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2011,136,5.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2011,136,59.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2011,136,241.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2011,136,862.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2011,136,65.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2011,136,10.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2011,136,17.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2011,136,6.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2011,136,20.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2011,136,3.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2011,136,175.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2011,136,15.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2011,136,78.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2011,136,31.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2011,136,25.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2011,136,261.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2011,136,75.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2011,136,14.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2011,136,47.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2011,136,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2011,136,277.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2011,136,322.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2011,136,179.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2011,136,73.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2011,136,59.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2011,136,132.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2011,136,76.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2011,136,148.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2011,136,179.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2011,136,115.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2011,136,38.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2011,136,12201.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2011,136,20.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2011,136,661.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2011,136,255.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2011,136,36.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2011,136,73.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2011,136,60.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2011,136,178.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2011,136,26.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2011,136,15.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2011,136,258.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2011,136,26.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2011,136,55.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2011,136,7.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2011,136,24.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2011,136,184.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2011,136,201.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2011,136,68.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,194.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,32.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,29.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,54.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2011,136,9.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2011,136,79.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2011,136,37.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,95.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,28.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,36.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,62.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,74.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,163.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2011,136,178.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2011,136,352.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2011,136,91.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2011,136,458.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2011,136,2435.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2011,136,96.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2011,136,58.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2011,136,100.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2011,136,48.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2011,136,43.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2011,136,7.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2011,136,10.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2011,136,62.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2011,136,7.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2011,136,24.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2011,136,98.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2011,136,33.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2011,136,70.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2011,136,67.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2011,136,156.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2011,136,158.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2011,136,154.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2011,136,99.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2011,136,30.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2011,136,15.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2011,136,44.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2011,136,121.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2011,136,761.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2011,136,38.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2011,136,44.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2011,136,266.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2011,136,211.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2011,136,9.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2011,136,165.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2011,136,12.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2011,136,11.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2011,136,35.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2011,136,16.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2011,136,68.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2011,136,440.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2011,136,10.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2011,136,484.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2011,136,48.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2011,136,74.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2011,136,83.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2011,136,811.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2011,136,90.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2011,136,3.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2011,136,20.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2011,136,15.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2011,136,13.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2011,136,11.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2011,136,111.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2011,136,132.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2011,136,1.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2011,136,17.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2011,136,131.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2011,136,186.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2011,136,500.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2011,136,40.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2011,136,23.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2011,136,5.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2011,136,16.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,2.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,32.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2011,136,22.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2011,136,4.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,14.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,11.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,2.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,13.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2011,136,187.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2011,136,9.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2011,136,15.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2011,136,726.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2011,136,288.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2011,136,73.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2011,136,607.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2011,136,41.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2011,136,141.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2011,136,313.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2011,136,33.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2011,136,1296.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2011,136,164.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2011,136,144.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2011,136,378.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2011,136,99.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2011,136,50.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2011,136,189.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2011,136,157.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2011,136,44.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,18.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,20.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,81.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,827.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2011,136,92.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2011,136,85.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2011,136,296.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2011,136,37.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2011,136,126.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2011,136,37.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2011,136,244.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2011,136,21.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,4.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,646.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2011,136,542.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,8.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,15.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,56.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2011,136,33.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,16.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,32.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2011,136,130.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,7.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,15.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2011,136,2.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,31.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2011,136,22.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2011,136,22.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,9.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,200.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,14.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,236.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,200.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2011,136,7.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,187.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,44.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,424.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2011,136,34.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,4.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2011,136,261.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,19.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,103.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,12.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,859.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,54.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,3.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,3.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,40.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,69.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,229.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,360.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,74.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,758.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,47.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,110.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,1.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,54.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2011,136,5.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,6.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2011,136,19.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,66.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,21.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,242.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,18.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2011,136,6.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,61.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,15.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,2.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,4.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,9.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,4.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,363.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,22.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,13.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,175.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2011,136,194.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2011,136,1146.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2011,136,699.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,178.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,171.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,720.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,126.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,274.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,299.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2011,136,29.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2011,136,19.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2011,136,4260.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,180.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2011,136,116.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,562.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2011,136,42.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,342.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,255.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,1083.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,238.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2011,136,174.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2011,136,1024.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2011,136,478.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2011,136,3.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,1194.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,1998.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2011,136,2147.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2011,136,468.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2011,136,1094.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2011,136,824.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2011,136,126.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,126.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2011,136,334.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2011,136,38247.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,354.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,67.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2011,136,132.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,569.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,204.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,4.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,28.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,21.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2011,136,394.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2011,136,573.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2011,136,254.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2011,136,530.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2011,136,206.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2011,136,11746.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2011,136,145.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,195.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,27.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,84.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,226.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2011,136,1619.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2011,136,155.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2011,136,9.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2011,136,13.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2011,136,1457.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2011,136,79.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2011,136,770.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2011,136,1460.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,396.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2011,136,125.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2011,136,243.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2011,136,977.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,3357.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,9.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,93.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,33.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2011,136,192.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,70.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,40.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,289.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,337.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2011,136,1.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,6.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,51.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,1.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,1.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,1270.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,111.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,69.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,2.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,2999.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2011,136,1274.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,15.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,11.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,926.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,737.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2011,136,101.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,733.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,259.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,449.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,175.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,2505.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2011,136,26.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2011,136,136.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,63.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,167.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,12.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,22.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,76.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,93.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,274.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,7.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,66.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,38.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,1547.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,12.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,56.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,772.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,851.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,603.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,19.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,1.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,1.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,1.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,108.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,213.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,1217.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,12.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,24.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,1.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,4.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,16.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2011,136,2.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2011,136,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,1.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,3.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,1.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,6.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,6.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,5.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,9.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2011,136,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,2.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,2.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2011,136,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,97.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,1.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2011,136,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,2.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,4.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,1.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2011,136,2.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2011,136,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2011,136,1.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2011,136,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2011,136,3.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,1.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,1.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2011,136,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,28.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,1.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2011,136,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2011,136,24.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2011,136,3.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2011,136,193.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2011,136,340.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2011,136,91.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2011,136,213.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2011,136,184.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2011,136,304.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2011,136,8.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2011,136,32.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2011,136,36.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2011,136,1.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2011,136,0.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2011,136,9.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2011,136,18.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2011,136,13.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,7.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2011,136,17.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,12.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2011,136,15.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,3.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,22.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2011,136,25.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,3.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2011,136,10.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2011,136,6.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,3.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,198.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2011,136,11.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,5.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,31.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,8.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2011,136,1.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2011,136,1.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2011,136,44.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2011,136,29.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2011,136,125.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2011,136,7.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2011,136,203.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2011,136,458.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2011,136,9.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2011,136,9.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2011,136,1605.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2011,136,60.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2011,136,1063.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2011,136,165.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2011,136,54.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2011,136,177.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2011,136,16.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2011,136,9.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2011,136,9.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2011,136,280.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2011,137,26.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2011,137,59.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2011,137,25.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2011,137,7.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2011,137,36.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2011,137,7.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2011,137,7.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2011,137,4.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2011,137,2.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2011,137,5.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2011,137,13.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2011,137,304.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2011,137,17.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2011,137,30.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2011,137,1.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2011,137,78.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2011,137,2.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2011,137,17.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2011,137,7.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2011,137,1961.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2011,137,8.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2011,137,45.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2011,137,2.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2011,137,1.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2011,137,5.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2011,137,11.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2011,137,66.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2011,137,2.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2011,137,25.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2011,137,8.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2011,137,12.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2011,137,123.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2011,137,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2011,137,2.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2011,137,4.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2011,137,10.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2011,137,167.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2011,137,15.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2011,137,20.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2011,137,23.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2011,137,13.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2011,137,14.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2011,137,17.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2011,137,20.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2011,137,150.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2011,137,32.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2011,137,54.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2011,137,50.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2011,137,33.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2011,137,6.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2011,137,48.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2011,137,15.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2011,137,63.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2011,137,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2011,137,105.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2011,137,0.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2011,137,169.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2011,137,144.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2011,137,33.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2011,137,154.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2011,137,10.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2011,137,1105.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2011,137,13.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2011,137,9.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2011,137,24.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2011,137,699.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2011,137,9.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2011,137,23.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2011,137,15.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2011,137,13.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2011,137,26.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2011,137,26.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2011,137,52.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2011,137,58.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2011,137,32.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2011,137,34.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2011,137,3.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2011,137,6.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2011,137,14.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2011,137,5.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2011,137,52.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2011,137,23.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2011,137,14.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2011,137,6.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2011,137,7.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2011,137,24.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2011,137,81.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2011,137,1085.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2011,137,58.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2011,137,28.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2011,137,52.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2011,137,5.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2011,137,4.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2011,137,3.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2011,137,218.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2011,137,28.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2011,137,41.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2011,137,21.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2011,137,33.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2011,137,176.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2011,137,39.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2011,137,12.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2011,137,42.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2011,137,1.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2011,137,139.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2011,137,231.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2011,137,153.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2011,137,15.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2011,137,22.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2011,137,39.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2011,137,16.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2011,137,109.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2011,137,89.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2011,137,28.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2011,137,25.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2011,137,6644.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2011,137,9.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2011,137,420.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2011,137,176.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2011,137,19.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2011,137,39.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2011,137,69.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2011,137,156.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2011,137,8.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2011,137,13.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2011,137,78.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2011,137,8.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2011,137,33.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2011,137,10.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2011,137,18.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2011,137,84.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2011,137,88.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2011,137,77.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,82.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,11.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,26.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,72.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2011,137,2.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2011,137,28.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2011,137,11.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,69.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,54.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,12.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,26.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,75.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,69.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2011,137,217.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2011,137,225.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2011,137,72.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2011,137,233.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2011,137,2250.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2011,137,77.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2011,137,28.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2011,137,57.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2011,137,25.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2011,137,8.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2011,137,2.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2011,137,3.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2011,137,37.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2011,137,2.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2011,137,11.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2011,137,30.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2011,137,17.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2011,137,48.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2011,137,33.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2011,137,102.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2011,137,42.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2011,137,87.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2011,137,78.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2011,137,20.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2011,137,18.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2011,137,38.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2011,137,57.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2011,137,851.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2011,137,11.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2011,137,19.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2011,137,112.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2011,137,100.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2011,137,4.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2011,137,163.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2011,137,7.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2011,137,19.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2011,137,33.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2011,137,22.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2011,137,36.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2011,137,285.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2011,137,7.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2011,137,383.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2011,137,99.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2011,137,106.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2011,137,72.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2011,137,1101.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2011,137,89.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2011,137,8.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2011,137,12.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2011,137,5.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2011,137,4.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2011,137,17.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2011,137,152.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2011,137,162.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2011,137,3.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2011,137,15.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2011,137,52.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2011,137,157.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2011,137,388.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2011,137,36.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2011,137,40.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2011,137,4.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2011,137,36.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,2.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,32.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2011,137,13.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2011,137,6.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,38.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,5.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,2.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,2.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2011,137,233.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2011,137,13.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2011,137,15.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2011,137,306.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2011,137,107.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2011,137,75.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2011,137,504.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2011,137,9.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2011,137,86.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2011,137,124.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2011,137,26.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2011,137,562.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2011,137,118.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2011,137,81.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2011,137,354.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2011,137,22.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2011,137,48.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2011,137,114.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2011,137,182.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2011,137,39.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,37.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,16.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,64.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,1332.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2011,137,67.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2011,137,46.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2011,137,276.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2011,137,49.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2011,137,206.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2011,137,44.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2011,137,121.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2011,137,36.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,9.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,666.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2011,137,319.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,7.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,21.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,25.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2011,137,36.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,10.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,12.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2011,137,106.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,43.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,7.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2011,137,1.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,29.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2011,137,33.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2011,137,11.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,12.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,81.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,4.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,172.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,130.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2011,137,7.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,168.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,53.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,245.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2011,137,55.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,2.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2011,137,180.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,5.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,88.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,2.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,570.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,67.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,1.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,3.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,55.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,30.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,299.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,353.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,165.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,774.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,37.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,132.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,1.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,53.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2011,137,2.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,1.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,3.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2011,137,27.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,40.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,15.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,237.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,13.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2011,137,2.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,91.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,7.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,2.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,1.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,4.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,5.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,351.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,23.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,3.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,130.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2011,137,168.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2011,137,785.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2011,137,436.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,159.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,272.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,658.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,207.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,274.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,339.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2011,137,35.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2011,137,16.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2011,137,4773.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,207.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2011,137,171.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,347.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2011,137,61.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,199.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,89.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,1524.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,227.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2011,137,223.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2011,137,391.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2011,137,308.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2011,137,5.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,762.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,2162.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2011,137,3555.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2011,137,595.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2011,137,1139.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2011,137,274.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2011,137,64.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,58.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2011,137,201.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2011,137,23486.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,348.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,44.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2011,137,126.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,295.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,176.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,2.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,57.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,12.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2011,137,250.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2011,137,239.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2011,137,112.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2011,137,275.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2011,137,207.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2011,137,6836.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2011,137,86.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,189.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,20.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,48.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,128.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2011,137,931.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2011,137,112.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2011,137,2.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2011,137,6.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2011,137,952.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2011,137,42.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2011,137,533.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2011,137,1200.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,280.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2011,137,116.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2011,137,208.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2011,137,731.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,1973.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,8.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,25.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,15.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2011,137,81.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,52.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,20.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,75.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,168.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2011,137,3.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,51.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,2.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,754.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,28.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,38.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,1.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,2046.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2011,137,1022.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,7.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,5.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,799.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,164.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2011,137,69.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,376.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,154.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,222.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,79.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,1239.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2011,137,14.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2011,137,109.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,33.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,88.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,2.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,10.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,43.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,55.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,128.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,1.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,18.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,14.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,532.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,3.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,35.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,386.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,273.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,126.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,1.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,3.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,41.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,65.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,282.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,7.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,15.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,2.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,1.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,1.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,1.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,14.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2011,137,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2011,137,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,2.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,2.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,4.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,4.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,1.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,1.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,1.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2011,137,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,2.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,1.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2011,137,1.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,24.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,2.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2011,137,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,2.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,3.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,1.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2011,137,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2011,137,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2011,137,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2011,137,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2011,137,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,1.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2011,137,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,4.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2011,137,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2011,137,6.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2011,137,1.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2011,137,113.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2011,137,117.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2011,137,43.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2011,137,133.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2011,137,125.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2011,137,90.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2011,137,1.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2011,137,14.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2011,137,39.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2011,137,1.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2011,137,5.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2011,137,4.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2011,137,17.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2011,137,10.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,24.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2011,137,59.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,0.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2011,137,19.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,3.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,10.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2011,137,16.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,5.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2011,137,8.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2011,137,3.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,8.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,54.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2011,137,0.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,3.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,28.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,1.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2011,137,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2011,137,6.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2011,137,13.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2011,137,9.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2011,137,121.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2011,137,2.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2011,137,137.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2011,137,369.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2011,137,7.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2011,137,3.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2011,137,1340.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2011,137,32.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2011,137,724.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2011,137,202.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2011,137,24.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2011,137,76.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2011,137,18.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2011,137,8.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2011,137,17.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2011,137,269.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2011,138,12.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2011,138,14.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2011,138,0.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2011,138,1.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2011,138,12.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2011,138,3.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2011,138,1.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2011,138,1.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2011,138,2.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2011,138,1.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2011,138,7.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2011,138,99.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2011,138,17.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2011,138,19.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2011,138,1.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2011,138,34.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2011,138,1.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2011,138,20.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2011,138,3.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2011,138,1042.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2011,138,0.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2011,138,7.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2011,138,0.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2011,138,1.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2011,138,3.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2011,138,6.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2011,138,81.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2011,138,6.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2011,138,32.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2011,138,14.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2011,138,13.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2011,138,22.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2011,138,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2011,138,5.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2011,138,2.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2011,138,3.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2011,138,90.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2011,138,6.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2011,138,9.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2011,138,10.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2011,138,9.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2011,138,32.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2011,138,5.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2011,138,7.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2011,138,47.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2011,138,12.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2011,138,64.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2011,138,20.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2011,138,6.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2011,138,5.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2011,138,12.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2011,138,4.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2011,138,54.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2011,138,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2011,138,62.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2011,138,0.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2011,138,67.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2011,138,81.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2011,138,19.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2011,138,78.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2011,138,4.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2011,138,931.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2011,138,2.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2011,138,3.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2011,138,9.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2011,138,980.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2011,138,4.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2011,138,9.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2011,138,5.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2011,138,2.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2011,138,4.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2011,138,4.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2011,138,15.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2011,138,17.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2011,138,7.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2011,138,32.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2011,138,0.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2011,138,2.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2011,138,5.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2011,138,4.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2011,138,31.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2011,138,15.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2011,138,7.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2011,138,3.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2011,138,3.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2011,138,12.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2011,138,18.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2011,138,904.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2011,138,53.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2011,138,17.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2011,138,30.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2011,138,4.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2011,138,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2011,138,2.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2011,138,93.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2011,138,5.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2011,138,20.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2011,138,42.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2011,138,12.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2011,138,32.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2011,138,13.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2011,138,3.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2011,138,3.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2011,138,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2011,138,21.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2011,138,96.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2011,138,28.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2011,138,2.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2011,138,4.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2011,138,8.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2011,138,13.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2011,138,63.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2011,138,31.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2011,138,4.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2011,138,15.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2011,138,2410.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2011,138,4.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2011,138,91.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2011,138,56.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2011,138,10.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2011,138,29.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2011,138,43.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2011,138,64.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2011,138,1.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2011,138,4.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2011,138,30.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2011,138,3.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2011,138,8.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2011,138,2.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2011,138,5.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2011,138,19.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2011,138,47.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2011,138,26.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,37.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,1.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,10.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,22.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2011,138,9.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2011,138,23.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2011,138,3.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,42.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,26.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,3.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,11.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,49.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,38.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2011,138,149.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2011,138,94.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2011,138,44.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2011,138,59.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2011,138,1797.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2011,138,23.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2011,138,12.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2011,138,57.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2011,138,11.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2011,138,2.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2011,138,5.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2011,138,0.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2011,138,37.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2011,138,1.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2011,138,10.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2011,138,14.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2011,138,8.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2011,138,6.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2011,138,9.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2011,138,73.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2011,138,34.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2011,138,28.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2011,138,52.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2011,138,13.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2011,138,7.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2011,138,39.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2011,138,27.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2011,138,552.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2011,138,4.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2011,138,1.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2011,138,18.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2011,138,33.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2011,138,2.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2011,138,106.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2011,138,6.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2011,138,10.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2011,138,34.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2011,138,17.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2011,138,30.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2011,138,99.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2011,138,2.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2011,138,153.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2011,138,40.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2011,138,79.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2011,138,40.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2011,138,944.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2011,138,46.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2011,138,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2011,138,4.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2011,138,1.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2011,138,2.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2011,138,4.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2011,138,113.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2011,138,137.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2011,138,0.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2011,138,26.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2011,138,56.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2011,138,52.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2011,138,245.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2011,138,23.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2011,138,44.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2011,138,6.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2011,138,21.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,4.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,27.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2011,138,8.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2011,138,2.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,29.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,1.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,1.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,6.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2011,138,195.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2011,138,5.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2011,138,11.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2011,138,109.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2011,138,13.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2011,138,15.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2011,138,295.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2011,138,3.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2011,138,63.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2011,138,17.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2011,138,5.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2011,138,108.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2011,138,49.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2011,138,23.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2011,138,291.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2011,138,25.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2011,138,8.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2011,138,65.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2011,138,53.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2011,138,55.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,7.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,17.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,38.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,1154.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2011,138,38.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2011,138,18.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2011,138,144.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2011,138,10.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2011,138,116.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2011,138,14.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2011,138,58.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2011,138,10.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,3.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,231.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2011,138,194.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,8.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,14.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,5.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2011,138,14.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,1.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,7.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2011,138,36.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,26.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,0.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2011,138,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,7.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2011,138,13.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2011,138,0.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,6.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,24.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,1.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,22.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,36.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2011,138,1.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,33.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,15.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,51.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2011,138,11.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,1.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2011,138,58.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,3.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,20.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,1.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,3.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,150.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,13.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,5.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,4.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,6.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,46.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,131.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,59.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,225.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,7.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,46.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,0.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,15.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2011,138,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,0.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2011,138,6.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,5.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,3.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,24.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,1.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2011,138,0.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,8.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,2.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,1.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,1.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,55.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,2.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,1.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,6.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2011,138,31.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2011,138,82.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2011,138,142.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,44.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,99.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,260.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,116.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,133.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,73.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2011,138,9.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2011,138,9.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2011,138,1959.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,98.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2011,138,65.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,104.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2011,138,20.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,99.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,15.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,721.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,152.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2011,138,60.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2011,138,26.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2011,138,44.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2011,138,3.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,197.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,1215.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2011,138,878.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2011,138,50.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2011,138,535.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2011,138,65.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2011,138,9.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,13.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2011,138,49.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2011,138,5772.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,74.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,9.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2011,138,35.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,72.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,39.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,0.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,14.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,1.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2011,138,31.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2011,138,71.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2011,138,4.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2011,138,49.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2011,138,24.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2011,138,887.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2011,138,8.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,71.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,5.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,1.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,16.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2011,138,123.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2011,138,9.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2011,138,0.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2011,138,0.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2011,138,147.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2011,138,12.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2011,138,67.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2011,138,138.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,64.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2011,138,28.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2011,138,21.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2011,138,124.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,275.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,1.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,3.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,2.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2011,138,13.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,6.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,8.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,11.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,12.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2011,138,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,3.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,0.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,75.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,15.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,6.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,311.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2011,138,135.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,1.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,1.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,108.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,26.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2011,138,17.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,33.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,9.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,33.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,20.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,191.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2011,138,1.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2011,138,35.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,10.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,26.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,1.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,5.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,7.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,22.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,5.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,26.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,50.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,18.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,2.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,1.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,2.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,2.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,22.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,2.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2011,138,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2011,138,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,1.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,1.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,1.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,1.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2011,138,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2011,138,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,1.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2011,138,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2011,138,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2011,138,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2011,138,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2011,138,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2011,138,1.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2011,138,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,2.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,1.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2011,138,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2011,138,0.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2011,138,0.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2011,138,35.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2011,138,32.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2011,138,9.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2011,138,43.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2011,138,14.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2011,138,8.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2011,138,2.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2011,138,5.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2011,138,5.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2011,138,7.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2011,138,5.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2011,138,5.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2011,138,5.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2011,138,5.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,35.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2011,138,84.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,0.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2011,138,6.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,8.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,6.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2011,138,10.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,0.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2011,138,11.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2011,138,1.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,0.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,35.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2011,138,0.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,0.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,7.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,0.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2011,138,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2011,138,2.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2011,138,3.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2011,138,0.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2011,138,9.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2011,138,0.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2011,138,43.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2011,138,135.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2011,138,2.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2011,138,2.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2011,138,604.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2011,138,13.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2011,138,203.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2011,138,55.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2011,138,14.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2011,138,19.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2011,138,10.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2011,138,4.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2011,138,8.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2011,138,73.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2011,139,15.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2011,139,1.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2011,139,1.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2011,139,2.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2011,139,8.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2011,139,3.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2011,139,1.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2011,139,1.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2011,139,0.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2011,139,1.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2011,139,1.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2011,139,50.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2011,139,4.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2011,139,19.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2011,139,0.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2011,139,7.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2011,139,0.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2011,139,34.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2011,139,0.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2011,139,503.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2011,139,2.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2011,139,1.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2011,139,0.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2011,139,0.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2011,139,0.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2011,139,2.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2011,139,110.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2011,139,11.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2011,139,18.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2011,139,5.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2011,139,3.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2011,139,17.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2011,139,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2011,139,2.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2011,139,1.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2011,139,3.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2011,139,86.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2011,139,7.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2011,139,13.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2011,139,10.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2011,139,0.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2011,139,28.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2011,139,3.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2011,139,11.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2011,139,38.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2011,139,2.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2011,139,61.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2011,139,3.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2011,139,5.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2011,139,6.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2011,139,6.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2011,139,0.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2011,139,0.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2011,139,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2011,139,40.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2011,139,1.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2011,139,27.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2011,139,53.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2011,139,8.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2011,139,32.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2011,139,0.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2011,139,484.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2011,139,2.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2011,139,1.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2011,139,9.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2011,139,842.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2011,139,5.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2011,139,5.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2011,139,10.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2011,139,3.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2011,139,2.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2011,139,4.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2011,139,9.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2011,139,19.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2011,139,5.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2011,139,9.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2011,139,2.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2011,139,4.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2011,139,1.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2011,139,3.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2011,139,24.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2011,139,6.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2011,139,0.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2011,139,0.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2011,139,0.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2011,139,4.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2011,139,6.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2011,139,523.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2011,139,43.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2011,139,2.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2011,139,36.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2011,139,2.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2011,139,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2011,139,0.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2011,139,11.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2011,139,3.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2011,139,2.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2011,139,21.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2011,139,5.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2011,139,8.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2011,139,6.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2011,139,2.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2011,139,4.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2011,139,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2011,139,2.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2011,139,21.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2011,139,42.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2011,139,2.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2011,139,0.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2011,139,2.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2011,139,0.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2011,139,10.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2011,139,29.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2011,139,2.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2011,139,2.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2011,139,985.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2011,139,1.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2011,139,10.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2011,139,14.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2011,139,15.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2011,139,3.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2011,139,10.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2011,139,23.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2011,139,1.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2011,139,3.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2011,139,27.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2011,139,0.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2011,139,1.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2011,139,4.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2011,139,0.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2011,139,7.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2011,139,31.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2011,139,16.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,26.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,6.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,1.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,18.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2011,139,5.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2011,139,15.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2011,139,1.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,18.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,17.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,2.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,5.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,11.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,23.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2011,139,98.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2011,139,43.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2011,139,31.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2011,139,51.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2011,139,824.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2011,139,8.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2011,139,14.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2011,139,29.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2011,139,7.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2011,139,3.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2011,139,2.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2011,139,0.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2011,139,19.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2011,139,1.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2011,139,10.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2011,139,8.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2011,139,10.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2011,139,5.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2011,139,6.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2011,139,29.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2011,139,18.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2011,139,17.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2011,139,30.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2011,139,2.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2011,139,0.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2011,139,7.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2011,139,9.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2011,139,260.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2011,139,1.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2011,139,3.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2011,139,12.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2011,139,14.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2011,139,5.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2011,139,50.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2011,139,1.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2011,139,5.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2011,139,13.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2011,139,14.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2011,139,11.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2011,139,72.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2011,139,2.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2011,139,134.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2011,139,21.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2011,139,33.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2011,139,15.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2011,139,634.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2011,139,35.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2011,139,3.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2011,139,3.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2011,139,1.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2011,139,2.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2011,139,0.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2011,139,66.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2011,139,53.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2011,139,0.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2011,139,6.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2011,139,34.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2011,139,15.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2011,139,149.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2011,139,19.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2011,139,42.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2011,139,2.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2011,139,13.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,0.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,21.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2011,139,10.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2011,139,5.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,15.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,0.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,0.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,2.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2011,139,221.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2011,139,4.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2011,139,12.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2011,139,43.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2011,139,8.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2011,139,3.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2011,139,157.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2011,139,6.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2011,139,33.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2011,139,10.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2011,139,11.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2011,139,38.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2011,139,24.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2011,139,18.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2011,139,265.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2011,139,12.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2011,139,12.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2011,139,24.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2011,139,60.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2011,139,6.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,15.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,10.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,27.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,839.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2011,139,10.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2011,139,9.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2011,139,92.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2011,139,2.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2011,139,44.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2011,139,8.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2011,139,45.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2011,139,15.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,3.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,101.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2011,139,65.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,5.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,6.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,6.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2011,139,2.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,0.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,0.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2011,139,17.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,16.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,0.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2011,139,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,10.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2011,139,2.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2011,139,1.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,5.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,6.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,1.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,1.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,19.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2011,139,0.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,11.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,5.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,7.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2011,139,0.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,1.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2011,139,16.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,2.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,8.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,1.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,43.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,3.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,2.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,1.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,0.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,5.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,77.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,9.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,122.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,2.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,16.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,1.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,3.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2011,139,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,2.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2011,139,4.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,4.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,8.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,1.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2011,139,0.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,2.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,1.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,1.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,11.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,5.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,1.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,2.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2011,139,7.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2011,139,13.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2011,139,15.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,16.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,49.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,75.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,56.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,43.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,23.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2011,139,0.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2011,139,1.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2011,139,804.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,42.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2011,139,12.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,26.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2011,139,16.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,47.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,4.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,338.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,32.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2011,139,12.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2011,139,7.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2011,139,6.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2011,139,2.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,49.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,451.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2011,139,213.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2011,139,17.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2011,139,133.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2011,139,8.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2011,139,3.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,10.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2011,139,18.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2011,139,1604.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,16.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,1.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2011,139,11.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,30.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,15.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,1.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,3.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,0.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2011,139,11.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2011,139,15.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2011,139,2.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2011,139,8.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2011,139,10.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2011,139,155.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2011,139,2.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,10.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,2.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,1.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,5.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2011,139,20.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2011,139,5.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2011,139,2.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2011,139,1.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2011,139,49.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2011,139,11.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2011,139,10.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2011,139,29.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,19.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2011,139,14.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2011,139,5.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2011,139,21.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,63.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,0.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,0.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,0.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2011,139,13.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,0.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,0.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,3.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,5.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2011,139,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,1.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,1.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,14.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,4.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,3.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,54.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2011,139,27.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,2.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,2.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,28.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,4.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2011,139,9.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,9.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,5.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,8.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,1.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,91.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2011,139,2.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2011,139,12.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,4.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,1.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,1.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,4.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,2.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,8.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,3.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,5.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,1.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,1.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,5.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,1.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2011,139,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2011,139,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,1.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,1.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,1.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,2.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2011,139,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2011,139,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2011,139,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2011,139,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,1.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2011,139,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2011,139,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2011,139,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2011,139,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2011,139,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,2.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2011,139,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2011,139,0.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2011,139,0.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2011,139,17.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2011,139,15.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2011,139,3.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2011,139,15.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2011,139,5.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2011,139,2.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2011,139,1.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2011,139,3.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2011,139,1.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2011,139,7.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2011,139,0.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2011,139,19.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2011,139,1.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2011,139,6.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,29.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2011,139,91.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,0.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2011,139,4.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,3.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,1.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2011,139,3.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,0.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2011,139,6.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2011,139,0.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,1.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,25.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2011,139,1.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,0.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,0.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,0.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2011,139,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2011,139,1.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2011,139,4.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2011,139,2.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2011,139,7.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2011,139,1.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2011,139,13.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2011,139,21.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2011,139,0.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2011,139,1.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2011,139,255.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2011,139,2.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2011,139,132.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2011,139,58.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2011,139,3.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2011,139,10.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2011,139,6.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2011,139,3.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2011,139,2.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2011,139,50.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2011,140,17.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2011,140,6.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2011,140,2.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2011,140,18.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2011,140,3.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2011,140,3.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2011,140,8.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2011,140,2.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2011,140,2.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2011,140,0.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2011,140,1.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2011,140,49.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2011,140,2.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2011,140,40.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2011,140,0.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2011,140,8.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2011,140,0.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2011,140,14.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2011,140,0.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2011,140,437.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2011,140,0.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2011,140,1.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2011,140,1.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2011,140,1.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2011,140,0.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2011,140,1.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2011,140,95.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2011,140,10.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2011,140,12.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2011,140,5.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2011,140,1.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2011,140,14.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2011,140,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2011,140,2.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2011,140,4.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2011,140,1.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2011,140,116.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2011,140,5.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2011,140,11.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2011,140,21.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2011,140,29.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2011,140,20.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2011,140,6.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2011,140,6.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2011,140,35.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2011,140,8.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2011,140,82.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2011,140,2.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2011,140,2.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2011,140,9.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2011,140,1.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2011,140,1.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2011,140,34.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2011,140,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2011,140,35.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2011,140,0.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2011,140,32.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2011,140,43.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2011,140,11.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2011,140,31.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2011,140,0.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2011,140,332.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2011,140,0.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2011,140,3.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2011,140,13.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2011,140,903.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2011,140,4.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2011,140,3.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2011,140,10.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2011,140,2.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2011,140,1.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2011,140,3.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2011,140,13.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2011,140,4.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2011,140,1.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2011,140,11.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2011,140,0.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2011,140,1.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2011,140,1.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2011,140,1.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2011,140,11.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2011,140,20.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2011,140,1.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2011,140,1.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2011,140,0.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2011,140,8.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2011,140,4.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2011,140,324.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2011,140,23.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2011,140,5.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2011,140,22.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2011,140,0.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2011,140,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2011,140,0.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2011,140,1.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2011,140,6.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2011,140,2.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2011,140,17.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2011,140,3.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2011,140,7.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2011,140,3.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2011,140,1.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2011,140,1.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2011,140,51.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2011,140,8.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2011,140,3.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2011,140,1.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2011,140,9.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2011,140,16.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2011,140,631.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2011,140,2.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2011,140,2.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2011,140,8.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2011,140,6.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2011,140,1.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2011,140,9.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2011,140,14.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2011,140,10.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2011,140,2.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2011,140,0.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2011,140,1.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2011,140,2.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2011,140,0.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2011,140,7.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2011,140,14.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2011,140,1.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,19.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,4.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,1.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,15.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2011,140,1.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2011,140,11.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2011,140,0.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,8.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,9.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,1.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,4.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,3.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,14.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2011,140,42.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2011,140,23.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2011,140,9.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2011,140,24.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2011,140,461.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2011,140,6.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2011,140,11.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2011,140,7.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2011,140,2.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2011,140,1.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2011,140,7.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2011,140,1.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2011,140,8.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2011,140,5.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2011,140,3.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2011,140,3.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2011,140,2.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2011,140,0.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2011,140,1.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2011,140,12.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2011,140,4.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2011,140,2.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2011,140,14.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2011,140,4.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2011,140,0.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2011,140,1.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2011,140,8.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2011,140,130.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2011,140,3.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2011,140,5.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2011,140,1.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2011,140,9.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2011,140,3.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2011,140,9.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2011,140,0.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2011,140,1.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2011,140,9.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2011,140,7.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2011,140,4.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2011,140,28.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2011,140,3.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2011,140,53.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2011,140,14.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2011,140,20.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2011,140,6.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2011,140,523.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2011,140,21.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2011,140,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2011,140,2.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2011,140,1.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2011,140,1.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2011,140,1.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2011,140,66.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2011,140,77.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2011,140,0.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2011,140,4.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2011,140,31.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2011,140,3.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2011,140,109.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2011,140,8.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2011,140,31.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2011,140,7.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2011,140,8.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,1.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,11.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2011,140,7.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2011,140,1.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,20.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,0.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,1.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,2.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2011,140,120.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2011,140,1.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2011,140,10.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2011,140,6.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2011,140,1.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2011,140,6.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2011,140,50.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2011,140,11.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2011,140,7.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2011,140,3.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2011,140,11.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2011,140,18.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2011,140,17.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2011,140,19.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2011,140,175.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2011,140,4.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2011,140,10.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2011,140,29.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2011,140,30.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2011,140,6.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,6.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,4.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,18.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,470.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2011,140,3.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2011,140,8.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2011,140,84.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2011,140,0.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2011,140,19.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2011,140,8.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2011,140,22.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2011,140,6.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,2.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,112.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2011,140,36.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,4.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,3.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,5.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2011,140,3.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,2.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,2.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2011,140,12.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,0.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,0.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2011,140,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,0.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2011,140,1.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2011,140,0.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,0.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,6.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,1.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,1.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,15.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2011,140,0.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,1.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,5.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,5.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2011,140,0.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,0.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2011,140,9.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,0.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,5.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,0.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,43.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,0.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,2.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,0.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,54.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,3.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,70.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,4.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,5.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,0.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,3.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2011,140,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2011,140,1.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2011,140,0.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,12.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,1.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,0.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,2.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2011,140,3.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2011,140,4.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2011,140,11.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,7.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,70.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,46.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,35.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,15.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,10.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2011,140,1.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2011,140,1.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2011,140,300.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,29.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2011,140,16.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,23.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2011,140,1.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,14.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,3.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,103.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,16.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2011,140,1.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2011,140,3.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2011,140,3.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2011,140,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,47.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,69.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2011,140,58.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2011,140,7.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2011,140,63.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2011,140,4.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2011,140,6.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,6.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2011,140,11.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2011,140,945.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,4.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,1.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2011,140,1.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,28.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,9.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,0.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,0.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,0.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2011,140,1.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2011,140,15.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2011,140,3.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2011,140,6.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2011,140,3.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2011,140,91.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2011,140,3.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,10.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,4.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,2.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,4.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2011,140,8.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2011,140,4.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2011,140,0.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2011,140,4.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2011,140,51.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2011,140,15.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2011,140,1.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2011,140,3.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,9.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2011,140,5.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2011,140,4.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2011,140,11.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,54.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,2.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,1.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,1.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2011,140,9.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,0.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,3.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,1.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,1.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2011,140,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,2.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,1.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,3.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,4.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,2.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,30.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2011,140,17.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,0.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,0.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,35.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,1.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2011,140,7.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,4.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,1.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,13.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,1.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,38.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2011,140,1.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2011,140,16.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,1.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,2.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,9.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,8.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,2.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,1.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,1.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,2.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,5.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,1.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2011,140,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2011,140,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2011,140,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2011,140,1.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2011,140,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2011,140,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2011,140,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2011,140,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2011,140,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2011,140,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2011,140,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,2.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,1.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2011,140,1.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2011,140,2.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2011,140,1.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2011,140,9.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2011,140,31.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2011,140,4.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2011,140,5.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2011,140,7.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2011,140,5.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2011,140,0.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2011,140,1.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2011,140,0.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2011,140,5.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2011,140,4.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2011,140,26.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2011,140,4.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2011,140,15.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,10.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2011,140,53.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,2.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2011,140,9.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,4.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,7.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2011,140,1.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,2.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2011,140,3.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2011,140,0.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,0.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,22.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2011,140,1.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,1.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,4.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,2.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2011,140,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2011,140,0.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2011,140,0.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2011,140,1.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2011,140,7.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2011,140,0.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2011,140,6.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2011,140,16.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2011,140,0.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2011,140,1.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2011,140,245.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2011,140,3.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2011,140,50.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2011,140,20.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2011,140,2.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2011,140,10.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2011,140,5.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2011,140,3.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2011,140,3.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2011,140,29.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2011,141,15.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2011,141,7.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2011,141,4.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2011,141,29.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2011,141,5.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2011,141,7.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2011,141,4.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2011,141,6.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2011,141,0.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2011,141,0.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2011,141,0.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2011,141,36.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2011,141,2.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2011,141,66.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2011,141,0.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2011,141,3.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2011,141,0.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2011,141,1.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2011,141,0.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2011,141,262.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2011,141,1.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2011,141,2.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2011,141,0.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2011,141,0.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2011,141,0.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2011,141,0.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2011,141,60.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2011,141,2.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2011,141,4.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2011,141,3.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2011,141,0.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2011,141,12.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2011,141,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2011,141,0.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2011,141,2.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2011,141,6.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2011,141,175.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2011,141,9.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2011,141,12.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2011,141,27.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2011,141,18.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2011,141,21.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2011,141,0.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2011,141,4.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2011,141,44.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2011,141,15.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2011,141,46.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2011,141,8.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2011,141,14.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2011,141,16.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2011,141,2.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2011,141,1.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2011,141,46.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2011,141,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2011,141,27.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2011,141,0.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2011,141,13.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2011,141,33.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2011,141,7.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2011,141,44.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2011,141,0.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2011,141,284.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2011,141,0.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2011,141,1.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2011,141,5.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2011,141,314.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2011,141,1.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2011,141,1.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2011,141,9.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2011,141,2.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2011,141,0.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2011,141,1.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2011,141,7.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2011,141,7.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2011,141,2.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2011,141,15.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2011,141,1.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2011,141,0.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2011,141,1.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2011,141,0.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2011,141,10.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2011,141,6.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2011,141,0.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2011,141,0.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2011,141,0.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2011,141,1.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2011,141,1.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2011,141,161.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2011,141,3.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2011,141,0.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2011,141,1.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2011,141,0.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2011,141,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2011,141,1.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2011,141,1.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2011,141,0.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2011,141,1.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2011,141,0.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2011,141,0.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2011,141,4.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2011,141,2.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2011,141,19.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2011,141,0.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2011,141,2.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2011,141,3.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2011,141,8.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2011,141,456.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2011,141,2.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2011,141,20.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2011,141,8.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2011,141,8.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2011,141,3.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2011,141,5.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2011,141,8.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2011,141,17.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2011,141,0.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2011,141,7.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2011,141,0.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2011,141,2.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2011,141,9.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2011,141,1.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,33.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,0.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,0.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,4.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2011,141,0.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2011,141,18.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2011,141,1.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,0.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,0.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,3.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,2.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,2.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,0.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2011,141,0.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2011,141,5.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2011,141,0.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2011,141,9.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2011,141,232.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2011,141,0.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2011,141,15.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2011,141,0.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2011,141,1.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2011,141,1.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2011,141,13.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2011,141,0.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2011,141,4.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2011,141,0.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2011,141,3.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2011,141,2.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2011,141,1.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2011,141,2.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2011,141,1.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2011,141,6.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2011,141,1.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2011,141,11.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2011,141,5.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2011,141,1.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2011,141,0.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2011,141,1.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2011,141,4.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2011,141,71.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2011,141,2.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2011,141,9.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2011,141,4.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2011,141,3.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2011,141,1.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2011,141,2.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2011,141,2.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2011,141,2.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2011,141,3.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2011,141,8.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2011,141,10.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2011,141,11.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2011,141,2.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2011,141,27.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2011,141,13.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2011,141,10.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2011,141,8.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2011,141,482.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2011,141,13.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2011,141,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2011,141,5.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2011,141,0.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2011,141,2.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2011,141,3.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2011,141,78.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2011,141,67.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2011,141,1.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2011,141,3.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2011,141,16.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2011,141,7.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2011,141,180.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2011,141,1.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2011,141,17.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2011,141,1.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2011,141,1.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,0.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,9.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2011,141,3.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2011,141,2.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,9.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,1.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,0.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,1.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2011,141,92.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2011,141,1.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2011,141,11.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2011,141,6.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2011,141,0.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2011,141,7.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2011,141,29.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2011,141,8.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2011,141,1.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2011,141,18.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2011,141,1.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2011,141,9.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2011,141,15.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2011,141,13.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2011,141,114.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2011,141,8.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2011,141,17.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2011,141,14.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2011,141,23.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2011,141,7.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,5.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,4.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,8.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,129.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2011,141,1.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2011,141,4.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2011,141,53.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2011,141,0.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2011,141,19.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2011,141,14.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2011,141,65.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2011,141,2.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,3.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,85.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2011,141,24.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,4.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,5.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,5.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2011,141,2.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,1.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,0.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2011,141,12.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,0.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,0.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2011,141,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,4.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2011,141,0.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2011,141,1.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,3.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,3.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,1.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,2.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,10.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2011,141,0.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,3.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,11.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,1.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2011,141,2.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,3.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2011,141,8.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,1.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,11.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,0.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,27.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,1.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,2.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,2.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,29.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,3.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,76.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,0.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,11.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,1.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,4.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2011,141,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2011,141,0.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,1.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,1.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,1.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,1.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,5.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,2.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2011,141,6.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2011,141,1.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2011,141,3.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,3.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,33.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,21.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,11.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,5.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,12.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2011,141,1.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2011,141,119.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,15.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2011,141,7.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,11.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2011,141,0.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,7.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,4.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,40.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,12.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2011,141,0.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2011,141,2.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2011,141,0.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2011,141,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,20.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,30.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2011,141,65.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2011,141,1.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2011,141,38.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2011,141,6.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,4.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2011,141,3.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2011,141,1109.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,15.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,8.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2011,141,4.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,45.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,15.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,0.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,0.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,1.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2011,141,7.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2011,141,31.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2011,141,2.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2011,141,4.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2011,141,4.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2011,141,89.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2011,141,8.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,1.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,10.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,4.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,0.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2011,141,11.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2011,141,1.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2011,141,0.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2011,141,0.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2011,141,61.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2011,141,10.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2011,141,2.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2011,141,3.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,10.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2011,141,0.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2011,141,4.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2011,141,10.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,93.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,3.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,1.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,0.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2011,141,15.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,0.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,2.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,3.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,0.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2011,141,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,0.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,9.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,8.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,2.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,20.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2011,141,35.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,21.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,2.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2011,141,7.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,5.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,0.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,23.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,1.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,42.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2011,141,1.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2011,141,29.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,1.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,1.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,1.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,1.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,9.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,3.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,15.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,2.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,1.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,2.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,3.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,1.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2011,141,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2011,141,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,1.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,1.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2011,141,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2011,141,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2011,141,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2011,141,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2011,141,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2011,141,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2011,141,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2011,141,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,1.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2011,141,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,1.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,1.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2011,141,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2011,141,2.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2011,141,0.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2011,141,2.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2011,141,40.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2011,141,4.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2011,141,2.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2011,141,10.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2011,141,0.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2011,141,1.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2011,141,6.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2011,141,4.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2011,141,8.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2011,141,2.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2011,141,17.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2011,141,8.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2011,141,10.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,19.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2011,141,20.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,2.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2011,141,8.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,0.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,6.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2011,141,1.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,0.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2011,141,2.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2011,141,1.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,0.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,22.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2011,141,1.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,0.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,11.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,1.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2011,141,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2011,141,0.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2011,141,0.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2011,141,0.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2011,141,8.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2011,141,0.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2011,141,11.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2011,141,8.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2011,141,0.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2011,141,1.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2011,141,306.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2011,141,1.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2011,141,52.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2011,141,10.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2011,141,6.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2011,141,15.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2011,141,3.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2011,141,2.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2011,141,2.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2011,141,22.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2011,142,13.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2011,142,4.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2011,142,6.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2011,142,10.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2011,142,12.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2011,142,9.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2011,142,16.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2011,142,2.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2011,142,0.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2011,142,2.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2011,142,2.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2011,142,52.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2011,142,4.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2011,142,52.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2011,142,0.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2011,142,0.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2011,142,0.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2011,142,9.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2011,142,7.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2011,142,247.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2011,142,1.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2011,142,2.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2011,142,1.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2011,142,0.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2011,142,1.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2011,142,6.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2011,142,58.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2011,142,4.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2011,142,5.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2011,142,9.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2011,142,0.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2011,142,3.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2011,142,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2011,142,1.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2011,142,1.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2011,142,6.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2011,142,211.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2011,142,18.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2011,142,12.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2011,142,33.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2011,142,5.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2011,142,17.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2011,142,8.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2011,142,3.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2011,142,34.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2011,142,7.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2011,142,19.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2011,142,8.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2011,142,23.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2011,142,8.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2011,142,4.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2011,142,0.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2011,142,46.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2011,142,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2011,142,18.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2011,142,0.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2011,142,20.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2011,142,28.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2011,142,13.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2011,142,59.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2011,142,3.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2011,142,193.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2011,142,1.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2011,142,2.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2011,142,2.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2011,142,127.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2011,142,4.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2011,142,3.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2011,142,1.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2011,142,0.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2011,142,4.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2011,142,0.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2011,142,5.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2011,142,5.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2011,142,0.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2011,142,5.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2011,142,4.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2011,142,1.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2011,142,2.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2011,142,3.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2011,142,4.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2011,142,13.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2011,142,0.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2011,142,6.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2011,142,0.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2011,142,0.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2011,142,1.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2011,142,2.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2011,142,2.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2011,142,0.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2011,142,0.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2011,142,0.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2011,142,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2011,142,0.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2011,142,0.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2011,142,0.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2011,142,0.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2011,142,0.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2011,142,0.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2011,142,1.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2011,142,2.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2011,142,2.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2011,142,1.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2011,142,5.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2011,142,7.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2011,142,1.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2011,142,1.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2011,142,2.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2011,142,2.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2011,142,2.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2011,142,7.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2011,142,4.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2011,142,411.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2011,142,2.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2011,142,13.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2011,142,5.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2011,142,12.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2011,142,0.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2011,142,4.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2011,142,5.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2011,142,1.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2011,142,1.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2011,142,19.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2011,142,1.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2011,142,4.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2011,142,12.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2011,142,0.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,38.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,7.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,0.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,3.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2011,142,1.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2011,142,53.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2011,142,1.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,0.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,0.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,0.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,1.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,6.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,0.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2011,142,3.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2011,142,5.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2011,142,0.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2011,142,3.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2011,142,168.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2011,142,0.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2011,142,7.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2011,142,3.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2011,142,1.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2011,142,0.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2011,142,14.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2011,142,0.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2011,142,1.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2011,142,1.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2011,142,3.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2011,142,1.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2011,142,2.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2011,142,0.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2011,142,2.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2011,142,10.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2011,142,1.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2011,142,4.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2011,142,4.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2011,142,0.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2011,142,0.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2011,142,0.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2011,142,0.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2011,142,41.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2011,142,1.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2011,142,17.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2011,142,1.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2011,142,4.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2011,142,6.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2011,142,2.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2011,142,0.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2011,142,1.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2011,142,3.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2011,142,4.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2011,142,3.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2011,142,8.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2011,142,0.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2011,142,35.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2011,142,25.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2011,142,7.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2011,142,1.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2011,142,517.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2011,142,8.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2011,142,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2011,142,4.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2011,142,1.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2011,142,3.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2011,142,1.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2011,142,71.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2011,142,64.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2011,142,0.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2011,142,3.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2011,142,27.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2011,142,6.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2011,142,64.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2011,142,1.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2011,142,8.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2011,142,1.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2011,142,1.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,1.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,5.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2011,142,4.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2011,142,0.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,11.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,0.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,2.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,4.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2011,142,84.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2011,142,3.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2011,142,14.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2011,142,23.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2011,142,2.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2011,142,18.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2011,142,36.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2011,142,3.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2011,142,0.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2011,142,9.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2011,142,12.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2011,142,19.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2011,142,38.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2011,142,19.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2011,142,49.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2011,142,6.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2011,142,5.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2011,142,12.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2011,142,24.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2011,142,0.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,4.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,4.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,3.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,49.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2011,142,1.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2011,142,6.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2011,142,69.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2011,142,1.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2011,142,16.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2011,142,29.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2011,142,64.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2011,142,1.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,0.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,66.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2011,142,8.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,1.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,7.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,7.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2011,142,2.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,1.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,2.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2011,142,9.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,0.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,0.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2011,142,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,0.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2011,142,0.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2011,142,0.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,3.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,7.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,0.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,1.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,20.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2011,142,0.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,6.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,13.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,6.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2011,142,4.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,2.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2011,142,13.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,5.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,9.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,0.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,50.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,0.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,2.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,0.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,27.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,0.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,72.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,5.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,38.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,0.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,2.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2011,142,5.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,2.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2011,142,0.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,2.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,2.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,1.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,6.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,3.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,1.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,3.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2011,142,1.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2011,142,3.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2011,142,5.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,4.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,15.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,22.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,4.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,15.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,14.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2011,142,2.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2011,142,2.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2011,142,166.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,12.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2011,142,5.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,8.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2011,142,4.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,33.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,4.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,37.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,20.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2011,142,2.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2011,142,3.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2011,142,0.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2011,142,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,15.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,43.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2011,142,152.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2011,142,4.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2011,142,50.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2011,142,8.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2011,142,6.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,12.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2011,142,2.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2011,142,1454.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,23.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,9.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2011,142,3.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,59.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,22.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,0.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,5.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,1.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2011,142,3.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2011,142,10.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2011,142,4.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2011,142,7.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2011,142,5.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2011,142,87.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2011,142,3.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,6.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,3.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,12.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,2.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2011,142,8.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2011,142,2.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2011,142,0.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2011,142,0.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2011,142,41.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2011,142,6.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2011,142,3.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2011,142,4.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,35.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2011,142,3.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2011,142,7.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2011,142,19.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,168.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,6.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,2.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,2.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2011,142,10.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,1.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,3.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,9.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,3.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2011,142,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,1.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,12.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,2.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,1.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,24.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2011,142,67.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,1.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,34.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,9.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2011,142,27.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,1.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,27.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,2.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,29.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2011,142,0.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2011,142,38.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,2.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,1.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,7.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,11.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,4.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,24.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,1.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,1.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,3.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,1.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,11.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,3.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2011,142,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2011,142,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,1.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,1.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,1.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,2.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2011,142,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2011,142,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2011,142,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2011,142,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2011,142,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2011,142,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2011,142,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2011,142,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,1.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2011,142,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2011,142,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2011,142,0.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2011,142,4.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2011,142,2.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2011,142,53.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2011,142,1.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2011,142,1.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2011,142,15.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2011,142,3.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2011,142,0.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2011,142,16.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2011,142,3.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2011,142,26.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2011,142,6.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2011,142,21.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2011,142,13.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2011,142,25.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,24.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2011,142,60.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,8.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2011,142,4.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,4.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,25.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2011,142,8.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,0.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2011,142,6.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2011,142,1.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,0.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,31.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2011,142,2.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,7.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,6.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,3.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2011,142,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2011,142,0.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2011,142,3.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2011,142,3.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2011,142,2.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2011,142,0.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2011,142,25.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2011,142,12.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2011,142,0.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2011,142,3.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2011,142,469.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2011,142,1.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2011,142,14.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2011,142,17.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2011,142,2.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2011,142,12.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2011,142,2.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2011,142,0.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2011,142,2.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2011,142,20.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2011,143,2.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2011,143,5.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2011,143,2.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2011,143,1.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2011,143,6.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2011,143,2.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2011,143,3.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2011,143,9.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2011,143,0.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2011,143,0.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2011,143,0.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2011,143,49.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2011,143,3.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2011,143,57.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2011,143,1.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2011,143,1.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2011,143,0.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2011,143,16.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2011,143,0.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2011,143,253.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2011,143,0.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2011,143,1.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2011,143,1.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2011,143,1.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2011,143,1.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2011,143,4.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2011,143,46.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2011,143,3.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2011,143,2.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2011,143,0.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2011,143,1.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2011,143,10.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2011,143,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2011,143,0.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2011,143,0.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2011,143,8.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2011,143,208.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2011,143,10.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2011,143,3.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2011,143,8.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2011,143,5.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2011,143,10.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2011,143,6.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2011,143,1.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2011,143,17.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2011,143,20.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2011,143,20.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2011,143,23.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2011,143,63.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2011,143,9.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2011,143,13.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2011,143,2.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2011,143,2.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2011,143,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2011,143,8.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2011,143,0.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2011,143,28.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2011,143,39.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2011,143,20.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2011,143,50.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2011,143,4.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2011,143,167.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2011,143,3.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2011,143,1.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2011,143,0.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2011,143,56.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2011,143,0.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2011,143,13.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2011,143,3.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2011,143,0.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2011,143,2.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2011,143,2.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2011,143,2.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2011,143,9.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2011,143,0.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2011,143,6.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2011,143,1.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2011,143,0.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2011,143,0.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2011,143,3.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2011,143,4.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2011,143,14.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2011,143,1.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2011,143,1.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2011,143,0.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2011,143,1.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2011,143,0.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2011,143,1.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2011,143,3.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2011,143,0.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2011,143,0.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2011,143,0.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2011,143,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2011,143,0.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2011,143,0.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2011,143,0.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2011,143,0.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2011,143,0.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2011,143,0.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2011,143,0.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2011,143,1.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2011,143,2.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2011,143,2.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2011,143,0.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2011,143,6.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2011,143,379.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2011,143,3.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2011,143,48.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2011,143,0.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2011,143,7.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2011,143,0.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2011,143,2.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2011,143,1.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2011,143,0.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2011,143,1.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2011,143,1.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2011,143,0.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2011,143,28.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2011,143,3.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,59.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,3.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2011,143,0.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2011,143,0.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2011,143,0.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,1.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,0.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2011,143,2.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2011,143,4.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2011,143,0.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2011,143,0.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2011,143,18.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2011,143,1.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2011,143,12.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2011,143,1.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2011,143,0.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2011,143,2.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2011,143,1.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2011,143,0.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2011,143,1.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2011,143,5.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2011,143,0.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2011,143,0.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2011,143,3.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2011,143,0.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2011,143,0.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2011,143,0.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2011,143,15.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2011,143,0.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2011,143,10.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2011,143,0.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2011,143,0.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2011,143,0.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2011,143,1.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2011,143,1.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2011,143,0.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2011,143,2.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2011,143,8.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2011,143,0.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2011,143,2.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2011,143,1.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2011,143,4.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2011,143,12.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2011,143,2.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2011,143,2.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2011,143,436.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2011,143,1.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2011,143,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2011,143,0.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2011,143,0.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2011,143,2.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2011,143,0.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2011,143,26.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2011,143,52.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2011,143,0.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2011,143,1.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2011,143,7.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2011,143,0.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2011,143,54.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2011,143,4.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2011,143,3.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2011,143,1.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2011,143,0.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,1.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,1.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2011,143,0.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2011,143,0.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,14.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,2.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,4.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,6.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2011,143,42.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2011,143,1.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2011,143,8.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2011,143,3.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2011,143,2.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2011,143,8.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2011,143,16.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2011,143,0.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2011,143,2.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2011,143,1.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2011,143,5.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2011,143,5.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2011,143,6.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2011,143,1.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2011,143,29.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2011,143,0.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2011,143,0.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2011,143,1.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2011,143,3.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2011,143,2.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,5.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,0.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,2.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,59.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2011,143,4.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2011,143,3.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2011,143,9.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2011,143,0.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2011,143,3.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2011,143,1.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2011,143,34.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2011,143,1.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,0.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,32.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2011,143,1.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,2.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,4.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,13.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2011,143,4.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,0.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,4.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2011,143,7.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,0.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,0.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2011,143,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,7.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2011,143,0.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2011,143,0.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,3.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,1.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,1.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,0.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,22.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2011,143,0.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,4.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,2.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,8.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2011,143,7.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,0.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2011,143,4.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,0.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,7.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,0.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,80.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,1.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,1.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,0.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,6.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,1.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,176.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,4.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,45.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,1.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,0.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2011,143,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2011,143,0.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,7.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,2.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,0.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2011,143,0.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2011,143,5.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2011,143,0.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,0.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,2.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,8.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,5.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,7.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,14.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2011,143,1.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2011,143,173.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,3.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2011,143,0.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,16.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2011,143,0.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,7.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,10.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,12.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,5.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2011,143,0.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2011,143,3.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2011,143,1.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2011,143,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,9.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,118.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2011,143,11.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2011,143,4.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2011,143,9.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2011,143,1.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2011,143,2.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,9.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2011,143,3.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2011,143,1610.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,14.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,2.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2011,143,2.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,29.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,6.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,1.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,0.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,0.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2011,143,1.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2011,143,2.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2011,143,1.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2011,143,0.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2011,143,1.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2011,143,27.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2011,143,0.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,1.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,4.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,5.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,1.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2011,143,7.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2011,143,1.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2011,143,0.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2011,143,0.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2011,143,7.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2011,143,4.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2011,143,2.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2011,143,4.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,0.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2011,143,1.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2011,143,4.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2011,143,15.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,40.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,1.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,3.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,3.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2011,143,9.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,3.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,0.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,2.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,1.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2011,143,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,1.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,1.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,5.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,6.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2011,143,49.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,1.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,7.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,1.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2011,143,2.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,1.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,2.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,21.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2011,143,0.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2011,143,6.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,2.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,2.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,6.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,10.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,10.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,16.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,3.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,5.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,7.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,8.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,1.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2011,143,0.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2011,143,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,1.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,2.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2011,143,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2011,143,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2011,143,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2011,143,1.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2011,143,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2011,143,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2011,143,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2011,143,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2011,143,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2011,143,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2011,143,2.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2011,143,0.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2011,143,6.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2011,143,46.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2011,143,1.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2011,143,1.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2011,143,11.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2011,143,1.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2011,143,0.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2011,143,5.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2011,143,0.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2011,143,98.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2011,143,5.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2011,143,5.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2011,143,8.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2011,143,76.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,27.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2011,143,19.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,3.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2011,143,12.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,2.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,28.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2011,143,1.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,0.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2011,143,4.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2011,143,0.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,0.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,20.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2011,143,1.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,5.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,6.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,2.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2011,143,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2011,143,2.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2011,143,1.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2011,143,1.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2011,143,0.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2011,143,1.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2011,143,5.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2011,143,13.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2011,143,0.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2011,143,1.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2011,143,198.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2011,143,0.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2011,143,11.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2011,143,11.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2011,143,1.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2011,143,6.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2011,143,3.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2011,143,0.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2011,143,0.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2011,143,13.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2011,144,5.0,550094.0,8.38503147578064,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2011,144,11.0,72298.0,1.77390978891491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2011,144,10.0,173619.0,7.12751247947455,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2011,144,2.0,294803.0,11.7590240550644,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2011,144,8.0,70011.0,4.37991896132445,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2011,144,12.0,228440.0,9.3044460107283,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2011,144,6.0,134738.0,5.04370649008392,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2011,144,33.0,52452.0,3.57958990376717,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2011,144,3.0,133691.0,4.18562788813331,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2011,144,0.0,75413.0,1.40962813698491,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2011,144,0.0,51693.0,1.27474827228019,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2011,144,712.0,425796.0,19.1276482712141,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2011,144,1.0,59793.0,3.76486314060918,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2011,144,23.0,98184.0,0.295472628996108,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2011,144,2.0,24951.0,0.343551378722496,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2011,144,1.0,227851.0,1.06840593891432,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2011,144,0.0,129802.0,1.15248580687391,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2011,144,56.0,87477.0,2.1925536294275,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2011,144,13.0,154456.0,1.37788453875974,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2011,144,601.0,2073759.0,50.2162832713448,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2011,144,1.0,54270.0,1.74116918582438,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2011,144,2.0,154243.0,6.06029473923885,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2011,144,1.0,245643.0,2.29568089828363,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2011,144,1.0,49155.0,0.773525930677222,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2011,144,5.0,70226.0,0.375701699378306,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2011,144,6.0,168370.0,0.761770977675256,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2011,144,25.0,327413.0,4.82194125522578,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2011,144,0.0,43109.0,1.40263986041521,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2011,144,0.0,42776.0,0.576879219703599,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2011,144,1.0,46867.0,0.910857814478017,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2011,144,1.0,186928.0,1.18641291304918,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2011,144,35.0,488699.0,5.28521629108771,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2011,144,0.0,68344.0,0.756299481564571,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2011,144,1.0,132517.0,2.93751108979974,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2011,144,0.0,207067.0,6.88241120853048,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2011,144,0.0,155707.0,5.38403143440586,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2011,144,95.0,2164037.0,691.133368162139,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2011,144,5.0,300299.0,79.7709235366626,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2011,144,6.0,249559.0,42.0405246244709,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2011,144,2.0,386884.0,43.9450012728985,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2011,144,24.0,443710.0,26.6149591848856,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2011,144,11.0,293445.0,12.3800401122114,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2011,144,2.0,440075.0,15.5459842753895,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2011,144,73.0,211305.0,1.114312926295,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2011,144,25.0,277530.0,1.22716482102596,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2011,144,36.0,334946.0,10.1966888816073,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2011,144,42.0,297725.0,6.15019284803779,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2011,144,74.0,172209.0,1.42045259009396,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2011,144,4.0,263595.0,11.7269240484547,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2011,144,34.0,290079.0,14.4417561745654,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2011,144,20.0,184420.0,8.72881674192147,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2011,144,0.0,139513.0,4.47159227976463,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2011,144,19.0,30270.0,0.820619023734771,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2011,144,0.0,25032.0,1.20564942899653,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2011,144,46.0,558042.0,14.4563595724599,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2011,144,2.0,70965.0,1.52265318912153,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2011,144,14.0,198079.0,12.5577345266432,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2011,144,20.0,282510.0,10.682914834602,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2011,144,17.0,142782.0,4.10618757544914,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2011,144,9.0,117049.0,2.2744278382506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2011,144,11.0,138402.0,5.04767081786244,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2011,144,68.0,330824.0,15.6198674678759,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2011,144,9.0,72670.0,1.35755435173511,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2011,144,2.0,118576.0,2.51248408634188,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2011,144,40.0,184586.0,19.5626509714337,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2011,144,49.0,1327649.0,929.394080162234,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2011,144,0.0,163620.0,25.4310229131608,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2011,144,3.0,179464.0,16.6430029395283,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2011,144,30.0,570498.0,33.1282859206456,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2011,144,13.0,214763.0,30.4565319198491,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2011,144,9.0,224656.0,10.413373446862,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2011,144,9.0,629369.0,17.4861160448392,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2011,144,17.0,571234.0,19.5471503438203,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2011,144,15.0,413078.0,37.604446078634,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2011,144,11.0,312785.0,8.49022320563063,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2011,144,1.0,192012.0,29.3632214477457,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2011,144,0.0,140915.0,23.3580850317979,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2011,144,5.0,222736.0,20.6414821472313,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2011,144,1.0,266055.0,26.7762835839336,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2011,144,1.0,88189.0,24.4970465392986,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2011,144,1.0,420297.0,27.3955620524236,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2011,144,9.0,210912.0,8.43813067985671,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2011,144,1.0,111489.0,7.83912914121283,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2011,144,2.0,132359.0,3.62690718644395,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2011,144,0.0,69095.0,4.07023854130141,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2011,144,56.0,331375.0,26.5807583783705,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2011,144,3.0,306604.0,31.510043697917,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2011,144,6.0,1008538.0,109.885497918571,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2011,144,3.0,221112.0,9.07878793472013,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2011,144,1.0,131234.0,15.7906324172373,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2011,144,0.0,104089.0,7.74902330970793,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2011,144,1.0,44150.0,1.73341381066063,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2011,144,0.0,40855.0,3.6759920127196,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2011,144,1.0,121722.0,6.60124319207142,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2011,144,0.0,88911.0,3.21916065783198,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2011,144,3.0,136195.0,4.94944696317001,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2011,144,0.0,83068.0,4.65709974903512,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2011,144,0.0,200731.0,19.4899494839043,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2011,144,0.0,58239.0,13.504390425033,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2011,144,0.0,263505.0,8.35620066612919,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2011,144,18.0,363562.0,42.0641248441456,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2011,144,1.0,298022.0,58.8553646673582,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2011,144,5.0,56326.0,27.1890176291619,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2011,144,0.0,24739.0,91.637126413148,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2011,144,5.0,385002.0,46.715001560179,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2011,144,3.0,137548.0,32.5606593268922,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2011,144,7.0,72236.0,12.0356395524011,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2011,144,69.0,209434.0,56.4267983189183,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2011,144,0.0,106870.0,74.5575269978688,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2011,144,4.0,102485.0,97.6426298843285,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2011,144,16.0,85447.0,28.2826295148114,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2011,144,1.0,125692.0,23.6651708343965,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2011,144,7.0,188119.0,69.9245895185168,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2011,144,13.0,62893.0,48.4969085706759,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2011,144,0.0,135650.0,53.3550876287232,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2011,144,491.0,3389387.0,1004.66717126307,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2011,144,6.0,120032.0,302.30701228287,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2011,144,35.0,241281.0,18.8240194046859,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2011,144,23.0,268586.0,22.4612351418046,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2011,144,12.0,145954.0,12.4550302356102,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2011,144,1.0,218255.0,22.3117259199813,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2011,144,0.0,110745.0,51.4319004534187,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2011,144,2.0,315534.0,31.7778362282141,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2011,144,0.0,62741.0,14.6223318034507,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2011,144,1.0,42600.0,20.7592933858943,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2011,144,48.0,223885.0,47.0894959019344,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2011,144,0.0,97081.0,27.3974531866454,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2011,144,4.0,56732.0,35.0779096093927,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2011,144,1.0,95823.0,21.5637842274526,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2011,144,1.0,56901.0,44.169872199214,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2011,144,4.0,90690.0,34.0709788356214,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2011,144,22.0,539267.0,118.371133789302,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2011,144,2.0,100636.0,51.8828177355232,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,19.0,337110.0,80.6980526967397,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,2.0,72615.0,17.746194719165,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,6.0,39196.0,13.7044845998665,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,0.0,141750.0,29.6143090982373,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2011,144,13.0,63082.0,63.616926026203,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2011,144,15.0,114843.0,43.2032817066598,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2011,144,0.0,65061.0,39.8776722254267,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,2.0,53133.0,27.8866927689962,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,0.0,51337.0,12.5886004942041,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,1.0,61594.0,20.458115693971,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,2.0,98308.0,32.0646961532646,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,5.0,119162.0,31.5906837874851,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,0.0,63385.0,33.1575601193552,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2011,144,6.0,134764.0,34.3022561745327,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2011,144,6.0,231654.0,66.1448919773262,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2011,144,0.0,84723.0,33.23194396259,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2011,144,3.0,292511.0,140.982097823131,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2011,144,15.0,1044159.0,2385.74190988914,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2011,144,0.0,130270.0,93.8753416912469,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2011,144,1.0,116738.0,38.2935542943712,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2011,144,21.0,168822.0,49.7751827639965,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2011,144,3.0,182462.0,37.9759547168667,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2011,144,0.0,127412.0,49.9917691453569,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2011,144,10.0,70605.0,21.4384967253181,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2011,144,5.0,84110.0,27.6064375877702,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2011,144,1.0,116459.0,44.8312278046875,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2011,144,0.0,39316.0,22.4631037615917,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2011,144,1.0,74429.0,28.5126492184307,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2011,144,7.0,122169.0,17.5043883520939,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2011,144,8.0,63994.0,15.1960522595883,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2011,144,5.0,120581.0,30.8595897062204,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2011,144,1.0,93508.0,70.7272425566484,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2011,144,2.0,54012.0,201.655010374718,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2011,144,2.0,116249.0,98.5293252313038,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2011,144,1.0,165312.0,128.147304458198,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2011,144,3.0,505690.0,240.036608675468,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2011,144,0.0,108709.0,64.4207787389368,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2011,144,2.0,53931.0,45.5953812452273,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,143064.0,71.9804612430525,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,133187.0,118.953689238081,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2011,144,24.0,1047227.0,838.99862946397,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2011,144,0.0,83329.0,96.239013037911,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2011,144,6.0,309972.0,26.8603042459382,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2011,144,28.0,162818.0,18.584629745323,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2011,144,7.0,315928.0,35.7936044295575,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2011,144,3.0,214662.0,24.4012096133749,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2011,144,7.0,451275.0,30.1462926496411,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2011,144,0.0,135568.0,14.2462963188943,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2011,144,0.0,181394.0,33.4009479445131,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2011,144,1.0,860519.0,109.443870190762,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2011,144,2.0,278434.0,155.103790302793,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2011,144,3.0,254282.0,145.285822234777,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2011,144,1.0,444369.0,86.794243042343,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2011,144,0.0,216861.0,84.7098822044434,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2011,144,27.0,538287.0,183.219352853233,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2011,144,4.0,216930.0,231.121617560354,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2011,144,4.0,563285.0,124.46454106755,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2011,144,1.0,168324.0,312.550623538293,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2011,144,134.0,3279887.0,2621.67196268379,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2011,144,5.0,269436.0,278.984764477983,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2011,144,0.0,2675.0,205.860469313016,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2011,144,0.0,89532.0,34.0905381518714,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2011,144,0.0,80373.0,58.8582078118849,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2011,144,0.0,171746.0,56.0418933113281,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2011,144,0.0,92668.0,51.3220639180089,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2011,144,7.0,175031.0,73.1850324053211,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2011,144,39.0,413975.0,170.6640420027,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2011,144,1.0,37577.0,40.1575671126882,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,146833.0,79.6850137875804,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,302927.0,76.8089983227786,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2011,144,5.0,67441.0,67.003037594284,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2011,144,53.0,1153236.0,643.959616651004,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,286942.0,96.5864147544152,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,125103.0,73.099301833295,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2011,144,2.0,157807.0,28.9781657875352,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2011,144,0.0,69062.0,36.9819157435361,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,63335.0,51.041839223814,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,4.0,161533.0,142.7785657461,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2011,144,1.0,109399.0,54.308837482802,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2011,144,1.0,115147.0,76.3702402556319,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,11.0,91416.0,86.667259568413,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,0.0,47344.0,61.836047073654,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,0.0,55149.0,38.5452309917239,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,0.0,90666.0,122.391998601655,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2011,144,14.0,848093.0,972.128438575297,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2011,144,1.0,156144.0,84.9331335677394,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2011,144,6.0,124724.0,61.6205279396675,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2011,144,22.0,292220.0,5.52874843316052,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2011,144,16.0,115133.0,5.08943408853986,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2011,144,12.0,178319.0,4.24681610676215,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2011,144,6.0,457983.0,8.37039769535736,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2011,144,2.0,168495.0,13.5234439775917,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2011,144,1.0,172546.0,5.29909981688195,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2011,144,2.0,172123.0,11.9220671795058,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2011,144,1.0,288045.0,17.3265574823448,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2011,144,57.0,375044.0,20.5663413877573,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2011,144,8.0,327545.0,17.4075154060026,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2011,144,18.0,249459.0,15.1495691020746,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2011,144,18.0,996528.0,78.1891133428384,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2011,144,5.0,98933.0,12.3416516090012,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2011,144,2.0,298672.0,15.9797829678538,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2011,144,7.0,310697.0,35.9102054772607,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2011,144,6.0,417109.0,39.1709966360628,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2011,144,4.0,310500.0,54.0258123261598,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,0.0,116433.0,26.6045817757614,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,0.0,213720.0,77.7583461292281,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,2.0,542614.0,95.1776672822501,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,58.0,3492119.0,1208.15482374501,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2011,144,11.0,188049.0,11.6941831575251,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2011,144,1.0,254300.0,12.2578679443028,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2011,144,27.0,508429.0,29.5566565001982,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2011,144,5.0,98365.0,19.1226918632457,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2011,144,4.0,372781.0,15.9026837835796,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2011,144,1.0,234473.0,15.2843462111308,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2011,144,3.0,628610.0,33.4101368400922,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2011,144,0.0,198753.0,17.6275035604494,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,0.0,265169.0,46.0904229084179,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,16.0,1019213.0,47.9497739226362,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2011,144,5.0,735155.0,26.52616533317,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,3.0,149662.0,5.46087111833547,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,5.0,219216.0,6.26164929738457,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,11.0,275405.0,8.29237884867841,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2011,144,0.0,248207.0,16.5055744202341,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,2.0,211622.0,11.8656056540008,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,4.0,165683.0,7.19695501406793,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2011,144,2.0,606698.0,27.1574709630089,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,0.0,42826.0,4.72619994084895,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,2.0,69048.0,8.72416043427747,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2011,144,0.0,82779.0,11.2042970869944,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,1.0,198297.0,16.5045699222788,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2011,144,0.0,156772.0,15.2653534149715,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2011,144,0.0,82962.0,16.4284291886991,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,0.0,180205.0,11.6585151553955,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,22.0,267100.0,22.989881781796,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,118686.0,13.9924089652077,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,3.0,144141.0,16.5089184174137,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,11.0,829321.0,44.1417244952761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2011,144,1.0,198778.0,16.6195963746801,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,2.0,254843.0,23.7635845864092,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,4.0,181462.0,10.7464822167892,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,39.0,350276.0,37.5371956067779,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2011,144,3.0,206774.0,14.6966889946648,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,11.0,97472.0,9.21043573030006,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2011,144,16.0,151243.0,11.0351544560145,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,2.0,166445.0,22.226895276642,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,1.0,397523.0,46.5318558758035,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,0.0,84328.0,12.3685871104371,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,0.0,124629.0,70.3972558788674,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,93.0,4811930.0,825.613966543813,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,6.0,381269.0,47.3389235220919,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,61672.0,25.5105820749972,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,1.0,175253.0,55.6032681754638,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,249327.0,84.1303800622466,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,0.0,131184.0,22.7746554086355,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,0.0,81296.0,17.7410287004207,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,24.0,417137.0,36.8587359593652,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,15.0,63315.0,34.2287461337206,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,233.0,530842.0,121.997223075138,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,8.0,254424.0,45.9359287871248,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,52.0,149500.0,17.9382236914417,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,2.0,81984.0,10.6552919447306,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,6.0,490510.0,96.6016525499577,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2011,144,0.0,152726.0,33.4455178238593,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,112243.0,41.6732812460793,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,126488.0,31.536161227679,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2011,144,2.0,227661.0,32.0970719170931,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,1.0,266741.0,51.5709946454167,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,1.0,226640.0,45.3295378708129,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,3.0,443694.0,58.5636512777613,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,344490.0,74.3641448750779,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2011,144,1.0,329877.0,67.0781321688457,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,141094.0,43.0699661292736,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,209257.0,54.4135505452826,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,73899.0,14.6650046707071,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,189793.0,63.6509227567393,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,2.0,150824.0,43.6285785281705,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,183587.0,31.8878678229335,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,223244.0,66.5176691029406,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,0.0,186919.0,38.4229490524716,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,2.0,275626.0,56.9757491552834,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,0.0,222077.0,46.0279857747188,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,277107.0,58.5142640857398,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2011,144,3.0,271806.0,75.5414896492274,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2011,144,49.0,733557.0,82.1147562205463,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2011,144,20.0,217305.0,55.643689117441,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,5.0,89455.0,22.1344568551265,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,124805.0,34.0268124440142,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,38.0,200815.0,46.2656245595473,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,28.0,54658.0,18.5361379200587,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,5.0,188062.0,40.6322758522114,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,7.0,312995.0,45.0399616636821,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2011,144,1.0,132640.0,34.5863204881438,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2011,144,1.0,105018.0,31.9665074432538,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2011,144,147.0,1582912.0,1109.28738898481,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,8.0,187127.0,88.9486537975628,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2011,144,2.0,158732.0,45.9183317147802,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,17.0,333842.0,81.1248479396427,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,75994.0,59.9561605697819,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,47.0,196295.0,62.5967282543113,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,24.0,122725.0,54.7553614891348,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,37.0,592796.0,82.7631854859076,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,2.0,268293.0,103.909901555567,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2011,144,1.0,156512.0,94.5190286139472,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2011,144,9.0,63299.0,49.9783381039633,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2011,144,0.0,234219.0,112.53053866425,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2011,144,0.0,29552.0,16.2955314877723,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,2.0,168708.0,102.847726187141,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,15.0,550446.0,280.681425136896,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2011,144,4.0,684411.0,179.455863807366,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2011,144,7.0,176161.0,74.3969165357196,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2011,144,1.0,211517.0,126.494959960437,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2011,144,1.0,164746.0,105.047277857318,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2011,144,4.0,482679.0,270.412033139518,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,4.0,110714.0,78.0826726875954,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2011,144,6.0,227693.0,259.229522221785,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2011,144,2001.0,11671912.0,2563.30932483359,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,10.0,149406.0,37.9312351481902,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,104954.0,37.3025466950751,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2011,144,0.0,140499.0,43.7998294158207,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,9.0,770674.0,73.9440979773868,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,222975.0,98.3720926454855,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,46534.0,20.2700254784484,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,0.0,65835.0,32.7686409012768,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,2.0,79784.0,32.9541751396262,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2011,144,11.0,136154.0,50.1270791987599,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2011,144,8.0,212990.0,38.4123683828334,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2011,144,32.0,96186.0,47.708550370925,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2011,144,1.0,389504.0,113.049275032173,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2011,144,10.0,409923.0,86.3892556789008,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2011,144,81.0,1045507.0,174.063730267143,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2011,144,0.0,107004.0,34.7744391228355,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,182307.0,26.5314271569134,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,2.0,258338.0,48.1115082743293,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,1.0,259801.0,57.7011959127794,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,2.0,161257.0,41.6536225577621,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2011,144,7.0,565405.0,66.6052002392424,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2011,144,0.0,349066.0,86.4359652835015,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2011,144,1.0,180009.0,30.5026208828995,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2011,144,0.0,209492.0,48.0728199465685,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2011,144,4.0,506351.0,80.5995832918352,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2011,144,2.0,311617.0,98.2576112146888,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2011,144,0.0,244550.0,83.0269763774356,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2011,144,8.0,583921.0,251.155271982422,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,4.0,560951.0,148.430726663591,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2011,144,0.0,184907.0,104.850690322742,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2011,144,2.0,410446.0,75.6298715242507,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2011,144,5.0,386235.0,165.298979730387,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,29.0,2663241.0,856.619740051009,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,180266.0,112.653603729836,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,2.0,116777.0,40.7301973566811,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,0.0,159159.0,43.3652871633011,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2011,144,5.0,575620.0,32.9056931714343,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,0.0,109877.0,47.7634218557216,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,1.0,331875.0,67.9151093024854,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,6.0,265178.0,37.1380899263758,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,2.0,291403.0,52.359081612537,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2011,144,0.0,241054.0,31.3345823033516,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,0.0,193731.0,51.9888850968151,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,0.0,260953.0,116.908210510161,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,134543.0,20.4284160993139,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,190106.0,45.8846259869754,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,2.0,1339127.0,315.528726640183,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,641202.0,797.330012676685,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,2.0,504338.0,160.691462937678,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,69196.0,68.0493561140669,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,9.0,1429126.0,355.705840031579,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2011,144,11.0,404304.0,149.542341814528,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,26347.0,12.5735265562746,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,0.0,70390.0,15.9233138088409,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,9.0,286165.0,150.162789452899,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,1.0,243647.0,21.839287893568,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2011,144,2.0,221676.0,108.736054972931,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,2.0,1788447.0,2636.24764457406,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,2.0,459731.0,770.891106675941,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,5.0,1360517.0,1750.17007734293,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,1.0,1000415.0,681.651679004041,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,27.0,13882809.0,5882.97600181726,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2011,144,3.0,1330640.0,646.309895791291,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2011,144,5.0,1482740.0,1088.84503334853,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,1.0,271800.0,26.7190522177326,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,265648.0,25.8951148258411,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,143758.0,35.4987188430756,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,115778.0,23.8351519325916,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,217399.0,30.7238855709361,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,1.0,184728.0,36.1414426603183,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,6.0,82481.0,34.8765933338007,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,1.0,34757.0,26.6923426682651,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,2.0,547350.0,351.743189926795,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,1.0,289743.0,127.90766745131,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,34.0,731145.0,207.945936945173,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,46244.0,20.3142759481884,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,136746.0,22.1837505438082,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,1.0,71004.0,31.4406001856439,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,3.0,175748.0,38.8287312589127,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,144.0,122782.0,44.5110366417702,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,77587.0,25.5278992511254,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,98974.0,31.3317742103234,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,1.0,159972.0,16.9124435788568,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,100778.0,17.7047228850417,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,1.0,433597.0,64.9145190200066,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,5.0,380409.0,43.5375048954677,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,6.0,435869.0,50.9681289932598,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,18.0,409521.0,73.7576423284731,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,95410.0,41.0585349743232,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,243517.0,44.9948619622885,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,160101.0,41.0169377639936,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,75037.0,15.2509617037647,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,1.0,379251.0,23.4108497565476,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,90797.0,16.7960381107827,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,129095.0,21.2497552718454,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,97897.0,34.4903509792911,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,117093.0,21.4163901664278,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,62767.0,24.808605665823,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,0.0,29017.0,8.40203952057735,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,49673.0,21.6099567080712,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,3090916.0,362.674739287902,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2011,144,1.0,267664.0,43.9141882432984,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2011,144,0.0,90296.0,36.8984320962727,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,175018.0,41.0629414077718,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,408442.0,67.8180174163131,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,153252.0,31.6107733502581,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,328272.0,36.3395819903621,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,142320.0,45.2493873610417,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,244607.0,26.0139350493804,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,127288.0,66.6747286423795,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,855256.0,184.215519390779,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,123052.0,18.6842005177327,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,284060.0,18.0416593426911,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,206618.0,39.01903896777,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,687351.0,145.269006922966,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,583702.0,380.084640186382,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,56111.0,36.8880096461213,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,93601.0,43.939391885203,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,891126.0,307.56710563081,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2011,144,0.0,24033.0,10.2456801701671,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,377765.0,81.5793222433533,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,372783.0,176.380218096147,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2011,144,0.0,182397.0,61.3851845344739,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,156956.0,45.3978415926403,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,143269.0,37.5823969689384,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,173841.0,33.3798938755898,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,211557.0,37.3093979151128,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2011,144,0.0,60495.0,19.6570901388588,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,65770.0,29.6283935855917,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,1.0,196069.0,18.108150591691,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,184247.0,36.1763398617675,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,160037.0,32.7559778574682,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2011,144,0.0,329853.0,46.6056975409335,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,149798.0,17.7921609120774,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,42297.0,28.222268632713,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2011,144,0.0,71492.0,19.8076749035962,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2011,144,0.0,128155.0,35.3076900058072,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2011,144,0.0,157622.0,9.14726122423447,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2011,144,0.0,778527.0,156.538641448033,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,110650.0,9.86212919690138,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,364066.0,31.0286595492302,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,63008.0,20.9805860507397,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,321938.0,57.9026000235909,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,307752.0,76.0615503051564,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,152643.0,20.1190067171233,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,204446.0,98.6961419857847,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2011,144,0.0,299410.0,114.846794093634,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,144516.0,29.6118515015342,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,2.0,3643619.0,650.390544792333,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,345379.0,39.28239603398,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,130971.0,22.2615726916533,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,363020.0,11.6809385718277,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,184243.0,10.6532757213103,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,173898.0,12.2077045519259,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,116433.0,7.09134311405664,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,1.0,483651.0,46.8089711139906,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,52930.0,8.35249041535693,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2011,144,0.0,260472.0,28.1228932846242,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2011,144,3.0,139796.0,1.68363292970019,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2011,144,0.0,105957.0,3.81902543542099,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2011,144,11.0,118180.0,2.83642992721888,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2011,144,49.0,885360.0,31.341116988675,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2011,144,0.0,61323.0,3.81244685936079,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2011,144,9.0,76908.0,4.47498790953513,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2011,144,46.0,158617.0,3.35669648033884,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2011,144,2.0,89503.0,6.64541883414367,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2011,144,0.0,105627.0,4.67826644995339,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2011,144,1.0,508097.0,13.5882427149264,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2011,144,3.0,228174.0,10.1492201454761,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2011,144,26.0,140785.0,1.13525444943477,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2011,144,4.0,99848.0,1.94250722881189,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2011,144,15.0,144736.0,3.38436880031324,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2011,144,5.0,91441.0,1.53425567886042,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2011,144,35.0,76266.0,1.38870434411641,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,4.0,198104.0,3.63193891234009,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2011,144,16.0,176354.0,3.52408570167667,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,2.0,33227.0,0.710524286277818,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2011,144,8.0,114135.0,1.34368639317735,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,3.0,100977.0,1.67179765070899,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,21.0,65583.0,2.0501678041714,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2011,144,9.0,68418.0,2.18167887858008,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,1.0,147397.0,6.60286514914574,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2011,144,7.0,107562.0,5.69743838284877,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2011,144,1.0,32753.0,4.88753057996983,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,0.0,30834.0,3.33866333204067,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,37.0,860003.0,31.1482307003151,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2011,144,0.0,132763.0,2.48985127947225,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,0.0,85696.0,8.35797023192758,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,9.0,54540.0,2.01419949206075,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,5.0,279691.0,11.4629270616166,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2011,144,0.0,34823.0,3.25034981116194,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2011,144,5.0,76889.0,3.15385405699657,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2011,144,4.0,88139.0,4.35309548572797,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2011,144,7.0,55588.0,5.02894162052152,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2011,144,11.0,231812.0,6.59352509385048,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2011,144,0.0,63201.0,2.96737846769703,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2011,144,16.0,232688.0,17.682752186057,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2011,144,22.0,545991.0,65.2510041650761,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2011,144,1.0,58840.0,8.32077470954666,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2011,144,2.0,110112.0,20.1660169815468,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2011,144,251.0,2149212.0,318.169420063014,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2011,144,3.0,108495.0,6.24290350534265,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2011,144,28.0,1070631.0,28.0588855553467,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2011,144,20.0,454273.0,8.10371888250496,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2011,144,13.0,114503.0,8.41721897779126,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2011,144,27.0,364937.0,17.2783378033835,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2011,144,4.0,93755.0,9.84208055003865,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2011,144,3.0,149509.0,9.81749243586248,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2011,144,0.0,112141.0,6.9759396377088,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2011,144,27.0,2609998.0,451.224787231551,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2012,145,27.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2012,145,24.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2012,145,1.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2012,145,9.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2012,145,36.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2012,145,8.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2012,145,122.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2012,145,39.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2012,145,4.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2012,145,3.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2012,145,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2012,145,383.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2012,145,5.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2012,145,280.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2012,145,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2012,145,4.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2012,145,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2012,145,11.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2012,145,18.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2012,145,582.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2012,145,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2012,145,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2012,145,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2012,145,1.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2012,145,1.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2012,145,20.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2012,145,119.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2012,145,9.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2012,145,5.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2012,145,13.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2012,145,9.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2012,145,58.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2012,145,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2012,145,0.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2012,145,6.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2012,145,45.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2012,145,711.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2012,145,107.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2012,145,17.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2012,145,87.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2012,145,86.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2012,145,75.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2012,145,58.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2012,145,50.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2012,145,156.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2012,145,248.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2012,145,128.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2012,145,125.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2012,145,395.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2012,145,108.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2012,145,91.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2012,145,25.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2012,145,16.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2012,145,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2012,145,21.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2012,145,0.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2012,145,233.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2012,145,285.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2012,145,159.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2012,145,225.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2012,145,24.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2012,145,764.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2012,145,24.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2012,145,10.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2012,145,1.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2012,145,55.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2012,145,3.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2012,145,3.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2012,145,6.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2012,145,16.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2012,145,6.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2012,145,30.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2012,145,39.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2012,145,124.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2012,145,37.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2012,145,56.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2012,145,2.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2012,145,13.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2012,145,5.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2012,145,10.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2012,145,71.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2012,145,24.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2012,145,11.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2012,145,62.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2012,145,11.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2012,145,12.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2012,145,2.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2012,145,359.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2012,145,9.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2012,145,9.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2012,145,6.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2012,145,7.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2012,145,13.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2012,145,62.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2012,145,4.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2012,145,109.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2012,145,1.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2012,145,20.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2012,145,24.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2012,145,8.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2012,145,4.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2012,145,1.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2012,145,25.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2012,145,1.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2012,145,3.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2012,145,19.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2012,145,0.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2012,145,2.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2012,145,3.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2012,145,0.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2012,145,3.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2012,145,103.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2012,145,8.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2012,145,5.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2012,145,4.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2012,145,732.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2012,145,11.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2012,145,5.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2012,145,7.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2012,145,16.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2012,145,3.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2012,145,4.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2012,145,8.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2012,145,3.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2012,145,1.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2012,145,22.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2012,145,6.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2012,145,1.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2012,145,30.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2012,145,25.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2012,145,7.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2012,145,851.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2012,145,44.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,227.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,6.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,19.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,81.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2012,145,9.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2012,145,160.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2012,145,68.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,33.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,6.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,1.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,28.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,64.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,2.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2012,145,15.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2012,145,21.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2012,145,4.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2012,145,16.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2012,145,407.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2012,145,4.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2012,145,8.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2012,145,2.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2012,145,4.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2012,145,6.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2012,145,8.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2012,145,1.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2012,145,2.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2012,145,11.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2012,145,0.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2012,145,7.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2012,145,1.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2012,145,0.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2012,145,0.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2012,145,0.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2012,145,0.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2012,145,2.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2012,145,5.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2012,145,5.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2012,145,1.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2012,145,3.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2012,145,3.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2012,145,47.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2012,145,6.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2012,145,349.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2012,145,19.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2012,145,165.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2012,145,41.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2012,145,61.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2012,145,4.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2012,145,3.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2012,145,40.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2012,145,74.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2012,145,299.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2012,145,5.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2012,145,9.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2012,145,223.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2012,145,169.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2012,145,5.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2012,145,12.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2012,145,2029.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2012,145,55.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2012,145,1.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2012,145,4.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2012,145,5.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2012,145,42.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2012,145,11.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2012,145,153.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2012,145,767.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2012,145,2.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2012,145,5.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2012,145,21.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2012,145,3.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2012,145,289.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2012,145,20.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2012,145,18.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2012,145,0.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2012,145,6.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,3.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,38.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2012,145,65.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2012,145,1.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,18.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,3.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,2.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,21.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2012,145,244.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2012,145,18.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2012,145,11.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2012,145,6.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2012,145,9.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2012,145,30.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2012,145,114.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2012,145,25.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2012,145,2.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2012,145,17.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2012,145,22.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2012,145,38.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2012,145,159.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2012,145,50.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2012,145,286.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2012,145,16.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2012,145,41.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2012,145,68.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2012,145,696.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2012,145,21.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,10.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,17.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,21.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,648.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2012,145,37.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2012,145,14.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2012,145,140.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2012,145,2.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2012,145,199.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2012,145,47.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2012,145,275.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2012,145,26.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,30.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,356.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2012,145,47.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,5.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,8.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,22.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2012,145,117.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,2.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,7.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2012,145,35.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,1.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,2.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2012,145,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,8.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2012,145,25.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2012,145,6.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,6.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,161.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,12.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,46.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,49.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2012,145,5.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,1.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,9.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,67.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2012,145,113.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,7.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2012,145,14.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,2.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,21.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,3.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,248.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,25.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,1.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,2.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,5.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,13.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,1.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,445.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,0.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,224.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,11.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,384.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,25.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2012,145,6.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2012,145,1.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,5.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,5.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,3.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2012,145,2.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,0.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,1.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,2.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,1.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,0.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,2.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,19.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,19.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,4.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,46.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2012,145,17.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2012,145,6.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2012,145,9.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,1.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,7.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,39.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,19.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,19.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,34.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2012,145,2.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2012,145,4.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2012,145,716.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,25.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2012,145,11.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,29.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2012,145,2.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,38.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,12.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,60.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,16.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2012,145,4.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2012,145,11.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2012,145,1.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2012,145,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,15.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,114.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2012,145,189.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2012,145,9.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2012,145,98.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2012,145,3.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2012,145,2.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,24.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2012,145,8.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2012,145,7720.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,5.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,3.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2012,145,6.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,34.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,4.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,1.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,0.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,2.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2012,145,11.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2012,145,14.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2012,145,2.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2012,145,18.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2012,145,11.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2012,145,196.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2012,145,0.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,32.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,27.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,22.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,5.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2012,145,10.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2012,145,7.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2012,145,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2012,145,1.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2012,145,91.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2012,145,9.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2012,145,9.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2012,145,12.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,60.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2012,145,2.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2012,145,4.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2012,145,24.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,98.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,5.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,4.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,1.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2012,145,22.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,1.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,5.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2012,145,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,8.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,4.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,10.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,19.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2012,145,507.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,1.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,3.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,14.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,2.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2012,145,1.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,17.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,5.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,19.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,14.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,206.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2012,145,8.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2012,145,102.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,3.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,17.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,5.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,3.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,4.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,6.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,9.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,6.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,1.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,8.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,1.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,5.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,4.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,2.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,1.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,8.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,13.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,21.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,1.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,22.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,2.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,1.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,1.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,8.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2012,145,2.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2012,145,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,2.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,3.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,1.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,1.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,2.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,1.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,2.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,2.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2012,145,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2012,145,1.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,1.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,2.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2012,145,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,1.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,1.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2012,145,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2012,145,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2012,145,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2012,145,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2012,145,5.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,1.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,1.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2012,145,1.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,5.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,1.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,1.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2012,145,1.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2012,145,2.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2012,145,1.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2012,145,17.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2012,145,130.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2012,145,7.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2012,145,3.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2012,145,350.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2012,145,1.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2012,145,2.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2012,145,15.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2012,145,7.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2012,145,181.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2012,145,17.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2012,145,98.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2012,145,20.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2012,145,247.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,223.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2012,145,299.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,2.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2012,145,31.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,59.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,33.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2012,145,56.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,18.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2012,145,43.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2012,145,14.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,16.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,329.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2012,145,7.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,33.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,16.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,17.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2012,145,0.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2012,145,10.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2012,145,16.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2012,145,22.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2012,145,37.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2012,145,2.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2012,145,46.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2012,145,29.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2012,145,5.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2012,145,16.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2012,145,2036.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2012,145,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2012,145,56.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2012,145,55.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2012,145,10.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2012,145,20.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2012,145,12.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2012,145,2.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2012,145,4.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2012,145,156.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2012,146,16.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2012,146,36.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2012,146,3.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2012,146,37.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2012,146,24.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2012,146,10.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2012,146,125.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2012,146,49.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2012,146,4.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2012,146,0.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2012,146,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2012,146,366.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2012,146,5.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2012,146,115.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2012,146,2.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2012,146,2.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2012,146,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2012,146,9.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2012,146,15.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2012,146,1037.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2012,146,5.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2012,146,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2012,146,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2012,146,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2012,146,0.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2012,146,32.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2012,146,32.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2012,146,8.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2012,146,33.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2012,146,27.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2012,146,12.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2012,146,104.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2012,146,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2012,146,4.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2012,146,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2012,146,58.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2012,146,585.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2012,146,95.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2012,146,26.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2012,146,62.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2012,146,134.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2012,146,34.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2012,146,34.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2012,146,50.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2012,146,241.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2012,146,380.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2012,146,198.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2012,146,101.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2012,146,684.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2012,146,220.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2012,146,81.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2012,146,28.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2012,146,32.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2012,146,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2012,146,17.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2012,146,1.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2012,146,136.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2012,146,382.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2012,146,241.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2012,146,186.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2012,146,90.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2012,146,1103.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2012,146,24.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2012,146,12.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2012,146,14.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2012,146,57.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2012,146,8.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2012,146,14.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2012,146,32.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2012,146,44.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2012,146,9.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2012,146,62.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2012,146,73.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2012,146,142.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2012,146,70.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2012,146,53.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2012,146,4.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2012,146,35.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2012,146,4.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2012,146,12.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2012,146,54.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2012,146,33.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2012,146,16.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2012,146,68.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2012,146,3.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2012,146,38.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2012,146,7.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2012,146,443.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2012,146,22.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2012,146,21.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2012,146,6.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2012,146,17.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2012,146,9.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2012,146,65.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2012,146,1.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2012,146,88.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2012,146,1.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2012,146,48.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2012,146,14.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2012,146,7.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2012,146,6.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2012,146,3.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2012,146,45.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2012,146,0.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2012,146,11.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2012,146,6.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2012,146,1.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2012,146,1.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2012,146,6.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2012,146,6.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2012,146,12.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2012,146,184.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2012,146,22.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2012,146,7.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2012,146,3.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2012,146,1200.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2012,146,1.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2012,146,8.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2012,146,16.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2012,146,22.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2012,146,2.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2012,146,8.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2012,146,12.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2012,146,4.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2012,146,1.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2012,146,52.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2012,146,2.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2012,146,0.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2012,146,42.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2012,146,53.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2012,146,20.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2012,146,636.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2012,146,103.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,269.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,13.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,88.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,204.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2012,146,32.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2012,146,102.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2012,146,137.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,25.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,16.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,9.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,6.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,98.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,13.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2012,146,14.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2012,146,31.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2012,146,21.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2012,146,61.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2012,146,594.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2012,146,6.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2012,146,34.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2012,146,3.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2012,146,3.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2012,146,3.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2012,146,6.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2012,146,1.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2012,146,7.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2012,146,25.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2012,146,0.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2012,146,14.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2012,146,1.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2012,146,0.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2012,146,5.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2012,146,1.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2012,146,3.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2012,146,1.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2012,146,0.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2012,146,13.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2012,146,2.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2012,146,2.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2012,146,3.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2012,146,66.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2012,146,15.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2012,146,236.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2012,146,48.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2012,146,817.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2012,146,53.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2012,146,61.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2012,146,6.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2012,146,40.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2012,146,113.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2012,146,81.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2012,146,138.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2012,146,10.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2012,146,19.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2012,146,263.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2012,146,71.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2012,146,29.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2012,146,18.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2012,146,3232.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2012,146,117.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2012,146,0.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2012,146,26.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2012,146,9.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2012,146,77.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2012,146,26.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2012,146,153.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2012,146,615.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2012,146,0.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2012,146,4.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2012,146,71.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2012,146,18.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2012,146,521.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2012,146,50.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2012,146,15.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2012,146,6.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2012,146,9.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,5.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,58.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2012,146,43.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2012,146,17.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,14.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,8.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,2.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,38.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2012,146,315.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2012,146,48.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2012,146,11.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2012,146,11.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2012,146,8.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2012,146,10.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2012,146,74.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2012,146,22.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2012,146,2.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2012,146,5.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2012,146,51.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2012,146,40.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2012,146,419.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2012,146,200.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2012,146,347.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2012,146,74.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2012,146,84.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2012,146,173.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2012,146,888.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2012,146,16.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,18.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,25.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,56.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,689.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2012,146,29.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2012,146,27.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2012,146,120.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2012,146,0.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2012,146,378.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2012,146,175.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2012,146,291.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2012,146,21.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,60.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,559.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2012,146,84.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,4.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,3.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,15.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2012,146,134.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,0.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2012,146,25.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,0.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,0.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2012,146,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,1.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2012,146,7.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2012,146,6.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,5.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,222.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,7.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,103.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,84.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2012,146,7.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,10.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,24.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,253.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2012,146,93.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,1.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2012,146,19.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,5.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,40.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,2.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,180.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,15.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,11.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,1.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,471.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,3.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,223.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,39.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,331.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,0.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,38.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2012,146,1.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2012,146,4.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,4.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2012,146,2.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,0.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,1.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,3.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,53.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,12.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,8.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,13.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2012,146,39.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2012,146,8.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2012,146,11.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,2.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,32.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,62.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,21.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,10.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,73.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2012,146,0.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2012,146,0.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2012,146,502.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,9.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2012,146,25.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,43.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2012,146,5.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,16.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,1.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,53.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,27.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2012,146,1.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2012,146,7.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2012,146,5.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2012,146,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,56.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,140.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2012,146,165.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2012,146,90.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2012,146,116.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2012,146,11.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2012,146,2.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,10.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2012,146,9.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2012,146,13730.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,5.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,3.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2012,146,4.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,61.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,3.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,1.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,3.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,3.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2012,146,14.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2012,146,34.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2012,146,4.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2012,146,6.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2012,146,11.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2012,146,260.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2012,146,2.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,42.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,51.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,34.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,1.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2012,146,3.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2012,146,5.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2012,146,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2012,146,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2012,146,199.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2012,146,6.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2012,146,42.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2012,146,4.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,143.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2012,146,6.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2012,146,7.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2012,146,13.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,124.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,1.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,0.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,2.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2012,146,49.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,5.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,2.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,1.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2012,146,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,1.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,1.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,18.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,7.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,7.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,1.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,52.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2012,146,1422.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,1.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,13.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,0.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2012,146,3.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,14.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,4.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,25.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,14.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,167.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2012,146,6.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2012,146,105.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,6.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,20.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,2.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,3.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,1.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,15.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,10.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,2.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,5.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,6.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,16.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,3.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,2.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,1.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,1.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,26.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,16.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,28.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,189.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,1.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,1.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,1.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,1.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,2.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,1.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,5.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2012,146,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2012,146,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,4.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,2.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,1.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,1.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,0.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,2.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,2.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,4.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2012,146,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,1.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2012,146,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,4.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,1.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2012,146,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,1.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,1.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2012,146,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2012,146,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2012,146,1.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2012,146,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2012,146,3.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,1.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2012,146,1.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,4.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2012,146,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2012,146,39.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2012,146,6.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2012,146,16.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2012,146,137.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2012,146,7.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2012,146,7.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2012,146,324.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2012,146,0.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2012,146,4.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2012,146,20.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2012,146,21.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2012,146,152.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2012,146,35.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2012,146,72.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2012,146,28.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2012,146,154.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,94.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2012,146,386.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,9.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2012,146,14.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,48.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,37.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2012,146,93.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,47.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2012,146,106.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2012,146,13.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,4.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,1603.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2012,146,89.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,56.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,14.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,44.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2012,146,0.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2012,146,2.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2012,146,6.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2012,146,19.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2012,146,64.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2012,146,1.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2012,146,47.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2012,146,38.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2012,146,7.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2012,146,25.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2012,146,2042.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2012,146,1.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2012,146,45.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2012,146,81.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2012,146,38.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2012,146,17.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2012,146,8.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2012,146,2.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2012,146,18.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2012,146,151.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2012,147,23.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2012,147,64.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2012,147,2.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2012,147,22.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2012,147,48.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2012,147,13.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2012,147,116.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2012,147,86.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2012,147,1.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2012,147,1.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2012,147,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2012,147,179.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2012,147,21.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2012,147,92.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2012,147,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2012,147,1.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2012,147,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2012,147,3.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2012,147,2.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2012,147,295.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2012,147,1.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2012,147,2.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2012,147,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2012,147,3.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2012,147,3.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2012,147,18.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2012,147,42.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2012,147,2.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2012,147,74.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2012,147,143.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2012,147,16.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2012,147,165.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2012,147,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2012,147,1.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2012,147,6.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2012,147,96.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2012,147,601.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2012,147,78.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2012,147,100.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2012,147,94.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2012,147,116.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2012,147,31.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2012,147,61.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2012,147,49.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2012,147,548.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2012,147,274.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2012,147,114.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2012,147,127.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2012,147,313.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2012,147,176.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2012,147,111.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2012,147,23.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2012,147,4.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2012,147,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2012,147,33.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2012,147,0.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2012,147,89.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2012,147,622.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2012,147,155.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2012,147,110.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2012,147,122.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2012,147,1049.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2012,147,21.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2012,147,21.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2012,147,21.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2012,147,116.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2012,147,7.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2012,147,13.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2012,147,122.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2012,147,74.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2012,147,9.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2012,147,90.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2012,147,81.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2012,147,164.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2012,147,57.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2012,147,93.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2012,147,5.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2012,147,26.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2012,147,22.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2012,147,24.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2012,147,104.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2012,147,15.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2012,147,36.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2012,147,41.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2012,147,2.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2012,147,72.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2012,147,22.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2012,147,889.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2012,147,46.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2012,147,31.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2012,147,14.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2012,147,12.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2012,147,4.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2012,147,44.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2012,147,11.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2012,147,86.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2012,147,6.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2012,147,35.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2012,147,2.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2012,147,58.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2012,147,26.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2012,147,3.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2012,147,14.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2012,147,0.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2012,147,12.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2012,147,16.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2012,147,4.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2012,147,0.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2012,147,17.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2012,147,3.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2012,147,11.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2012,147,106.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2012,147,72.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2012,147,22.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2012,147,10.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2012,147,3415.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2012,147,7.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2012,147,137.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2012,147,38.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2012,147,39.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2012,147,5.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2012,147,38.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2012,147,28.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2012,147,1.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2012,147,7.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2012,147,51.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2012,147,3.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2012,147,6.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2012,147,64.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2012,147,34.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2012,147,50.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2012,147,601.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2012,147,86.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,312.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,19.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,78.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,379.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2012,147,36.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2012,147,105.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2012,147,128.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,71.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,28.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,59.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,4.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,282.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,141.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2012,147,24.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2012,147,139.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2012,147,33.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2012,147,137.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2012,147,1779.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2012,147,6.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2012,147,45.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2012,147,25.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2012,147,12.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2012,147,23.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2012,147,25.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2012,147,1.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2012,147,14.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2012,147,20.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2012,147,1.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2012,147,19.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2012,147,8.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2012,147,3.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2012,147,11.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2012,147,2.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2012,147,2.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2012,147,3.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2012,147,9.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2012,147,46.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2012,147,4.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2012,147,7.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2012,147,8.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2012,147,383.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2012,147,36.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2012,147,119.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2012,147,138.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2012,147,1209.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2012,147,73.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2012,147,78.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2012,147,21.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2012,147,34.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2012,147,267.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2012,147,154.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2012,147,156.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2012,147,61.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2012,147,61.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2012,147,529.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2012,147,67.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2012,147,116.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2012,147,68.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2012,147,4154.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2012,147,515.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2012,147,15.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2012,147,86.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2012,147,9.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2012,147,174.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2012,147,54.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2012,147,281.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2012,147,651.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2012,147,0.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2012,147,8.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2012,147,202.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2012,147,100.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2012,147,1822.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2012,147,85.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2012,147,53.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2012,147,37.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2012,147,12.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,12.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,55.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2012,147,35.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2012,147,38.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,14.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,9.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,4.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,38.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2012,147,415.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2012,147,55.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2012,147,16.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2012,147,27.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2012,147,7.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2012,147,7.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2012,147,84.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2012,147,22.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2012,147,5.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2012,147,5.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2012,147,310.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2012,147,92.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2012,147,1129.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2012,147,353.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2012,147,653.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2012,147,164.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2012,147,185.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2012,147,259.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2012,147,1103.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2012,147,35.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,23.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,34.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,105.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,922.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2012,147,24.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2012,147,109.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2012,147,173.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2012,147,1.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2012,147,597.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2012,147,432.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2012,147,305.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2012,147,81.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,98.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,1962.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2012,147,225.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,8.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,5.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,35.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2012,147,71.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,2.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,6.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2012,147,43.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,0.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,5.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2012,147,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,4.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2012,147,6.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2012,147,6.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,9.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,234.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,9.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,195.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,78.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2012,147,27.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,7.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,142.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,576.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2012,147,155.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,4.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2012,147,38.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,1.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,90.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,1.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,262.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,44.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,3.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,4.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,4.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,1.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,654.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,2.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,373.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,51.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,103.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,97.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2012,147,4.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,1.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2012,147,3.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,3.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,6.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,6.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2012,147,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,1.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,2.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,1.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,85.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,5.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,4.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,27.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2012,147,332.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2012,147,8.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2012,147,12.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,2.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,82.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,33.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,34.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,10.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,87.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2012,147,2.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2012,147,3.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2012,147,565.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,33.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2012,147,44.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,43.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2012,147,7.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,19.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,5.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,116.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,48.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2012,147,9.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2012,147,18.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2012,147,5.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2012,147,1.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,158.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,268.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2012,147,156.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2012,147,329.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2012,147,163.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2012,147,16.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2012,147,8.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,48.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2012,147,29.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2012,147,30947.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,2.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,2.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2012,147,3.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,115.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,34.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,52.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,3.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,4.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2012,147,31.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2012,147,84.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2012,147,32.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2012,147,15.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2012,147,42.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2012,147,260.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2012,147,3.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,84.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,107.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,99.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,12.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2012,147,7.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2012,147,1.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2012,147,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2012,147,7.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2012,147,225.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2012,147,10.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2012,147,194.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2012,147,58.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,630.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2012,147,5.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2012,147,2.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2012,147,34.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,353.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,2.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,15.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,5.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2012,147,97.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,3.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,8.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,4.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,2.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2012,147,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,65.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,17.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,6.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,1.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,64.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2012,147,2183.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,3.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,36.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,3.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2012,147,4.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,55.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,169.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,49.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,28.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,351.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2012,147,5.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2012,147,183.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,67.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,128.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,2.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,21.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,9.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,65.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,11.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,1.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,20.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,3.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,22.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,2.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,31.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,23.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,2.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,1.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,79.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,48.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,35.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,14.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,327.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,10.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,1.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,1.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,6.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2012,147,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2012,147,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,3.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,2.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,1.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,3.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,1.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,0.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,2.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2012,147,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,2.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2012,147,1.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,12.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,1.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,1.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2012,147,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,3.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2012,147,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2012,147,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2012,147,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2012,147,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2012,147,5.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,1.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2012,147,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,12.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,1.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,1.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2012,147,1.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2012,147,183.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2012,147,5.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2012,147,41.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2012,147,334.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2012,147,8.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2012,147,7.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2012,147,147.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2012,147,1.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2012,147,6.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2012,147,43.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2012,147,112.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2012,147,69.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2012,147,80.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2012,147,81.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2012,147,115.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2012,147,79.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,141.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2012,147,447.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,9.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2012,147,14.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,62.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,31.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2012,147,138.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,105.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2012,147,257.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2012,147,50.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,7.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,3216.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2012,147,301.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,51.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,21.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,95.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2012,147,2.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2012,147,9.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2012,147,8.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2012,147,14.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2012,147,92.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2012,147,1.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2012,147,52.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2012,147,41.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2012,147,11.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2012,147,32.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2012,147,1908.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2012,147,1.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2012,147,58.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2012,147,105.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2012,147,105.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2012,147,54.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2012,147,9.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2012,147,13.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2012,147,26.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2012,147,221.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2012,148,13.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2012,148,37.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2012,148,3.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2012,148,44.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2012,148,3.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2012,148,17.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2012,148,121.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2012,148,57.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2012,148,0.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2012,148,1.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2012,148,1.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2012,148,109.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2012,148,7.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2012,148,32.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2012,148,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2012,148,2.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2012,148,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2012,148,10.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2012,148,2.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2012,148,156.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2012,148,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2012,148,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2012,148,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2012,148,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2012,148,3.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2012,148,9.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2012,148,47.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2012,148,9.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2012,148,42.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2012,148,75.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2012,148,7.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2012,148,153.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2012,148,1.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2012,148,0.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2012,148,3.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2012,148,59.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2012,148,298.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2012,148,75.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2012,148,126.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2012,148,72.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2012,148,58.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2012,148,12.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2012,148,33.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2012,148,21.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2012,148,211.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2012,148,187.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2012,148,81.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2012,148,106.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2012,148,97.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2012,148,90.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2012,148,49.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2012,148,13.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2012,148,6.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2012,148,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2012,148,37.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2012,148,1.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2012,148,86.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2012,148,521.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2012,148,155.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2012,148,114.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2012,148,157.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2012,148,833.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2012,148,32.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2012,148,16.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2012,148,19.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2012,148,190.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2012,148,6.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2012,148,6.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2012,148,41.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2012,148,23.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2012,148,33.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2012,148,88.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2012,148,56.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2012,148,61.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2012,148,24.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2012,148,22.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2012,148,3.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2012,148,14.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2012,148,11.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2012,148,8.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2012,148,104.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2012,148,28.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2012,148,23.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2012,148,20.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2012,148,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2012,148,210.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2012,148,92.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2012,148,1988.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2012,148,85.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2012,148,48.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2012,148,33.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2012,148,21.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2012,148,9.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2012,148,18.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2012,148,22.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2012,148,34.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2012,148,5.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2012,148,45.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2012,148,7.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2012,148,75.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2012,148,81.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2012,148,2.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2012,148,10.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2012,148,0.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2012,148,35.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2012,148,17.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2012,148,2.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2012,148,21.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2012,148,126.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2012,148,14.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2012,148,19.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2012,148,43.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2012,148,110.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2012,148,65.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2012,148,30.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2012,148,9121.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2012,148,10.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2012,148,124.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2012,148,103.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2012,148,22.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2012,148,4.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2012,148,71.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2012,148,102.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2012,148,14.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2012,148,10.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2012,148,174.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2012,148,7.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2012,148,5.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2012,148,63.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2012,148,13.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2012,148,32.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2012,148,354.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2012,148,41.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,312.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,73.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,32.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,125.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2012,148,22.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2012,148,168.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2012,148,43.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,91.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,61.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,127.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,14.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,393.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,393.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2012,148,84.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2012,148,290.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2012,148,91.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2012,148,287.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2012,148,3613.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2012,148,14.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2012,148,77.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2012,148,82.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2012,148,60.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2012,148,95.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2012,148,22.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2012,148,6.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2012,148,45.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2012,148,36.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2012,148,0.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2012,148,41.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2012,148,20.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2012,148,1.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2012,148,12.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2012,148,2.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2012,148,4.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2012,148,19.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2012,148,11.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2012,148,35.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2012,148,1.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2012,148,13.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2012,148,5.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2012,148,1031.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2012,148,38.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2012,148,44.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2012,148,317.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2012,148,952.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2012,148,45.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2012,148,120.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2012,148,48.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2012,148,70.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2012,148,310.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2012,148,129.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2012,148,107.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2012,148,213.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2012,148,147.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2012,148,377.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2012,148,35.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2012,148,319.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2012,148,191.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2012,148,2391.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2012,148,462.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2012,148,40.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2012,148,45.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2012,148,22.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2012,148,233.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2012,148,26.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2012,148,233.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2012,148,618.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2012,148,1.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2012,148,17.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2012,148,222.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2012,148,288.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2012,148,3448.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2012,148,124.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2012,148,155.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2012,148,12.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2012,148,11.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,3.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,44.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2012,148,26.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2012,148,47.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,29.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,3.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,18.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,29.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2012,148,653.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2012,148,51.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2012,148,33.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2012,148,23.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2012,148,4.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2012,148,5.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2012,148,71.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2012,148,38.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2012,148,1.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2012,148,29.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2012,148,267.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2012,148,98.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2012,148,1550.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2012,148,382.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2012,148,552.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2012,148,126.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2012,148,105.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2012,148,329.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2012,148,466.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2012,148,66.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,26.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,32.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,172.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,944.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2012,148,138.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2012,148,131.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2012,148,212.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2012,148,1.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2012,148,455.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2012,148,127.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2012,148,288.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2012,148,49.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,86.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,3452.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2012,148,211.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,9.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,12.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,48.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2012,148,59.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,5.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2012,148,139.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,0.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,6.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2012,148,1.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,2.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2012,148,11.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2012,148,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,3.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,117.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,15.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,409.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,94.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2012,148,19.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,13.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,184.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,690.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2012,148,190.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,8.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2012,148,59.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,10.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,134.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,2.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,325.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,46.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,5.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,2.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,3.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,2.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,1.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,562.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,2.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,521.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,46.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,47.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,103.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2012,148,2.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,1.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2012,148,3.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,23.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,19.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2012,148,2.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,0.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,3.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,1.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,2.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,3.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,1.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,3.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,104.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,6.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,1.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,18.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2012,148,624.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2012,148,18.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2012,148,5.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,0.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,76.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,14.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,26.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,19.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,124.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2012,148,4.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2012,148,2.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2012,148,680.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,51.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2012,148,29.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,54.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2012,148,24.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,43.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,5.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,161.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,60.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2012,148,8.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2012,148,6.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2012,148,7.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2012,148,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,80.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,488.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2012,148,258.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2012,148,360.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2012,148,226.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2012,148,13.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2012,148,20.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,54.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2012,148,58.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2012,148,46285.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,8.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,3.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2012,148,3.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,147.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,35.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,12.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,4.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,5.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2012,148,44.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2012,148,217.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2012,148,58.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2012,148,10.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2012,148,46.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2012,148,268.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2012,148,2.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,107.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,211.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,166.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,5.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2012,148,4.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2012,148,5.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2012,148,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2012,148,4.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2012,148,344.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2012,148,9.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2012,148,135.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2012,148,93.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,1453.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2012,148,11.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2012,148,3.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2012,148,79.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,687.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,2.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,7.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,2.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2012,148,109.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,4.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,8.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,3.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,1.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2012,148,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,66.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,30.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,8.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,76.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2012,148,1082.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,2.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,28.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,5.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2012,148,2.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,75.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,322.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,126.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,55.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,620.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2012,148,16.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2012,148,440.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,45.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,231.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,0.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,5.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,7.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,252.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,11.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,1.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,37.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,2.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,22.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,3.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,29.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,4.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,67.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,54.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,41.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,8.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,111.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,1.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,4.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2012,148,2.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2012,148,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,1.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,1.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,2.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,1.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,1.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,8.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2012,148,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,2.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2012,148,2.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,9.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2012,148,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,9.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,2.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2012,148,1.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2012,148,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2012,148,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2012,148,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2012,148,2.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,1.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,1.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,1.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2012,148,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,6.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,1.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2012,148,1.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2012,148,673.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2012,148,5.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2012,148,35.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2012,148,465.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2012,148,12.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2012,148,6.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2012,148,123.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2012,148,2.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2012,148,3.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2012,148,59.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2012,148,58.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2012,148,84.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2012,148,52.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2012,148,48.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2012,148,142.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2012,148,43.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,176.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2012,148,523.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,18.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2012,148,10.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,73.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,39.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2012,148,120.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,248.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2012,148,338.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2012,148,86.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,9.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,3335.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2012,148,261.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,41.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,33.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,189.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2012,148,1.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2012,148,6.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2012,148,9.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2012,148,11.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2012,148,112.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2012,148,1.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2012,148,44.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2012,148,48.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2012,148,5.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2012,148,5.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2012,148,1829.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2012,148,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2012,148,99.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2012,148,155.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2012,148,65.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2012,148,144.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2012,148,5.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2012,148,7.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2012,148,54.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2012,148,215.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2012,149,6.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2012,149,29.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2012,149,8.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2012,149,18.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2012,149,8.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2012,149,13.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2012,149,180.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2012,149,27.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2012,149,1.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2012,149,2.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2012,149,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2012,149,78.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2012,149,3.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2012,149,39.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2012,149,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2012,149,0.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2012,149,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2012,149,10.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2012,149,0.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2012,149,145.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2012,149,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2012,149,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2012,149,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2012,149,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2012,149,2.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2012,149,9.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2012,149,89.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2012,149,20.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2012,149,96.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2012,149,57.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2012,149,11.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2012,149,79.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2012,149,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2012,149,1.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2012,149,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2012,149,37.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2012,149,205.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2012,149,66.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2012,149,89.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2012,149,74.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2012,149,29.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2012,149,13.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2012,149,53.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2012,149,6.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2012,149,106.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2012,149,33.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2012,149,59.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2012,149,51.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2012,149,68.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2012,149,46.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2012,149,31.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2012,149,9.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2012,149,5.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2012,149,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2012,149,53.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2012,149,0.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2012,149,106.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2012,149,162.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2012,149,164.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2012,149,81.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2012,149,136.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2012,149,617.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2012,149,35.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2012,149,16.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2012,149,22.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2012,149,213.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2012,149,5.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2012,149,6.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2012,149,13.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2012,149,10.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2012,149,27.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2012,149,41.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2012,149,39.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2012,149,37.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2012,149,28.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2012,149,12.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2012,149,8.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2012,149,30.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2012,149,4.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2012,149,9.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2012,149,100.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2012,149,26.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2012,149,15.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2012,149,19.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2012,149,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2012,149,346.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2012,149,274.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2012,149,2264.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2012,149,235.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2012,149,62.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2012,149,130.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2012,149,12.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2012,149,7.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2012,149,18.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2012,149,64.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2012,149,19.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2012,149,5.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2012,149,61.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2012,149,2.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2012,149,81.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2012,149,135.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2012,149,8.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2012,149,18.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2012,149,2.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2012,149,114.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2012,149,39.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2012,149,4.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2012,149,10.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2012,149,379.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2012,149,12.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2012,149,54.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2012,149,33.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2012,149,49.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2012,149,144.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2012,149,74.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2012,149,21891.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2012,149,25.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2012,149,89.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2012,149,98.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2012,149,12.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2012,149,8.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2012,149,130.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2012,149,339.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2012,149,18.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2012,149,8.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2012,149,104.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2012,149,9.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2012,149,7.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2012,149,55.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2012,149,9.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2012,149,63.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2012,149,342.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2012,149,58.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,194.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,51.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,10.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,36.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2012,149,27.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2012,149,142.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2012,149,16.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,26.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,55.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,60.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,57.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,379.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,232.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2012,149,167.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2012,149,204.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2012,149,124.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2012,149,325.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2012,149,3496.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2012,149,32.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2012,149,75.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2012,149,60.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2012,149,191.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2012,149,122.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2012,149,22.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2012,149,25.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2012,149,69.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2012,149,18.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2012,149,6.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2012,149,31.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2012,149,35.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2012,149,17.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2012,149,5.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2012,149,0.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2012,149,8.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2012,149,35.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2012,149,13.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2012,149,11.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2012,149,0.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2012,149,33.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2012,149,6.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2012,149,1106.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2012,149,34.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2012,149,11.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2012,149,121.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2012,149,389.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2012,149,12.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2012,149,79.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2012,149,30.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2012,149,26.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2012,149,130.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2012,149,97.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2012,149,54.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2012,149,268.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2012,149,69.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2012,149,91.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2012,149,30.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2012,149,203.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2012,149,137.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2012,149,1192.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2012,149,335.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2012,149,39.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2012,149,28.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2012,149,19.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2012,149,203.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2012,149,28.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2012,149,165.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2012,149,450.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2012,149,1.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2012,149,53.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2012,149,231.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2012,149,182.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2012,149,3555.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2012,149,123.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2012,149,159.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2012,149,22.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2012,149,13.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,11.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,23.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2012,149,23.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2012,149,15.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,21.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,4.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,21.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,7.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2012,149,431.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2012,149,29.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2012,149,71.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2012,149,52.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2012,149,2.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2012,149,3.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2012,149,69.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2012,149,43.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2012,149,2.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2012,149,7.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2012,149,126.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2012,149,55.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2012,149,773.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2012,149,284.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2012,149,665.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2012,149,61.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2012,149,106.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2012,149,155.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2012,149,341.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2012,149,26.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,18.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,36.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,140.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,974.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2012,149,95.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2012,149,100.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2012,149,185.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2012,149,27.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2012,149,268.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2012,149,108.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2012,149,223.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2012,149,56.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,50.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,2913.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2012,149,302.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,1.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,16.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,22.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2012,149,48.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,6.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,4.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2012,149,173.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,1.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,5.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2012,149,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,1.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2012,149,6.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2012,149,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,2.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,98.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,24.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,348.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,99.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2012,149,11.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,10.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,81.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,416.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2012,149,89.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,3.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2012,149,152.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,10.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,143.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,2.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,214.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,24.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,2.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,3.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,6.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,1.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,536.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,2.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,620.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,48.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,9.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,128.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2012,149,0.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2012,149,1.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,19.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,7.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,1.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2012,149,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,4.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,1.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,1.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,77.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,7.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,7.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,20.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2012,149,322.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2012,149,23.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2012,149,17.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,0.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,49.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,25.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,20.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,42.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,47.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2012,149,2.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2012,149,0.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2012,149,629.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,38.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2012,149,12.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,90.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2012,149,33.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,68.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,14.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,194.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,105.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2012,149,12.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2012,149,4.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2012,149,9.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2012,149,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,116.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,988.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2012,149,211.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2012,149,265.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2012,149,311.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2012,149,11.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2012,149,11.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,84.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2012,149,87.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2012,149,38698.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,10.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,0.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2012,149,3.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,93.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,11.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,3.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,2.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,4.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2012,149,39.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2012,149,179.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2012,149,54.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2012,149,15.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2012,149,22.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2012,149,121.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2012,149,1.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,71.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,111.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,77.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,5.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2012,149,9.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2012,149,11.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2012,149,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2012,149,2.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2012,149,155.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2012,149,4.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2012,149,62.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2012,149,57.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,616.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2012,149,10.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2012,149,2.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2012,149,51.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,416.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,0.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,17.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,11.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2012,149,97.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,2.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,2.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,3.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,3.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2012,149,2.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,2.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,1.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,24.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,22.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,1.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,59.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2012,149,752.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,1.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,0.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,42.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,5.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2012,149,6.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,21.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,81.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,123.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,28.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,271.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2012,149,1.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2012,149,676.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,49.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,128.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,2.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,8.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,4.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,208.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,8.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,12.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,3.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,3.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,1.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,1.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,102.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,2.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,2.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,1.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,1.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,14.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,35.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,15.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,0.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,16.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,2.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,1.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,1.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,1.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,7.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2012,149,1.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2012,149,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,1.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,2.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,1.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,2.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,1.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,2.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2012,149,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,2.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,1.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2012,149,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,2.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,1.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2012,149,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,3.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,1.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2012,149,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2012,149,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2012,149,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2012,149,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2012,149,0.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,1.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,1.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,3.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2012,149,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,9.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,1.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2012,149,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2012,149,239.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2012,149,3.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2012,149,27.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2012,149,357.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2012,149,7.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2012,149,6.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2012,149,91.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2012,149,0.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2012,149,7.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2012,149,82.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2012,149,27.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2012,149,51.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2012,149,42.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2012,149,47.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2012,149,173.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2012,149,76.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,283.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2012,149,784.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,11.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2012,149,131.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,75.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,43.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2012,149,131.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,348.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2012,149,337.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2012,149,127.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,9.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,2100.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2012,149,118.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,39.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,53.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,235.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2012,149,1.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2012,149,4.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2012,149,3.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2012,149,10.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2012,149,104.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2012,149,2.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2012,149,63.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2012,149,53.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2012,149,4.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2012,149,3.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2012,149,1997.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2012,149,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2012,149,175.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2012,149,191.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2012,149,87.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2012,149,126.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2012,149,11.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2012,149,11.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2012,149,73.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2012,149,204.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2012,150,6.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2012,150,26.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2012,150,8.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2012,150,6.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2012,150,3.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2012,150,5.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2012,150,222.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2012,150,17.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2012,150,3.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2012,150,0.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2012,150,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2012,150,48.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2012,150,1.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2012,150,29.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2012,150,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2012,150,2.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2012,150,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2012,150,2.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2012,150,3.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2012,150,211.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2012,150,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2012,150,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2012,150,1.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2012,150,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2012,150,0.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2012,150,8.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2012,150,103.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2012,150,13.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2012,150,44.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2012,150,37.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2012,150,11.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2012,150,46.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2012,150,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2012,150,2.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2012,150,2.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2012,150,68.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2012,150,139.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2012,150,38.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2012,150,99.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2012,150,43.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2012,150,13.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2012,150,9.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2012,150,27.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2012,150,11.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2012,150,89.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2012,150,2.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2012,150,28.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2012,150,17.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2012,150,25.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2012,150,12.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2012,150,24.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2012,150,2.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2012,150,1.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2012,150,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2012,150,57.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2012,150,0.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2012,150,13.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2012,150,36.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2012,150,67.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2012,150,46.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2012,150,40.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2012,150,314.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2012,150,29.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2012,150,12.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2012,150,2.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2012,150,199.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2012,150,3.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2012,150,2.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2012,150,2.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2012,150,2.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2012,150,30.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2012,150,8.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2012,150,9.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2012,150,12.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2012,150,21.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2012,150,6.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2012,150,29.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2012,150,37.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2012,150,0.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2012,150,2.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2012,150,39.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2012,150,11.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2012,150,17.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2012,150,15.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2012,150,2.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2012,150,115.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2012,150,253.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2012,150,751.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2012,150,83.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2012,150,28.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2012,150,66.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2012,150,8.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2012,150,4.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2012,150,3.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2012,150,24.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2012,150,10.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2012,150,18.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2012,150,37.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2012,150,3.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2012,150,41.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2012,150,54.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2012,150,6.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2012,150,34.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2012,150,1.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2012,150,70.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2012,150,48.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2012,150,4.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2012,150,6.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2012,150,142.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2012,150,13.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2012,150,31.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2012,150,20.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2012,150,32.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2012,150,63.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2012,150,107.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2012,150,5047.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2012,150,6.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2012,150,31.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2012,150,40.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2012,150,9.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2012,150,3.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2012,150,44.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2012,150,159.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2012,150,3.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2012,150,5.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2012,150,13.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2012,150,1.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2012,150,0.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2012,150,31.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2012,150,5.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2012,150,32.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2012,150,137.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2012,150,27.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,78.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,12.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,0.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,15.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2012,150,15.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2012,150,43.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2012,150,9.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,7.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,18.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,39.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,38.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,276.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,30.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2012,150,117.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2012,150,171.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2012,150,25.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2012,150,214.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2012,150,1873.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2012,150,40.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2012,150,29.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2012,150,22.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2012,150,52.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2012,150,43.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2012,150,14.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2012,150,44.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2012,150,44.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2012,150,14.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2012,150,22.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2012,150,6.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2012,150,8.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2012,150,9.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2012,150,5.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2012,150,2.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2012,150,3.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2012,150,40.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2012,150,4.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2012,150,5.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2012,150,0.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2012,150,27.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2012,150,2.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2012,150,766.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2012,150,18.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2012,150,5.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2012,150,32.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2012,150,102.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2012,150,7.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2012,150,35.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2012,150,12.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2012,150,10.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2012,150,47.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2012,150,37.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2012,150,33.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2012,150,124.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2012,150,12.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2012,150,29.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2012,150,16.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2012,150,46.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2012,150,55.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2012,150,684.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2012,150,200.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2012,150,12.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2012,150,3.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2012,150,7.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2012,150,129.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2012,150,16.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2012,150,92.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2012,150,275.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2012,150,0.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2012,150,20.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2012,150,121.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2012,150,53.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2012,150,2014.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2012,150,33.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2012,150,139.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2012,150,7.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2012,150,6.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,11.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,8.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2012,150,12.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2012,150,12.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,24.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,3.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,9.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,1.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2012,150,207.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2012,150,20.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2012,150,74.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2012,150,22.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2012,150,1.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2012,150,2.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2012,150,27.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2012,150,9.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2012,150,1.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2012,150,0.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2012,150,51.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2012,150,19.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2012,150,210.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2012,150,137.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2012,150,388.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2012,150,24.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2012,150,58.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2012,150,48.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2012,150,163.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2012,150,14.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,8.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,23.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,53.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,601.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2012,150,20.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2012,150,34.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2012,150,101.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2012,150,4.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2012,150,82.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2012,150,56.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2012,150,107.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2012,150,41.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,13.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,1110.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2012,150,279.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,2.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,2.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,22.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2012,150,37.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,1.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2012,150,85.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,1.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,1.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2012,150,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,1.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2012,150,5.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2012,150,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,4.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,58.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,21.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,192.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,66.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2012,150,13.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,11.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,54.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,212.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2012,150,19.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,2.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2012,150,125.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,8.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,59.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,2.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,186.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,6.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,0.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,4.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,355.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,2.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,607.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,57.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,11.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,49.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2012,150,2.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2012,150,1.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,7.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,5.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2012,150,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,2.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,33.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,1.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,2.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,17.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2012,150,145.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2012,150,7.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2012,150,9.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,2.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,18.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,14.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,13.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,80.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,32.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2012,150,5.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2012,150,2.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2012,150,560.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,25.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2012,150,6.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,171.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2012,150,23.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,128.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,17.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,251.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,57.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2012,150,5.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2012,150,11.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2012,150,2.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2012,150,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,38.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,764.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2012,150,137.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2012,150,167.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2012,150,212.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2012,150,6.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2012,150,2.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,50.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2012,150,44.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2012,150,16156.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,9.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,2.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2012,150,3.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,55.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,19.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,0.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,0.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,0.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2012,150,21.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2012,150,105.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2012,150,22.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2012,150,3.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2012,150,6.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2012,150,49.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2012,150,0.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,38.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,45.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,28.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,1.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2012,150,2.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2012,150,1.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2012,150,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2012,150,1.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2012,150,36.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2012,150,3.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2012,150,12.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2012,150,29.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,191.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2012,150,3.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2012,150,8.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2012,150,6.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,191.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,0.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,13.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,2.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2012,150,32.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,1.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,1.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,0.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2012,150,1.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,2.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,1.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,6.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,9.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,4.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,28.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2012,150,210.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,0.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,51.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,7.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2012,150,4.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,12.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,21.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,26.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,5.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,98.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2012,150,2.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2012,150,400.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,12.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,43.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,1.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,1.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,3.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,7.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,17.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,7.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,1.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,8.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,1.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,3.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,21.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,1.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,4.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,15.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,8.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,2.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,3.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,2.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,1.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,3.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,3.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2012,150,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2012,150,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,1.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,1.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,2.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2012,150,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2012,150,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,2.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,1.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2012,150,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,2.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2012,150,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2012,150,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2012,150,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2012,150,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2012,150,0.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2012,150,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,2.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2012,150,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2012,150,54.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2012,150,7.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2012,150,48.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2012,150,198.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2012,150,9.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2012,150,3.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2012,150,63.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2012,150,0.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2012,150,6.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2012,150,37.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2012,150,10.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2012,150,67.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2012,150,23.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2012,150,42.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2012,150,148.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2012,150,40.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,232.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2012,150,684.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,41.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2012,150,59.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,59.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,20.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2012,150,137.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,125.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2012,150,138.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2012,150,80.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,0.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,530.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2012,150,19.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,21.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,74.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,146.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2012,150,0.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2012,150,8.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2012,150,2.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2012,150,13.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2012,150,40.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2012,150,0.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2012,150,46.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2012,150,53.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2012,150,1.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2012,150,2.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2012,150,1436.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2012,150,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2012,150,132.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2012,150,152.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2012,150,103.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2012,150,95.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2012,150,4.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2012,150,7.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2012,150,33.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2012,150,106.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2012,151,6.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2012,151,15.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2012,151,4.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2012,151,6.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2012,151,13.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2012,151,19.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2012,151,133.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2012,151,16.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2012,151,0.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2012,151,1.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2012,151,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2012,151,43.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2012,151,1.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2012,151,35.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2012,151,1.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2012,151,2.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2012,151,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2012,151,2.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2012,151,1.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2012,151,241.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2012,151,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2012,151,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2012,151,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2012,151,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2012,151,1.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2012,151,13.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2012,151,120.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2012,151,21.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2012,151,11.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2012,151,11.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2012,151,20.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2012,151,147.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2012,151,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2012,151,3.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2012,151,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2012,151,45.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2012,151,121.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2012,151,33.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2012,151,38.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2012,151,47.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2012,151,14.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2012,151,9.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2012,151,43.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2012,151,12.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2012,151,83.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2012,151,8.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2012,151,47.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2012,151,26.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2012,151,3.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2012,151,10.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2012,151,6.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2012,151,2.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2012,151,8.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2012,151,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2012,151,87.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2012,151,3.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2012,151,9.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2012,151,48.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2012,151,55.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2012,151,15.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2012,151,23.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2012,151,168.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2012,151,5.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2012,151,9.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2012,151,4.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2012,151,150.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2012,151,3.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2012,151,3.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2012,151,0.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2012,151,2.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2012,151,51.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2012,151,7.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2012,151,8.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2012,151,1.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2012,151,8.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2012,151,1.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2012,151,35.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2012,151,1.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2012,151,0.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2012,151,1.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2012,151,10.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2012,151,3.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2012,151,0.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2012,151,2.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2012,151,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2012,151,27.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2012,151,267.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2012,151,330.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2012,151,40.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2012,151,17.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2012,151,11.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2012,151,2.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2012,151,5.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2012,151,2.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2012,151,7.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2012,151,6.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2012,151,5.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2012,151,9.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2012,151,6.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2012,151,15.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2012,151,28.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2012,151,0.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2012,151,13.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2012,151,1.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2012,151,26.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2012,151,16.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2012,151,1.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2012,151,0.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2012,151,25.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2012,151,7.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2012,151,22.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2012,151,49.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2012,151,32.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2012,151,35.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2012,151,71.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2012,151,1322.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2012,151,10.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2012,151,7.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2012,151,41.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2012,151,32.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2012,151,9.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2012,151,30.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2012,151,32.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2012,151,3.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2012,151,1.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2012,151,4.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2012,151,2.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2012,151,1.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2012,151,4.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2012,151,3.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2012,151,5.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2012,151,21.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2012,151,25.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,40.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,9.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,0.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,6.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2012,151,12.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2012,151,55.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2012,151,2.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,8.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,10.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,34.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,30.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,83.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,20.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2012,151,62.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2012,151,187.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2012,151,18.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2012,151,103.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2012,151,1345.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2012,151,97.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2012,151,11.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2012,151,9.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2012,151,22.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2012,151,31.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2012,151,23.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2012,151,5.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2012,151,7.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2012,151,19.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2012,151,3.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2012,151,5.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2012,151,5.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2012,151,4.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2012,151,2.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2012,151,2.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2012,151,15.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2012,151,30.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2012,151,4.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2012,151,2.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2012,151,0.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2012,151,10.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2012,151,3.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2012,151,790.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2012,151,20.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2012,151,3.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2012,151,27.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2012,151,39.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2012,151,4.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2012,151,9.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2012,151,4.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2012,151,1.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2012,151,18.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2012,151,29.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2012,151,19.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2012,151,107.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2012,151,7.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2012,151,19.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2012,151,10.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2012,151,48.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2012,151,47.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2012,151,641.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2012,151,193.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2012,151,5.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2012,151,2.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2012,151,4.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2012,151,38.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2012,151,14.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2012,151,78.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2012,151,171.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2012,151,1.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2012,151,6.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2012,151,91.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2012,151,47.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2012,151,2028.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2012,151,92.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2012,151,132.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2012,151,8.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2012,151,15.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,5.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,11.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2012,151,8.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2012,151,4.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,11.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,1.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,7.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,4.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2012,151,166.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2012,151,15.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2012,151,53.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2012,151,34.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2012,151,4.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2012,151,0.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2012,151,20.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2012,151,16.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2012,151,2.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2012,151,1.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2012,151,34.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2012,151,7.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2012,151,99.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2012,151,82.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2012,151,244.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2012,151,17.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2012,151,22.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2012,151,29.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2012,151,104.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2012,151,13.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,3.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,22.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,55.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,562.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2012,151,10.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2012,151,26.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2012,151,84.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2012,151,4.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2012,151,51.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2012,151,43.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2012,151,60.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2012,151,34.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,2.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,507.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2012,151,270.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,0.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,2.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,10.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2012,151,30.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,1.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2012,151,60.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,5.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,0.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2012,151,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,1.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2012,151,4.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2012,151,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,2.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,23.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,45.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,60.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,16.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2012,151,4.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,2.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,15.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,92.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2012,151,17.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,0.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2012,151,58.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,3.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,23.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,1.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,90.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,2.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,1.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,0.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,187.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,0.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,304.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,36.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,43.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,15.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2012,151,0.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2012,151,1.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,1.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,1.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,3.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,1.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2012,151,1.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,1.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,1.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,7.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,5.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,1.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,6.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2012,151,41.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2012,151,3.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2012,151,2.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,1.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,15.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,16.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,17.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,64.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,29.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2012,151,4.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2012,151,1.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2012,151,556.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,30.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2012,151,4.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,85.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2012,151,11.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,63.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,4.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,156.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,24.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2012,151,0.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2012,151,1.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2012,151,2.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2012,151,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,25.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,333.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2012,151,66.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2012,151,33.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2012,151,85.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2012,151,2.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2012,151,2.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,9.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2012,151,21.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2012,151,4418.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,7.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,3.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2012,151,2.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,16.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,11.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,0.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,0.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,1.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2012,151,12.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2012,151,23.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2012,151,13.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2012,151,3.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2012,151,2.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2012,151,27.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2012,151,0.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,11.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,8.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,3.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,3.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2012,151,2.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2012,151,1.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2012,151,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2012,151,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2012,151,12.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2012,151,3.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2012,151,3.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2012,151,8.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,40.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2012,151,1.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2012,151,0.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2012,151,5.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,55.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,5.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,1.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2012,151,13.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,1.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,0.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2012,151,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,3.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,4.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,6.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,2.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,12.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2012,151,33.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,36.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,4.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2012,151,7.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,3.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,5.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,8.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,6.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,64.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2012,151,0.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2012,151,162.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,1.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,10.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,1.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,1.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,11.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,1.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,4.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,5.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,3.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,3.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,9.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,9.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,1.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,3.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2012,151,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2012,151,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,1.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,2.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2012,151,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2012,151,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2012,151,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2012,151,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2012,151,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2012,151,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2012,151,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2012,151,1.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2012,151,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,1.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,1.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2012,151,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2012,151,9.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2012,151,2.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2012,151,17.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2012,151,120.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2012,151,1.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2012,151,1.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2012,151,22.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2012,151,2.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2012,151,1.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2012,151,16.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2012,151,5.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2012,151,62.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2012,151,18.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2012,151,30.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2012,151,65.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2012,151,21.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,191.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2012,151,541.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,51.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2012,151,43.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,43.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,27.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2012,151,82.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,76.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2012,151,90.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2012,151,23.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,2.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,190.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2012,151,25.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,11.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,115.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,92.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2012,151,0.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2012,151,5.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2012,151,3.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2012,151,12.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2012,151,26.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2012,151,0.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2012,151,17.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2012,151,23.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2012,151,1.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2012,151,0.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2012,151,911.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2012,151,1.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2012,151,112.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2012,151,31.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2012,151,68.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2012,151,62.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2012,151,0.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2012,151,3.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2012,151,18.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2012,151,91.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2012,152,7.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2012,152,17.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2012,152,3.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2012,152,1.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2012,152,3.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2012,152,41.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2012,152,96.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2012,152,10.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2012,152,0.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2012,152,0.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2012,152,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2012,152,32.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2012,152,3.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2012,152,23.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2012,152,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2012,152,16.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2012,152,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2012,152,1.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2012,152,0.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2012,152,154.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2012,152,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2012,152,1.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2012,152,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2012,152,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2012,152,0.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2012,152,1.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2012,152,143.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2012,152,91.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2012,152,9.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2012,152,11.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2012,152,32.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2012,152,254.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2012,152,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2012,152,50.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2012,152,1.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2012,152,59.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2012,152,105.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2012,152,34.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2012,152,54.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2012,152,39.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2012,152,26.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2012,152,5.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2012,152,31.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2012,152,15.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2012,152,87.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2012,152,5.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2012,152,21.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2012,152,18.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2012,152,5.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2012,152,13.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2012,152,3.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2012,152,2.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2012,152,6.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2012,152,1.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2012,152,260.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2012,152,4.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2012,152,5.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2012,152,19.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2012,152,18.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2012,152,18.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2012,152,11.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2012,152,87.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2012,152,5.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2012,152,3.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2012,152,3.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2012,152,144.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2012,152,6.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2012,152,2.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2012,152,1.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2012,152,5.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2012,152,41.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2012,152,1.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2012,152,10.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2012,152,2.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2012,152,3.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2012,152,0.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2012,152,14.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2012,152,2.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2012,152,0.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2012,152,1.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2012,152,6.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2012,152,3.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2012,152,0.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2012,152,1.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2012,152,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2012,152,2.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2012,152,135.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2012,152,178.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2012,152,68.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2012,152,7.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2012,152,6.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2012,152,2.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2012,152,0.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2012,152,4.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2012,152,3.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2012,152,5.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2012,152,7.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2012,152,2.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2012,152,0.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2012,152,8.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2012,152,11.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2012,152,3.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2012,152,8.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2012,152,1.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2012,152,4.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2012,152,33.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2012,152,0.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2012,152,8.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2012,152,5.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2012,152,6.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2012,152,8.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2012,152,59.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2012,152,18.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2012,152,16.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2012,152,24.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2012,152,439.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2012,152,10.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2012,152,16.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2012,152,39.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2012,152,7.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2012,152,9.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2012,152,7.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2012,152,3.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2012,152,2.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2012,152,1.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2012,152,6.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2012,152,1.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2012,152,1.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2012,152,2.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2012,152,2.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2012,152,1.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2012,152,4.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2012,152,0.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,28.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,4.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,0.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,4.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2012,152,1.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2012,152,114.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2012,152,10.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,1.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,0.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,18.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,50.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,55.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,5.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2012,152,17.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2012,152,108.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2012,152,9.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2012,152,58.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2012,152,730.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2012,152,33.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2012,152,5.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2012,152,12.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2012,152,10.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2012,152,24.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2012,152,23.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2012,152,2.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2012,152,8.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2012,152,11.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2012,152,2.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2012,152,3.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2012,152,4.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2012,152,4.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2012,152,1.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2012,152,0.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2012,152,9.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2012,152,36.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2012,152,12.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2012,152,7.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2012,152,0.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2012,152,4.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2012,152,14.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2012,152,677.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2012,152,20.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2012,152,4.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2012,152,9.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2012,152,12.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2012,152,0.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2012,152,3.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2012,152,5.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2012,152,0.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2012,152,6.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2012,152,13.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2012,152,4.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2012,152,55.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2012,152,1.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2012,152,10.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2012,152,5.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2012,152,9.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2012,152,13.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2012,152,338.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2012,152,73.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2012,152,0.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2012,152,5.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2012,152,2.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2012,152,7.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2012,152,11.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2012,152,72.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2012,152,125.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2012,152,0.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2012,152,3.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2012,152,32.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2012,152,34.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2012,152,1593.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2012,152,46.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2012,152,106.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2012,152,4.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2012,152,7.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,3.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,4.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2012,152,7.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2012,152,1.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,10.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,0.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,2.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,7.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2012,152,101.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2012,152,7.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2012,152,15.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2012,152,9.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2012,152,0.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2012,152,2.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2012,152,8.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2012,152,3.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2012,152,2.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2012,152,2.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2012,152,20.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2012,152,8.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2012,152,31.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2012,152,101.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2012,152,202.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2012,152,13.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2012,152,11.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2012,152,16.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2012,152,51.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2012,152,5.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,1.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,13.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,25.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,328.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2012,152,1.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2012,152,18.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2012,152,81.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2012,152,0.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2012,152,33.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2012,152,18.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2012,152,33.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2012,152,20.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,7.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,239.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2012,152,152.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,2.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,1.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,14.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2012,152,23.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,0.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,3.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2012,152,29.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,1.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,1.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2012,152,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,0.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2012,152,9.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2012,152,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,4.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,8.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,31.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,17.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,24.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2012,152,4.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,0.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,16.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,51.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2012,152,6.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,0.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2012,152,11.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,0.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,9.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,1.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,3.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,41.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,1.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,1.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,114.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,0.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,154.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,16.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,21.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,1.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,10.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2012,152,0.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2012,152,1.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,1.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,1.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,4.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,3.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,0.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,0.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2012,152,16.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2012,152,1.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2012,152,4.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,0.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,14.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,13.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,10.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,34.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,18.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2012,152,4.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2012,152,401.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,25.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2012,152,5.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,40.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2012,152,1.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,20.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,9.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,77.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,21.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2012,152,1.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2012,152,2.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2012,152,1.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2012,152,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,21.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,371.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2012,152,56.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2012,152,21.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2012,152,28.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2012,152,2.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2012,152,2.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,16.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2012,152,6.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2012,152,2279.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,4.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,1.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2012,152,14.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,17.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,5.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,1.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,2.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,0.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2012,152,7.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2012,152,6.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2012,152,8.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2012,152,0.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2012,152,0.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2012,152,18.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2012,152,1.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,8.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,7.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,3.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,0.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2012,152,1.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2012,152,0.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2012,152,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2012,152,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2012,152,16.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2012,152,0.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2012,152,1.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2012,152,4.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,16.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2012,152,0.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2012,152,3.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2012,152,7.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,32.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,1.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,3.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2012,152,8.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,1.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,1.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2012,152,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,4.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,7.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,1.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,6.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2012,152,11.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,1.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,27.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,5.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2012,152,0.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,2.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,1.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,7.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,1.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,35.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2012,152,1.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2012,152,72.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,2.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,6.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,1.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,2.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,4.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,1.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,5.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,21.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,4.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,2.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,3.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,2.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,3.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,1.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2012,152,1.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2012,152,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,1.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,1.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2012,152,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2012,152,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2012,152,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2012,152,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2012,152,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2012,152,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2012,152,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2012,152,0.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,1.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2012,152,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,1.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2012,152,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2012,152,7.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2012,152,1.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2012,152,23.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2012,152,65.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2012,152,1.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2012,152,0.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2012,152,6.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2012,152,6.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2012,152,1.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2012,152,8.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2012,152,8.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2012,152,43.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2012,152,33.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2012,152,16.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2012,152,33.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2012,152,10.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,49.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2012,152,315.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,49.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2012,152,28.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,45.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,33.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2012,152,46.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,33.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2012,152,59.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2012,152,10.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,6.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,104.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2012,152,19.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,7.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,62.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,63.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2012,152,1.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2012,152,7.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2012,152,1.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2012,152,8.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2012,152,15.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2012,152,1.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2012,152,10.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2012,152,25.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2012,152,1.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2012,152,2.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2012,152,739.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2012,152,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2012,152,30.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2012,152,31.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2012,152,42.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2012,152,49.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2012,152,0.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2012,152,2.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2012,152,6.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2012,152,77.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2012,153,10.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2012,153,28.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2012,153,2.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2012,153,1.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2012,153,3.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2012,153,16.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2012,153,27.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2012,153,4.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2012,153,0.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2012,153,0.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2012,153,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2012,153,27.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2012,153,13.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2012,153,28.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2012,153,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2012,153,26.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2012,153,1.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2012,153,0.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2012,153,1.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2012,153,148.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2012,153,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2012,153,1.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2012,153,1.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2012,153,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2012,153,2.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2012,153,0.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2012,153,56.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2012,153,44.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2012,153,7.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2012,153,5.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2012,153,80.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2012,153,122.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2012,153,1.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2012,153,6.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2012,153,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2012,153,25.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2012,153,68.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2012,153,12.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2012,153,38.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2012,153,25.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2012,153,25.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2012,153,8.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2012,153,18.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2012,153,9.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2012,153,67.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2012,153,5.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2012,153,17.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2012,153,25.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2012,153,3.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2012,153,4.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2012,153,6.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2012,153,3.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2012,153,39.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2012,153,0.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2012,153,304.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2012,153,1.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2012,153,5.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2012,153,33.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2012,153,13.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2012,153,8.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2012,153,6.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2012,153,52.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2012,153,4.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2012,153,2.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2012,153,1.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2012,153,109.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2012,153,1.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2012,153,6.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2012,153,1.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2012,153,0.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2012,153,19.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2012,153,0.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2012,153,6.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2012,153,3.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2012,153,2.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2012,153,3.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2012,153,1.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2012,153,0.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2012,153,1.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2012,153,0.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2012,153,3.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2012,153,2.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2012,153,2.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2012,153,0.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2012,153,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2012,153,2.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2012,153,34.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2012,153,87.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2012,153,32.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2012,153,2.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2012,153,1.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2012,153,1.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2012,153,1.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2012,153,2.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2012,153,1.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2012,153,10.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2012,153,2.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2012,153,4.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2012,153,1.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2012,153,0.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2012,153,5.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2012,153,0.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2012,153,2.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2012,153,1.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2012,153,3.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2012,153,27.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2012,153,0.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2012,153,0.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2012,153,8.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2012,153,1.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2012,153,3.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2012,153,33.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2012,153,7.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2012,153,3.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2012,153,8.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2012,153,195.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2012,153,17.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2012,153,7.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2012,153,47.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2012,153,11.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2012,153,5.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2012,153,2.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2012,153,8.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2012,153,0.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2012,153,4.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2012,153,0.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2012,153,0.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2012,153,0.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2012,153,0.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2012,153,0.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2012,153,0.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2012,153,4.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2012,153,1.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,9.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,0.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,1.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,1.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2012,153,1.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2012,153,110.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2012,153,6.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,3.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,0.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,3.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,33.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,11.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,0.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2012,153,22.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2012,153,36.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2012,153,1.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2012,153,26.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2012,153,261.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2012,153,5.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2012,153,2.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2012,153,4.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2012,153,1.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2012,153,4.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2012,153,5.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2012,153,2.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2012,153,5.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2012,153,9.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2012,153,0.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2012,153,5.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2012,153,3.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2012,153,0.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2012,153,3.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2012,153,0.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2012,153,4.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2012,153,23.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2012,153,2.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2012,153,0.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2012,153,0.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2012,153,5.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2012,153,4.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2012,153,309.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2012,153,4.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2012,153,1.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2012,153,3.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2012,153,3.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2012,153,2.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2012,153,6.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2012,153,2.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2012,153,1.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2012,153,6.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2012,153,6.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2012,153,5.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2012,153,8.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2012,153,4.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2012,153,4.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2012,153,6.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2012,153,2.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2012,153,13.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2012,153,167.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2012,153,30.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2012,153,0.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2012,153,2.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2012,153,7.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2012,153,9.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2012,153,2.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2012,153,54.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2012,153,80.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2012,153,2.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2012,153,6.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2012,153,21.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2012,153,13.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2012,153,877.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2012,153,42.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2012,153,87.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2012,153,2.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2012,153,3.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,1.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,0.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2012,153,2.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2012,153,6.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,9.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,0.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,0.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,3.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2012,153,62.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2012,153,6.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2012,153,7.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2012,153,7.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2012,153,0.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2012,153,1.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2012,153,7.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2012,153,9.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2012,153,0.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2012,153,2.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2012,153,51.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2012,153,13.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2012,153,22.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2012,153,54.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2012,153,90.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2012,153,10.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2012,153,6.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2012,153,7.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2012,153,37.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2012,153,3.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,2.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,3.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,10.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,191.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2012,153,7.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2012,153,19.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2012,153,42.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2012,153,0.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2012,153,10.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2012,153,10.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2012,153,12.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2012,153,15.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,1.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,138.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2012,153,58.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,5.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,2.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,5.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2012,153,7.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,2.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2012,153,27.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,0.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,0.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2012,153,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,0.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2012,153,5.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2012,153,1.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,0.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,26.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,18.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,5.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,20.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2012,153,2.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,2.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,7.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,20.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2012,153,2.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,0.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2012,153,5.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,0.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,4.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,1.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,61.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,3.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,4.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,0.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,118.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,4.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,134.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,7.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,15.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,0.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,10.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2012,153,0.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2012,153,0.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,2.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,1.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,3.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,0.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,3.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2012,153,10.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2012,153,3.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,0.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,6.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,8.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,7.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,22.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,10.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2012,153,3.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2012,153,467.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,16.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2012,153,1.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,37.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2012,153,4.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,15.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,9.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,58.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,8.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2012,153,1.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2012,153,1.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2012,153,0.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,10.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,173.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2012,153,31.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2012,153,12.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2012,153,26.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,12.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2012,153,6.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2012,153,1188.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,3.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,2.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2012,153,4.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,8.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,4.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,0.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,0.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,1.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2012,153,16.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2012,153,2.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2012,153,5.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2012,153,4.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2012,153,3.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2012,153,14.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2012,153,0.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,7.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,3.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,1.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,2.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2012,153,0.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2012,153,0.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2012,153,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2012,153,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2012,153,3.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2012,153,0.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2012,153,0.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2012,153,3.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,10.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2012,153,0.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2012,153,0.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2012,153,0.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,35.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,2.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,2.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,1.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2012,153,11.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,1.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2012,153,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,2.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,1.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,1.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,4.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2012,153,2.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,23.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,1.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2012,153,0.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,1.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,32.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2012,153,0.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2012,153,46.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,3.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,5.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,3.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,1.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,5.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,11.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,1.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,3.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,3.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,5.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,2.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,1.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2012,153,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2012,153,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2012,153,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2012,153,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2012,153,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2012,153,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2012,153,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2012,153,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2012,153,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2012,153,0.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2012,153,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2012,153,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2012,153,7.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2012,153,2.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2012,153,32.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2012,153,75.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2012,153,2.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2012,153,1.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2012,153,0.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2012,153,79.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2012,153,0.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2012,153,5.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2012,153,5.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2012,153,35.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2012,153,18.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2012,153,16.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2012,153,32.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2012,153,5.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,22.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2012,153,151.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,34.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2012,153,12.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,58.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,6.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2012,153,51.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,13.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2012,153,15.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2012,153,4.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,1.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,51.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2012,153,4.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,9.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,8.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,18.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2012,153,1.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2012,153,6.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2012,153,3.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2012,153,2.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2012,153,16.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2012,153,0.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2012,153,6.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2012,153,18.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2012,153,1.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2012,153,0.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2012,153,862.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2012,153,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2012,153,23.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2012,153,5.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2012,153,14.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2012,153,41.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2012,153,0.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2012,153,0.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2012,153,13.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2012,153,51.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2012,154,11.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2012,154,35.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2012,154,7.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2012,154,7.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2012,154,2.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2012,154,17.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2012,154,89.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2012,154,2.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2012,154,0.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2012,154,1.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2012,154,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2012,154,74.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2012,154,32.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2012,154,9.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2012,154,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2012,154,114.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2012,154,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2012,154,0.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2012,154,2.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2012,154,150.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2012,154,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2012,154,1.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2012,154,1.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2012,154,0.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2012,154,3.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2012,154,1.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2012,154,41.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2012,154,6.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2012,154,5.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2012,154,10.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2012,154,112.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2012,154,37.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2012,154,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2012,154,8.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2012,154,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2012,154,13.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2012,154,58.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2012,154,11.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2012,154,6.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2012,154,28.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2012,154,15.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2012,154,3.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2012,154,21.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2012,154,34.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2012,154,26.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2012,154,1.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2012,154,5.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2012,154,31.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2012,154,4.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2012,154,4.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2012,154,3.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2012,154,5.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2012,154,69.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2012,154,1.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2012,154,190.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2012,154,4.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2012,154,12.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2012,154,52.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2012,154,15.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2012,154,14.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2012,154,20.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2012,154,101.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2012,154,3.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2012,154,6.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2012,154,3.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2012,154,37.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2012,154,1.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2012,154,8.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2012,154,0.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2012,154,1.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2012,154,10.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2012,154,0.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2012,154,14.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2012,154,2.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2012,154,11.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2012,154,4.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2012,154,1.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2012,154,2.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2012,154,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2012,154,1.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2012,154,10.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2012,154,86.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2012,154,22.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2012,154,0.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2012,154,1.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2012,154,0.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2012,154,0.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2012,154,1.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2012,154,1.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2012,154,3.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2012,154,0.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2012,154,2.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2012,154,0.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2012,154,0.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2012,154,21.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2012,154,0.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2012,154,2.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2012,154,18.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2012,154,10.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2012,154,3.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2012,154,8.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2012,154,140.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2012,154,2.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2012,154,7.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2012,154,31.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2012,154,52.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2012,154,2.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2012,154,2.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2012,154,2.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2012,154,1.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2012,154,4.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2012,154,0.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2012,154,2.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2012,154,0.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2012,154,1.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2012,154,6.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2012,154,2.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,13.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,0.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,1.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,1.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2012,154,6.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2012,154,88.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2012,154,4.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,3.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,1.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,3.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,44.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,13.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,2.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2012,154,16.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2012,154,12.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2012,154,0.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2012,154,13.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2012,154,132.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2012,154,3.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2012,154,0.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2012,154,18.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2012,154,0.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2012,154,3.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2012,154,4.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2012,154,2.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2012,154,3.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2012,154,7.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2012,154,0.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2012,154,3.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2012,154,0.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2012,154,2.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2012,154,1.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2012,154,3.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2012,154,2.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2012,154,7.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2012,154,4.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2012,154,1.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2012,154,1.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2012,154,4.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2012,154,2.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2012,154,152.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2012,154,12.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2012,154,2.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2012,154,2.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2012,154,2.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2012,154,3.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2012,154,6.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2012,154,3.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2012,154,2.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2012,154,3.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2012,154,1.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2012,154,5.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2012,154,8.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2012,154,2.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2012,154,5.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2012,154,7.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2012,154,6.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2012,154,19.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2012,154,169.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2012,154,21.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2012,154,0.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2012,154,3.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2012,154,3.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2012,154,6.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2012,154,1.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2012,154,9.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2012,154,57.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2012,154,2.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2012,154,5.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2012,154,22.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2012,154,9.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2012,154,377.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2012,154,11.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2012,154,53.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2012,154,4.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2012,154,1.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,0.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,3.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2012,154,3.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2012,154,11.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,3.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,2.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,4.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,7.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2012,154,42.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2012,154,0.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2012,154,8.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2012,154,4.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2012,154,2.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2012,154,1.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2012,154,5.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2012,154,5.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2012,154,0.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2012,154,1.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2012,154,33.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2012,154,7.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2012,154,21.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2012,154,42.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2012,154,46.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2012,154,3.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2012,154,7.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2012,154,4.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2012,154,25.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2012,154,5.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,1.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,10.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,6.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,153.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2012,154,3.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2012,154,9.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2012,154,57.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2012,154,0.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2012,154,21.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2012,154,26.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2012,154,16.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2012,154,4.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,1.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,124.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2012,154,57.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,2.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,0.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,6.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2012,154,2.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,6.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2012,154,26.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,0.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,2.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2012,154,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,0.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2012,154,10.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2012,154,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,3.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,50.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,23.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,7.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,32.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2012,154,3.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,4.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,8.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,69.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2012,154,7.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,1.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2012,154,4.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,4.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,10.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,1.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,0.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,83.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,4.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,3.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,2.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,3.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,95.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,1.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,138.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,3.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,14.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,0.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,29.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2012,154,2.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,1.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2012,154,0.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,1.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,2.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,1.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,1.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,3.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,4.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,0.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,1.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2012,154,1.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2012,154,3.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2012,154,3.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,0.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,1.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,6.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,4.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,14.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,7.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2012,154,1.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2012,154,627.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,13.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2012,154,1.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,44.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2012,154,4.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,16.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,103.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,34.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,10.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2012,154,1.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2012,154,0.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2012,154,0.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,6.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,22.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2012,154,34.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2012,154,9.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2012,154,22.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2012,154,1.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,19.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2012,154,2.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2012,154,1069.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,2.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,4.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2012,154,4.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,27.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,1.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,1.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,1.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,1.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2012,154,14.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2012,154,13.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2012,154,13.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2012,154,3.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2012,154,13.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2012,154,14.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2012,154,0.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,14.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,8.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,4.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,0.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2012,154,0.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2012,154,2.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2012,154,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2012,154,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2012,154,9.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2012,154,1.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2012,154,0.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2012,154,8.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,4.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2012,154,0.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2012,154,0.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2012,154,1.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,45.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,1.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,3.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,2.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2012,154,75.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,1.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2012,154,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,4.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,3.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,11.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2012,154,5.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,1.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,34.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,2.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2012,154,0.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,1.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,0.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,8.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,2.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,45.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2012,154,1.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2012,154,78.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,5.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,7.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,1.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,5.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,2.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,16.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,1.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,1.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,22.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,2.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,1.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,5.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,5.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,2.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,1.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,1.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2012,154,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2012,154,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,1.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2012,154,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2012,154,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2012,154,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2012,154,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2012,154,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2012,154,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2012,154,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2012,154,0.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2012,154,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,1.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2012,154,0.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2012,154,2.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2012,154,5.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2012,154,19.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2012,154,111.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2012,154,1.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2012,154,0.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2012,154,0.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2012,154,43.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2012,154,56.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2012,154,14.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2012,154,4.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2012,154,61.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2012,154,58.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2012,154,15.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2012,154,71.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2012,154,10.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,36.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2012,154,273.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,45.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2012,154,12.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,107.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,22.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2012,154,87.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,23.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2012,154,25.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2012,154,8.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,2.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,41.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2012,154,28.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,8.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,9.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,14.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2012,154,2.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2012,154,8.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2012,154,1.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2012,154,23.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2012,154,23.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2012,154,0.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2012,154,16.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2012,154,37.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2012,154,1.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2012,154,2.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2012,154,1026.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2012,154,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2012,154,25.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2012,154,14.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2012,154,10.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2012,154,101.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2012,154,2.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2012,154,1.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2012,154,18.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2012,154,52.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2012,155,41.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2012,155,82.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2012,155,7.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2012,155,14.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2012,155,7.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2012,155,40.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2012,155,102.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2012,155,13.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2012,155,0.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2012,155,0.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2012,155,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2012,155,184.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2012,155,105.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2012,155,19.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2012,155,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2012,155,144.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2012,155,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2012,155,0.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2012,155,2.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2012,155,256.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2012,155,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2012,155,0.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2012,155,1.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2012,155,2.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2012,155,1.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2012,155,11.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2012,155,18.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2012,155,14.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2012,155,9.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2012,155,25.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2012,155,268.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2012,155,31.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2012,155,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2012,155,18.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2012,155,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2012,155,5.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2012,155,56.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2012,155,4.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2012,155,12.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2012,155,19.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2012,155,14.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2012,155,5.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2012,155,27.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2012,155,122.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2012,155,48.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2012,155,20.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2012,155,3.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2012,155,70.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2012,155,15.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2012,155,4.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2012,155,9.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2012,155,30.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2012,155,59.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2012,155,1.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2012,155,124.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2012,155,18.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2012,155,20.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2012,155,74.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2012,155,25.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2012,155,24.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2012,155,86.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2012,155,136.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2012,155,0.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2012,155,3.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2012,155,0.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2012,155,21.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2012,155,0.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2012,155,2.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2012,155,0.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2012,155,2.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2012,155,1.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2012,155,0.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2012,155,9.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2012,155,0.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2012,155,4.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2012,155,0.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2012,155,9.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2012,155,2.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2012,155,1.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2012,155,0.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2012,155,2.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2012,155,1.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2012,155,0.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2012,155,3.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2012,155,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2012,155,1.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2012,155,7.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2012,155,86.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2012,155,14.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2012,155,0.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2012,155,0.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2012,155,1.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2012,155,0.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2012,155,0.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2012,155,1.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2012,155,6.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2012,155,1.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2012,155,6.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2012,155,0.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2012,155,4.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2012,155,3.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2012,155,28.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2012,155,1.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2012,155,1.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2012,155,2.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2012,155,13.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2012,155,2.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2012,155,1.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2012,155,1.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2012,155,116.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2012,155,2.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2012,155,7.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2012,155,19.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2012,155,149.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2012,155,11.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2012,155,2.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2012,155,2.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2012,155,1.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2012,155,0.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2012,155,1.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2012,155,1.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2012,155,1.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2012,155,0.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2012,155,12.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2012,155,2.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,9.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,0.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,1.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,3.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2012,155,5.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2012,155,123.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2012,155,9.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,3.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,1.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,8.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,55.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,20.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,3.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2012,155,4.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2012,155,13.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2012,155,0.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2012,155,4.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2012,155,128.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2012,155,1.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2012,155,0.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2012,155,12.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2012,155,1.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2012,155,1.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2012,155,0.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2012,155,9.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2012,155,1.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2012,155,3.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2012,155,0.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2012,155,0.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2012,155,2.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2012,155,0.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2012,155,2.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2012,155,0.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2012,155,1.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2012,155,7.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2012,155,3.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2012,155,0.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2012,155,0.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2012,155,5.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2012,155,0.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2012,155,83.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2012,155,0.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2012,155,1.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2012,155,4.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2012,155,3.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2012,155,2.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2012,155,1.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2012,155,0.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2012,155,0.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2012,155,2.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2012,155,4.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2012,155,4.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2012,155,11.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2012,155,1.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2012,155,8.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2012,155,5.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2012,155,6.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2012,155,4.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2012,155,217.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2012,155,12.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2012,155,0.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2012,155,2.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2012,155,8.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2012,155,3.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2012,155,0.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2012,155,1.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2012,155,79.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2012,155,0.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2012,155,1.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2012,155,11.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2012,155,2.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2012,155,367.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2012,155,14.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2012,155,27.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2012,155,1.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2012,155,0.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,0.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,4.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2012,155,8.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2012,155,3.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,1.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,0.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,3.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,0.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2012,155,18.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2012,155,3.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2012,155,0.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2012,155,4.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2012,155,2.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2012,155,3.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2012,155,16.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2012,155,10.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2012,155,0.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2012,155,0.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2012,155,29.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2012,155,209.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2012,155,20.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2012,155,33.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2012,155,57.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2012,155,5.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2012,155,13.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2012,155,7.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2012,155,38.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2012,155,4.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,0.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,2.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,11.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,123.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2012,155,13.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2012,155,12.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2012,155,111.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2012,155,2.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2012,155,54.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2012,155,39.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2012,155,22.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2012,155,16.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,1.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,111.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2012,155,58.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,2.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,2.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,34.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2012,155,34.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,1.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,29.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2012,155,28.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,1.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,0.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2012,155,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,0.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2012,155,48.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2012,155,0.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,1.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,45.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,25.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,11.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,40.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2012,155,0.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,5.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,19.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,164.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2012,155,5.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,4.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2012,155,16.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,3.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,11.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,1.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,61.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,6.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,1.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,8.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,110.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,2.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,312.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,5.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,72.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,0.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,26.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2012,155,2.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,1.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,1.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2012,155,1.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,1.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,5.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,1.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,4.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,7.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,0.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,2.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2012,155,2.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2012,155,6.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2012,155,11.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,0.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,3.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,4.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,8.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,21.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,8.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2012,155,4.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2012,155,2.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2012,155,814.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,15.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2012,155,4.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,21.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2012,155,1.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,36.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,336.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,67.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,18.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2012,155,6.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2012,155,2.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2012,155,2.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2012,155,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,11.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,57.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2012,155,38.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2012,155,37.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2012,155,18.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2012,155,1.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,21.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2012,155,6.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2012,155,1133.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,7.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,2.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2012,155,9.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,62.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,4.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,0.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,2.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,1.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2012,155,31.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2012,155,40.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2012,155,58.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2012,155,2.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2012,155,18.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2012,155,23.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2012,155,0.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,31.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,7.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,4.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,1.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2012,155,1.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2012,155,2.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2012,155,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2012,155,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2012,155,8.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2012,155,0.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2012,155,3.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2012,155,14.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,9.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2012,155,0.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2012,155,3.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2012,155,9.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,83.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,8.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,2.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2012,155,120.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,0.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,1.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,1.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2012,155,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,1.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,0.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,36.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,10.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,2.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,7.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2012,155,10.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,1.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,12.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,9.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2012,155,3.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,6.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,4.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,1.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,36.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2012,155,0.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2012,155,143.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,48.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,8.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,44.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,6.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,23.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,3.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,3.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,18.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,17.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,4.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,13.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,6.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,1.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2012,155,1.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2012,155,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,2.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2012,155,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2012,155,0.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,1.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2012,155,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2012,155,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2012,155,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2012,155,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2012,155,1.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2012,155,0.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2012,155,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,1.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,1.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,1.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2012,155,1.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2012,155,10.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2012,155,78.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2012,155,48.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2012,155,322.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2012,155,1.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2012,155,1.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2012,155,8.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2012,155,57.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2012,155,438.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2012,155,56.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2012,155,54.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2012,155,44.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2012,155,244.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2012,155,177.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2012,155,130.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2012,155,10.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,113.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2012,155,285.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,53.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2012,155,69.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,174.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,58.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2012,155,83.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,44.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2012,155,25.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2012,155,5.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,14.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,100.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2012,155,58.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,16.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,46.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,28.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2012,155,12.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2012,155,23.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2012,155,2.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2012,155,26.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2012,155,51.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2012,155,0.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2012,155,92.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2012,155,58.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2012,155,3.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2012,155,5.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2012,155,1341.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2012,155,0.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2012,155,42.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2012,155,22.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2012,155,54.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2012,155,111.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2012,155,4.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2012,155,0.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2012,155,3.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2012,155,53.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2012,156,46.0,559543.0,8.52906170045979,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2012,156,98.0,73193.0,1.79586958394491,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2012,156,8.0,176003.0,7.22538189325453,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2012,156,30.0,294157.0,11.7332565780049,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2012,156,44.0,69841.0,4.36928368653299,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2012,156,78.0,228654.0,9.31316231017803,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2012,156,107.0,136730.0,5.1182738974096,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2012,156,29.0,51890.0,3.5412361798688,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2012,156,2.0,135803.0,4.25175085901196,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2012,156,1.0,76221.0,1.42473136235301,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2012,156,0.0,52651.0,1.29837253175139,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2012,156,401.0,433224.0,19.4613295912795,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2012,156,110.0,60887.0,3.83374679380983,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2012,156,38.0,99826.0,0.300414025321493,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2012,156,0.0,25044.0,0.344831899672405,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2012,156,109.0,231482.0,1.0854318987047,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2012,156,0.0,131695.0,1.16929337249241,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2012,156,0.0,87520.0,2.19363139622409,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2012,156,1.0,156671.0,1.39764430369832,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2012,156,529.0,2106861.0,51.0178515388475,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2012,156,0.0,55600.0,1.78384018300784,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2012,156,4.0,156384.0,6.14441584059651,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2012,156,0.0,248506.0,2.32243734732466,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2012,156,5.0,49500.0,0.778955011057318,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2012,156,0.0,70911.0,0.379366377190998,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2012,156,16.0,170985.0,0.773602248724854,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2012,156,28.0,334076.0,4.92006990186953,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2012,156,4.0,44023.0,1.43237872776123,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2012,156,2.0,43635.0,0.588463735547188,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2012,156,17.0,47790.0,0.928796273580652,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2012,156,79.0,189429.0,1.20228650446157,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2012,156,8.0,492734.0,5.32885429266852,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2012,156,0.0,69092.0,0.764576901853262,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2012,156,8.0,135041.0,2.99346072637961,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2012,156,0.0,209923.0,6.97733780915522,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2012,156,13.0,158333.0,5.47483317451228,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2012,156,112.0,2185084.0,697.855195931123,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2012,156,11.0,305405.0,81.1272728271304,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2012,156,12.0,251888.0,42.4328662424866,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2012,156,18.0,390863.0,44.3969640319293,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2012,156,13.0,449907.0,26.9866724707451,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2012,156,7.0,299079.0,12.6177308072043,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2012,156,9.0,441719.0,15.6040598264859,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2012,156,74.0,240165.0,1.26650559117692,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2012,156,53.0,283554.0,1.25380136800056,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2012,156,63.0,340793.0,10.3746878423077,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2012,156,13.0,306994.0,6.34166530587123,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2012,156,39.0,177935.0,1.46768305732202,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2012,156,74.0,271172.0,12.0640127774334,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2012,156,7.0,295238.0,14.6986000691755,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2012,156,9.0,185608.0,8.78504618715194,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2012,156,50.0,142249.0,4.55928501433013,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2012,156,14.0,31004.0,0.840517747336401,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2012,156,2.0,25619.0,1.23392188884077,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2012,156,57.0,569504.0,14.7532884656607,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2012,156,3.0,72475.0,1.5550523480812,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2012,156,28.0,199722.0,12.661896794361,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2012,156,99.0,286178.0,10.8216176472929,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2012,156,50.0,143238.0,4.11930142407435,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2012,156,51.0,118053.0,2.29393698014506,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2012,156,166.0,139542.0,5.08924785238769,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2012,156,223.0,338559.0,15.9850757806465,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2012,156,2.0,73385.0,1.37091132657329,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2012,156,12.0,119017.0,2.52182835062873,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2012,156,1.0,185387.0,19.6475419351477,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2012,156,20.0,1345368.0,941.797911074165,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2012,156,0.0,165969.0,25.7961217569636,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2012,156,2.0,183427.0,17.0105207740207,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2012,156,0.0,576587.0,33.4818684625139,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2012,156,2.0,218636.0,31.0057799193908,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2012,156,6.0,227567.0,10.548305654788,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2012,156,4.0,634376.0,17.6252283669213,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2012,156,27.0,575448.0,19.691349903981,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2012,156,10.0,414136.0,37.7007608277884,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2012,156,1.0,316734.0,8.59741469959305,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2012,156,3.0,192964.0,29.5088049884528,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2012,156,2.0,141956.0,23.5306412998893,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2012,156,1.0,225548.0,20.9020769670989,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2012,156,2.0,267789.0,26.9507966573002,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2012,156,2.0,89087.0,24.7464920233419,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2012,156,16.0,424136.0,27.6457935856472,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2012,156,0.0,212427.0,8.49874253683964,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2012,156,7.0,112995.0,7.94502056087456,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2012,156,13.0,134229.0,3.67814900935475,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2012,156,0.0,69548.0,4.09692380158376,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2012,156,6.0,333303.0,26.735410063481,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2012,156,3.0,308877.0,31.743642507213,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2012,156,78.0,1017512.0,110.863262225242,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2012,156,5.0,221794.0,9.10679063638933,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2012,156,9.0,131478.0,15.8199915338519,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2012,156,2.0,104323.0,7.76644370431708,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2012,156,1.0,44674.0,1.75398705724695,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2012,156,4.0,41017.0,3.6905682140673,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2012,156,2.0,121889.0,6.61029995759512,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2012,156,0.0,89712.0,3.24816210519984,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2012,156,14.0,137225.0,4.98687807570765,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2012,156,7.0,83529.0,4.68294511649678,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2012,156,8.0,201785.0,19.5922874723367,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2012,156,3.0,58632.0,13.595518800126,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2012,156,4.0,264998.0,8.40354628611565,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2012,156,3.0,366853.0,42.4448935572181,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2012,156,1.0,300736.0,59.3913434196221,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,56740.0,27.3888587912979,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2012,156,3.0,25005.0,92.6224320288114,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2012,156,1.0,389017.0,47.2021697599913,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2012,156,26.0,137667.0,32.5888292636408,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2012,156,0.0,72423.0,12.0667966568407,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,212058.0,57.1337700560233,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2012,156,2.0,108129.0,75.4358644778942,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2012,156,2.0,103290.0,98.4095939967048,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2012,156,7.0,86483.0,28.6255415442255,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2012,156,12.0,126657.0,23.8468601213455,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2012,156,3.0,189249.0,70.3446150670043,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,63278.0,48.7937827824278,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2012,156,1.0,137114.0,53.9309213794674,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2012,156,172.0,3426405.0,1015.63988383494,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2012,156,3.0,122939.0,309.628447272758,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2012,156,4.0,241824.0,18.866382634848,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2012,156,19.0,270921.0,22.6565058709421,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2012,156,58.0,146511.0,12.5025620048062,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2012,156,11.0,218958.0,22.3835920551065,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,111770.0,51.9079282466802,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2012,156,4.0,317524.0,31.9782516956254,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2012,156,2.0,62808.0,14.6379467319795,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,42749.0,20.8319021820093,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2012,156,2.0,224865.0,47.2956182682559,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,97444.0,27.4998962548745,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,56787.0,35.1119166077097,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2012,156,4.0,96261.0,21.6623507249701,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2012,156,0.0,56914.0,44.1799635568104,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2012,156,1.0,91048.0,34.2054744847905,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2012,156,115.0,544222.0,119.458774916844,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2012,156,1.0,101356.0,52.2540132199381,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,30.0,341395.0,81.723804397388,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,0.0,72774.0,17.7850523237969,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,0.0,39342.0,13.7555320218376,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,25.0,142922.0,29.8591625039737,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2012,156,3.0,63390.0,63.9275378206304,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2012,156,156.0,115390.0,43.4090599873869,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2012,156,10.0,65130.0,39.9199642188414,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,5.0,53735.0,28.2026506303429,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,0.0,51364.0,12.5952212981728,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,0.0,61658.0,20.4793729496195,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,54.0,98910.0,32.2610478955873,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,19.0,119481.0,31.6752529297302,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,2.0,63818.0,33.3840683394653,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2012,156,3.0,135468.0,34.4814493444213,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2012,156,12.0,233443.0,66.6557107490609,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2012,156,2.0,85381.0,33.4900393927257,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2012,156,1.0,296063.0,142.69406219872,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2012,156,124.0,1057113.0,2415.33979747207,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2012,156,2.0,131421.0,94.7047768511965,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2012,156,3.0,117388.0,38.5067737284144,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2012,156,8.0,169640.0,50.0163604511519,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2012,156,0.0,183044.0,38.0970868191413,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2012,156,1.0,128111.0,50.2660309623961,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2012,156,1.0,70514.0,21.4108654923742,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2012,156,6.0,84180.0,27.6294128657531,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2012,156,1.0,117002.0,45.0402572201724,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2012,156,1.0,39491.0,22.5630895983573,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2012,156,1.0,74939.0,28.7080226763759,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2012,156,1.0,122849.0,17.6018188301974,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2012,156,0.0,64197.0,15.2442567570208,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2012,156,0.0,121484.0,31.090689211986,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2012,156,0.0,93586.0,70.7862399143014,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2012,156,0.0,54414.0,203.155886368397,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2012,156,3.0,115923.0,98.2530169617668,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2012,156,3.0,165776.0,128.506990078532,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2012,156,5.0,508606.0,241.420750641687,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2012,156,2.0,108846.0,64.5019647188211,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2012,156,1.0,53880.0,45.5522638462637,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2012,156,2.0,144065.0,72.4840990674129,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2012,156,2.0,133864.0,119.558340199618,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2012,156,89.0,1059424.0,848.770404144695,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2012,156,1.0,83948.0,96.9539136015859,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2012,156,26.0,312105.0,27.0451371629649,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2012,156,4.0,163689.0,18.6840488053052,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2012,156,4.0,317197.0,35.9373779603022,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2012,156,2.0,216693.0,24.6320788716729,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2012,156,4.0,458314.0,30.6165153607614,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2012,156,0.0,136878.0,14.3839589544554,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2012,156,2.0,183103.0,33.715634318027,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2012,156,7.0,868208.0,110.42178458649,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2012,156,3.0,282980.0,157.636174389207,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2012,156,23.0,255346.0,145.893746172994,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2012,156,0.0,446537.0,87.2176972412539,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2012,156,0.0,217310.0,84.8852698357363,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2012,156,32.0,540723.0,184.048505969601,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2012,156,11.0,218234.0,232.510925582751,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2012,156,4.0,567139.0,125.316128348011,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2012,156,6.0,170735.0,317.027463165148,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2012,156,429.0,3300035.0,2637.7766171137,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2012,156,21.0,273084.0,282.76204895673,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2012,156,0.0,2718.0,209.169628258983,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2012,156,0.0,89571.0,34.105387937288,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2012,156,4.0,81088.0,59.3818117408846,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2012,156,10.0,172228.0,56.1991732047524,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2012,156,1.0,92444.0,51.1980066132475,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2012,156,19.0,175361.0,73.3230140239701,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2012,156,223.0,416709.0,171.791152313312,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2012,156,1.0,38080.0,40.6951101911054,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2012,156,13.0,147188.0,79.8776692525956,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2012,156,13.0,304291.0,77.1548488864863,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2012,156,0.0,68000.0,67.558407443711,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2012,156,187.0,1165310.0,650.701661134045,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2012,156,9.0,289704.0,97.5161206794861,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2012,156,27.0,125498.0,73.3301054449123,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2012,156,1.0,159376.0,29.2662819174955,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2012,156,1.0,69595.0,37.26733118316,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,0.0,63706.0,51.3408290770079,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,2.0,162733.0,143.839242381186,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2012,156,10.0,110051.0,54.6325091986201,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2012,156,0.0,116016.0,76.946596902198,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,7.0,91672.0,86.9099612666881,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,4.0,47831.0,62.4721182743314,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,1.0,55580.0,38.8464693561082,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,4.0,91631.0,123.694673018201,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2012,156,29.0,859965.0,985.73674429503,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2012,156,3.0,156003.0,84.8564378776517,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2012,156,1.0,126708.0,62.6007332524566,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2012,156,4.0,298118.0,5.64033750392495,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2012,156,3.0,115428.0,5.10247451184264,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2012,156,28.0,178323.0,4.24691137010721,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2012,156,19.0,461441.0,8.43359837143168,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2012,156,6.0,169823.0,13.6300295356335,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2012,156,1.0,173417.0,5.32584929783488,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2012,156,3.0,172975.0,11.9810807990507,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2012,156,18.0,289262.0,17.3997627817113,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2012,156,71.0,376724.0,20.6584677876768,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2012,156,30.0,328233.0,17.4440794524674,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2012,156,41.0,249549.0,15.1550347746668,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2012,156,88.0,1003586.0,78.74289483415,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2012,156,3.0,98486.0,12.2858894440085,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2012,156,9.0,299146.0,16.0051432866208,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2012,156,8.0,311896.0,36.048785303803,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2012,156,87.0,419176.0,39.3651100453797,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2012,156,0.0,312520.0,54.3772845995861,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,2.0,117308.0,26.8045165799303,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,4.0,215315.0,78.3386594460731,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,8.0,545271.0,95.6437206129215,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,195.0,3524564.0,1219.3796941622,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2012,156,28.0,188675.0,11.7331121529285,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2012,156,11.0,254396.0,12.2624953738059,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2012,156,413.0,509608.0,29.6251956630189,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2012,156,6.0,98888.0,19.224365912394,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2012,156,65.0,374180.0,15.9623645468514,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2012,156,31.0,233819.0,15.2417145971621,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2012,156,45.0,629222.0,33.4426641682386,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2012,156,11.0,199898.0,17.7290541864863,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,0.0,267081.0,46.4227577160345,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,144.0,1016864.0,47.83926314722,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2012,156,55.0,742149.0,26.7785257202179,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,1.0,150490.0,5.4910832048102,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,2.0,220756.0,6.30563760078383,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,207.0,276671.0,8.33049780665821,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2012,156,70.0,248900.0,16.5516583867347,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,2.0,212436.0,11.9112464805801,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,191.0,166434.0,7.22957702849044,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2012,156,331.0,611361.0,27.366199666747,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,2.0,42972.0,4.74231223691592,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,10.0,69456.0,8.77571091303406,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2012,156,0.0,82843.0,11.212959610262,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,3.0,199054.0,16.567576218043,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2012,156,1018.0,157112.0,15.2984602207856,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2012,156,3.0,82805.0,16.397339492421,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,6.0,180728.0,11.6923510835122,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,74.0,267523.0,23.0262903179012,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,155.0,118607.0,13.9830953114638,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,89.0,144903.0,16.5961926546818,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,154.0,838094.0,44.6086792076215,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2012,156,4.0,199817.0,16.7064659509576,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,3.0,256387.0,23.9075594046362,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,21.0,183338.0,10.8575820649045,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,419.0,354385.0,37.9775350441023,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2012,156,16.0,209055.0,14.8588135731748,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,2.0,98083.0,9.26817104127361,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2012,156,30.0,151761.0,11.07294932922,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,12.0,167670.0,22.3904805253061,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,28.0,401042.0,46.9437706601731,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,0.0,84048.0,12.3275188485203,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,0.0,125834.0,71.0779055938939,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,97.0,4850003.0,832.146397511891,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,26.0,383226.0,47.5819075394988,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,61919.0,25.6127534618912,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,4.0,176658.0,56.0490385291041,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,251333.0,84.8072644045154,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,8.0,131392.0,22.8107659733766,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,0.0,81077.0,17.6932368621335,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,286.0,418522.0,36.9811162548167,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,16.0,63414.0,34.2822665612218,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,1935.0,534763.0,122.898340755498,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,21.0,255385.0,46.1094361117657,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,441.0,149587.0,17.948662657737,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,0.0,82311.0,10.6977914625137,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,44.0,497307.0,97.9402622263803,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2012,156,2.0,153262.0,33.5628966431408,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,1.0,112706.0,41.8451826494357,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,1.0,126972.0,31.6568327699138,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2012,156,3.0,228862.0,32.2663964099681,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,2.0,267667.0,51.7500250196061,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,3.0,227873.0,45.5761462373621,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,3.0,446235.0,58.89904061793,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,1.0,346837.0,74.8707855555673,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2012,156,1.0,333209.0,67.7556705737257,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,141984.0,43.3416450798672,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,210185.0,54.6548603934885,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,73921.0,14.6693704957217,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,190364.0,63.8424191601582,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,1.0,151937.0,43.9505339722765,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,3.0,184441.0,32.0362020683909,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,0.0,224453.0,66.8779021302357,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,11.0,186688.0,38.3754648414972,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,7.0,277362.0,57.3346046352947,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,1.0,222542.0,46.1243623170228,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,8.0,278176.0,58.739995475808,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2012,156,7.0,273881.0,76.1181825515995,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2012,156,7.0,738328.0,82.6488244687237,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2012,156,20.0,217985.0,55.8178117036671,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,1.0,89657.0,22.1844390840095,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,3.0,125475.0,34.2094811218516,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,9.0,201881.0,46.5112195389088,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,15.0,54929.0,18.6280420032,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,26.0,190102.0,41.073033914651,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,6.0,317319.0,45.6621850034599,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2012,156,12.0,133189.0,34.7294740613343,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2012,156,3.0,105489.0,32.1098754849778,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2012,156,2033.0,1599855.0,1121.16085777623,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,12.0,189071.0,89.8727116993219,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2012,156,5.0,159140.0,46.0363588255054,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,23.0,335435.0,81.5119528658289,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2012,156,0.0,76525.0,60.3750978709182,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,143.0,197431.0,62.958988542637,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,412.0,123059.0,54.9043799510404,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,181.0,597456.0,83.413791165373,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,21.0,274822.0,106.438583806898,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2012,156,9.0,157349.0,95.0245005710487,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2012,156,0.0,63622.0,50.2333658801933,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2012,156,3.0,235159.0,112.982161744976,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2012,156,0.0,29595.0,16.3192425006978,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,61.0,174836.0,106.583475920851,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,93.0,562026.0,286.586256679109,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2012,156,27.0,688661.0,180.570234297,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2012,156,42.0,177108.0,74.7968568173899,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2012,156,21.0,215841.0,129.080871290822,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2012,156,2.0,165748.0,105.686184856049,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2012,156,4.0,485354.0,271.910652695472,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,87.0,111575.0,78.6899055685682,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2012,156,11.0,231521.0,263.587717735328,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2012,156,1962.0,11740202.0,2578.3067300396,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,7.0,149595.0,37.9792185186238,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,5.0,105266.0,37.4134371286828,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2012,156,7.0,141487.0,44.1078332554411,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,73.0,777572.0,74.6059425288418,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,4.0,224432.0,99.0148917888175,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,2.0,46688.0,20.3371072664675,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,0.0,66314.0,33.007057837431,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,0.0,80324.0,33.1772180376434,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2012,156,165.0,136817.0,50.3711723103011,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2012,156,96.0,214535.0,38.6910063900237,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2012,156,83.0,96644.0,47.9357197726038,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2012,156,5.0,392208.0,113.834081451843,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2012,156,35.0,411585.0,86.7395140028746,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2012,156,55.0,1058037.0,176.149817247189,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2012,156,1.0,107638.0,34.9804780971157,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,78.0,182882.0,26.6151078198349,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,6.0,260052.0,48.4307146055009,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,1.0,261986.0,58.1864793145732,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,2.0,162256.0,41.911670077778,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2012,156,9.0,568973.0,67.0255137392179,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2012,156,2.0,351696.0,87.0872077095631,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2012,156,0.0,181529.0,30.7601856921147,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2012,156,0.0,211502.0,48.5340612736483,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2012,156,36.0,510405.0,81.2448880521005,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2012,156,2.0,314362.0,99.1231517429152,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2012,156,1.0,246456.0,83.6740809244623,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2012,156,52.0,589068.0,253.369092319238,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,3.0,565651.0,149.674372570843,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2012,156,2.0,186206.0,105.587282483824,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2012,156,2.0,411486.0,75.8215046900879,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2012,156,14.0,389477.0,166.686475147131,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,65.0,2694521.0,866.680814309326,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,0.0,181566.0,113.466012530435,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,2.0,117378.0,40.9398178179994,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,20.0,159684.0,43.5083313880118,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2012,156,131.0,577785.0,33.0294568101477,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,0.0,109974.0,47.805587658574,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,3.0,333406.0,68.228414108036,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,1.0,266445.0,37.3155328512667,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,0.0,292830.0,52.6154839469711,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2012,156,0.0,241618.0,31.4078965998125,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,3.0,195787.0,52.5406251268519,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,2.0,264467.0,118.482499565021,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,1.0,134032.0,20.3508281116316,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,0.0,190951.0,46.0885780398248,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,7.0,1353899.0,319.009345244639,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,5.0,648871.0,806.866358270145,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,2.0,510299.0,162.59074835851,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,2.0,69517.0,68.3650368371234,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,12.0,1442646.0,359.070933772247,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2012,156,54.0,406396.0,150.316122383298,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,0.0,26410.0,12.6035919213273,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,0.0,70383.0,15.9217302998672,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,11.0,290406.0,152.388220201138,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,67.0,243694.0,21.8435007364554,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2012,156,2.0,224456.0,110.099694847454,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,3.0,1801601.0,2655.63720519102,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,4.0,465698.0,780.896756139508,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,6.0,1373264.0,1766.5678275922,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,2.0,1013390.0,690.492440623047,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,73.0,13958229.0,5914.93596395871,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2012,156,1.0,1344408.0,652.997200129997,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2012,156,100.0,1494079.0,1097.17178910689,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,222.0,272756.0,26.8130309297273,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,20.0,266174.0,25.946388806441,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,28.0,145037.0,35.8145472588875,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,22.0,114831.0,23.6401935736618,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,503.0,217415.0,30.7261467688677,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,16.0,185506.0,36.2936558732028,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,18.0,82422.0,34.8516455396821,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,34815.0,26.7368849439149,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,9.0,554000.0,356.016675289019,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,3.0,292405.0,129.082813048461,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,26.0,737502.0,209.753939901031,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,46129.0,20.2637582219095,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,135867.0,22.0411539287115,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,9.0,70836.0,31.366209717062,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,1.0,175226.0,38.7134036437071,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,123002.0,44.5907912317035,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,77805.0,25.5996262419454,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,1.0,99079.0,31.3650136094796,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,160909.0,17.0115044122113,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,101239.0,17.7857115656069,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,437091.0,65.4376114986352,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,1.0,382940.0,43.8271758151632,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,13.0,438658.0,51.2942593483945,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,20.0,410212.0,73.8820963390097,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,1.0,95516.0,41.1041507872073,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,2.0,244577.0,45.1907191454832,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,1.0,160750.0,41.1832077598639,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,74361.0,15.1135674834235,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,380287.0,23.4748011775004,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,91210.0,16.8724367113946,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,129917.0,21.3850610453724,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,98329.0,34.6425500418063,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,117480.0,21.4871727323746,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,63207.0,24.9825153077202,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,28994.0,8.39537973807147,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,49890.0,21.704361326388,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,1.0,3120488.0,366.144590099189,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2012,156,0.0,269858.0,44.2741459851157,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2012,156,0.0,91035.0,37.2004160304353,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,175283.0,41.1251160382273,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,411687.0,68.3568196612241,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,154003.0,31.7656795882586,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,330010.0,36.5319779105114,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,142634.0,45.3492208885246,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,245439.0,26.1024181833916,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,128150.0,67.1262528716056,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,867387.0,186.828442849638,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,123461.0,18.7463030273364,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,283996.0,18.0375944754168,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,208279.0,39.3327126250771,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,696990.0,147.306172734509,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,1.0,596034.0,388.114771628073,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,56444.0,37.1069276338983,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,95238.0,44.7078535951855,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,903568.0,311.861391655747,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2012,156,0.0,24132.0,10.2878855684464,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,380567.0,82.1844213418031,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,0.0,376053.0,177.927400540557,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2012,156,1.0,183931.0,61.9014478122464,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,156636.0,45.3052850206733,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,142756.0,37.4478265479467,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,173085.0,33.2347313433336,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,211452.0,37.2908805094912,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2012,156,0.0,60354.0,19.6112739605039,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,65480.0,29.4977529570404,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,2.0,195191.0,18.027062014611,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,184556.0,36.2370110749612,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,160112.0,32.771328672213,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2012,156,0.0,331915.0,46.8970423167258,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,2.0,149383.0,17.7428695545258,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,42368.0,28.2696427035199,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2012,156,0.0,71443.0,19.7940988941087,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2012,156,0.0,129018.0,35.5454531557039,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2012,156,0.0,157890.0,9.16281404051707,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2012,156,1.0,787135.0,158.269454413523,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,110611.0,9.8586531640168,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,365075.0,31.1146547190213,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,62779.0,20.9043329685022,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,323551.0,58.1927083482933,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,309856.0,76.5815583045912,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,152323.0,20.0768293349343,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,206297.0,99.5897107463165,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2012,156,0.0,302136.0,115.89242503682,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,145388.0,29.7905274578943,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,3.0,3658690.0,653.080737125989,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,349487.0,39.7496279238968,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,131476.0,22.3474092066778,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,1.0,361829.0,11.6426156203676,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,183559.0,10.6137255587892,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,173987.0,12.213952385168,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,116439.0,7.09170854360569,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,484359.0,46.8774931506424,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,0.0,52712.0,8.3180894535102,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2012,156,1.0,261275.0,28.2095923667043,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2012,156,16.0,140862.0,1.69647129920332,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2012,156,125.0,106489.0,3.83820039820442,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2012,156,84.0,119147.0,2.85963882669105,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2012,156,1938.0,896489.0,31.7350757071251,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2012,156,5.0,63883.0,3.97160189026215,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2012,156,3.0,77331.0,4.49960069215506,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2012,156,24.0,159326.0,3.37170053289664,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2012,156,31.0,90595.0,6.72649765124349,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2012,156,120.0,105987.0,4.69421100884442,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2012,156,149.0,515030.0,13.7736547262994,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2012,156,121.0,229949.0,10.2281724615078,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2012,156,58.0,143796.0,1.15953438797402,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2012,156,384.0,100528.0,1.95573638628718,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2012,156,207.0,145783.0,3.40885085131595,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2012,156,173.0,93467.0,1.56824920479924,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2012,156,38.0,76872.0,1.39973881337577,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,220.0,204751.0,3.75380166094852,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2012,156,342.0,179412.0,3.58519378017632,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,66.0,33544.0,0.717302996325371,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2012,156,94.0,115959.0,1.36515994626059,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,175.0,102483.0,1.69673132136635,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,124.0,65908.0,2.06032751837105,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2012,156,58.0,69039.0,2.20148101520492,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,65.0,149801.0,6.71055586075144,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2012,156,42.0,107679.0,5.70363574149582,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2012,156,13.0,32743.0,4.88603834091388,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,38.0,30778.0,3.33259972866146,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,182.0,868141.0,31.4429788598438,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2012,156,77.0,133324.0,2.5003723325351,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,107.0,87669.0,8.55039782793665,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,96.0,54567.0,2.01519662052216,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,105.0,283538.0,11.6205934878014,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2012,156,2.0,35554.0,3.31858074221209,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2012,156,54.0,77067.0,3.16115530973942,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2012,156,2.0,87890.0,4.34079762920649,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2012,156,22.0,55718.0,5.04070247557419,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2012,156,112.0,232179.0,6.60396382743391,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2012,156,0.0,63695.0,2.99057248302973,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2012,156,122.0,234079.0,17.7884590050198,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2012,156,74.0,551559.0,65.9164319673497,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2012,156,3.0,58597.0,8.28641121100111,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2012,156,9.0,110677.0,20.2694916218637,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2012,156,2065.0,2180625.0,322.81980168774,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2012,156,1.0,109633.0,6.3083850868817,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2012,156,40.0,1088240.0,28.520378745572,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2012,156,29.0,461853.0,8.23893754865811,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2012,156,65.0,115403.0,8.4833787908967,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2012,156,87.0,368419.0,17.4431968673627,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2012,156,1.0,94275.0,9.89666837880533,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2012,156,1.0,151663.0,9.95893461464,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2012,156,6.0,113424.0,7.05575104081007,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2012,156,101.0,2648532.0,457.886668179805,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2013,157,395.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2013,157,228.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2013,157,33.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2013,157,364.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2013,157,343.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2013,157,414.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2013,157,378.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2013,157,176.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2013,157,9.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2013,157,5.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2013,157,7.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2013,157,649.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2013,157,129.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2013,157,47.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2013,157,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2013,157,188.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2013,157,4.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2013,157,19.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2013,157,59.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2013,157,2505.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2013,157,1.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2013,157,8.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2013,157,4.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2013,157,75.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2013,157,14.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2013,157,191.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2013,157,23.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2013,157,2.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2013,157,19.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2013,157,10.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2013,157,209.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2013,157,167.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2013,157,1.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2013,157,78.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2013,157,0.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2013,157,8.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2013,157,119.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2013,157,12.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2013,157,15.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2013,157,6.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2013,157,12.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2013,157,1.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2013,157,44.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2013,157,335.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2013,157,150.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2013,157,51.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2013,157,32.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2013,157,99.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2013,157,91.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2013,157,27.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2013,157,131.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2013,157,107.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2013,157,90.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2013,157,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2013,157,133.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2013,157,53.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2013,157,46.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2013,157,100.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2013,157,95.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2013,157,264.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2013,157,404.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2013,157,491.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2013,157,5.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2013,157,38.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2013,157,1.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2013,157,22.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2013,157,0.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2013,157,2.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2013,157,7.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2013,157,15.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2013,157,20.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2013,157,11.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2013,157,52.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2013,157,5.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2013,157,67.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2013,157,2.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2013,157,0.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2013,157,1.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2013,157,0.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2013,157,3.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2013,157,19.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2013,157,6.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2013,157,35.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2013,157,9.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2013,157,1.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2013,157,6.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2013,157,3.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2013,157,144.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2013,157,47.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2013,157,3.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2013,157,42.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2013,157,3.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2013,157,13.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2013,157,3.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2013,157,6.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2013,157,1.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2013,157,11.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2013,157,2.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2013,157,0.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2013,157,3.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2013,157,9.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2013,157,2.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2013,157,23.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2013,157,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2013,157,15.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2013,157,16.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2013,157,1.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2013,157,3.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2013,157,0.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2013,157,24.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2013,157,1.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2013,157,48.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2013,157,9.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2013,157,8.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2013,157,0.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2013,157,287.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2013,157,8.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2013,157,23.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2013,157,67.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2013,157,323.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2013,157,24.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2013,157,2.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2013,157,5.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2013,157,2.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2013,157,25.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2013,157,17.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2013,157,0.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2013,157,2.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2013,157,13.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2013,157,2.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2013,157,16.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2013,157,5.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2013,157,7.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,13.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,12.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,0.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,2.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2013,157,47.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2013,157,483.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2013,157,22.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,4.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,0.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,42.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,78.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,64.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,1.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2013,157,52.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2013,157,83.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2013,157,1.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2013,157,8.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2013,157,158.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2013,157,1.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2013,157,27.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2013,157,115.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2013,157,39.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2013,157,3.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2013,157,15.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2013,157,12.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2013,157,29.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2013,157,2.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2013,157,3.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2013,157,5.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2013,157,7.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2013,157,25.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2013,157,14.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2013,157,2.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2013,157,1.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2013,157,6.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2013,157,12.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2013,157,3.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2013,157,0.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2013,157,8.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2013,157,0.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2013,157,135.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2013,157,7.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2013,157,4.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2013,157,8.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2013,157,6.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2013,157,2.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2013,157,6.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2013,157,2.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2013,157,1.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2013,157,19.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2013,157,13.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2013,157,15.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2013,157,4.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2013,157,13.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2013,157,1.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2013,157,5.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2013,157,7.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2013,157,1.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2013,157,132.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2013,157,18.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2013,157,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2013,157,0.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2013,157,3.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2013,157,3.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2013,157,1.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2013,157,6.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2013,157,60.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2013,157,0.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2013,157,4.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2013,157,13.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2013,157,3.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2013,157,143.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2013,157,9.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2013,157,13.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2013,157,0.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2013,157,0.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,0.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,1.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2013,157,1.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2013,157,0.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,0.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,0.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,0.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2013,157,21.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2013,157,3.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2013,157,1.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2013,157,69.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2013,157,12.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2013,157,111.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2013,157,43.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2013,157,4.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2013,157,17.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2013,157,62.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2013,157,14.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2013,157,397.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2013,157,40.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2013,157,25.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2013,157,165.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2013,157,14.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2013,157,50.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2013,157,3.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2013,157,115.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2013,157,8.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,2.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,6.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,56.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,90.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2013,157,355.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2013,157,27.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2013,157,1352.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2013,157,80.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2013,157,619.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2013,157,254.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2013,157,245.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2013,157,254.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,2.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,493.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2013,157,864.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,9.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,22.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,835.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2013,157,1248.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,189.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,1950.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2013,157,2736.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,56.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,290.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2013,157,5.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,128.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2013,157,924.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2013,157,18.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,95.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,577.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,509.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,692.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,912.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2013,157,19.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,23.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,298.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,1985.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2013,157,37.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,11.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2013,157,205.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,81.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,797.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,0.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,9.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,1873.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,156.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,1.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,15.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,36.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,46.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,5.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,1535.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,81.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,12753.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,1122.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,954.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,10.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,165.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2013,157,16.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,3.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,3.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2013,157,11.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,10.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,12.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,10.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,4.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2013,157,7.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,2.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,7.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,0.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,3.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,3.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,0.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,4.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,204.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,174.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,46.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,121.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2013,157,187.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2013,157,78.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2013,157,1140.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,13.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,27.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,62.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,13.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,53.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,57.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2013,157,42.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2013,157,10.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2013,157,6231.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,42.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2013,157,18.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,129.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2013,157,10.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,2032.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,1236.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,1570.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,230.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2013,157,529.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2013,157,34.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2013,157,30.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2013,157,5.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,827.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,749.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2013,157,558.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2013,157,417.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2013,157,257.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2013,157,138.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2013,157,16.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,1151.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2013,157,44.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2013,157,6577.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,24.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,77.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2013,157,20.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,774.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,60.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,8.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,10.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,6.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2013,157,1861.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2013,157,825.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2013,157,1058.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2013,157,54.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2013,157,443.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2013,157,520.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2013,157,11.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,384.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,39.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,53.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,9.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2013,157,422.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2013,157,15.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2013,157,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2013,157,5.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2013,157,183.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2013,157,14.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2013,157,10.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2013,157,800.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,48.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2013,157,15.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2013,157,19.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2013,157,36.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,260.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,7.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,21.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,68.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2013,157,539.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,89.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,32.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,43.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,12.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2013,157,1.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,5.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,3.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,3.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,3.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,144.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,18.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,15.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,135.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2013,157,804.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,2.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,1.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,78.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,1570.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2013,157,16.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,51.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,57.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,35.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,22.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,432.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2013,157,13.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2013,157,699.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,2546.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,63.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,213.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,28.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,1742.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,239.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,139.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,3.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,222.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,18.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,155.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,8.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,5.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,14.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,7.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,2.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,1.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,3.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,2.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,182.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,48.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,89.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,13.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,6.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,3.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,4.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,1.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,2.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,60.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2013,157,1.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2013,157,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,5.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,2.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,1.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,1.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,1.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,19.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,2.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,1.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,2.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,13.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,4.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,2.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,1.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,6.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2013,157,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,3.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2013,157,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,1.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,1.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,1.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2013,157,2.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,1.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,2.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2013,157,1.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,2.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2013,157,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2013,157,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2013,157,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2013,157,3.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,1.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,1.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2013,157,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,16.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2013,157,2.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2013,157,485.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2013,157,1013.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2013,157,560.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2013,157,19058.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2013,157,53.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2013,157,25.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2013,157,460.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2013,157,1026.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2013,157,473.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2013,157,767.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2013,157,855.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2013,157,577.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2013,157,933.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2013,157,705.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2013,157,454.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2013,157,84.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,621.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2013,157,977.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,121.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2013,157,472.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,152.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,251.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2013,157,355.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,534.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2013,157,284.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2013,157,52.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,49.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,470.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2013,157,285.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,525.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,211.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,871.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2013,157,74.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2013,157,176.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2013,157,29.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2013,157,171.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2013,157,1419.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2013,157,4.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2013,157,580.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2013,157,446.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2013,157,73.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2013,157,67.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2013,157,14602.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2013,157,15.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2013,157,729.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2013,157,863.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2013,157,206.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2013,157,1464.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2013,157,47.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2013,157,18.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2013,157,296.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2013,157,510.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2013,158,221.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2013,158,210.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2013,158,29.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2013,158,307.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2013,158,230.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2013,158,631.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2013,158,361.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2013,158,364.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2013,158,7.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2013,158,3.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2013,158,3.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2013,158,505.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2013,158,81.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2013,158,39.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2013,158,1.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2013,158,30.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2013,158,2.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2013,158,37.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2013,158,351.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2013,158,2954.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2013,158,1.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2013,158,31.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2013,158,16.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2013,158,66.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2013,158,7.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2013,158,104.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2013,158,25.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2013,158,2.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2013,158,14.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2013,158,11.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2013,158,304.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2013,158,347.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2013,158,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2013,158,60.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2013,158,8.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2013,158,7.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2013,158,180.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2013,158,14.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2013,158,23.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2013,158,9.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2013,158,26.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2013,158,11.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2013,158,16.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2013,158,254.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2013,158,160.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2013,158,79.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2013,158,63.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2013,158,62.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2013,158,153.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2013,158,49.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2013,158,102.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2013,158,92.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2013,158,31.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2013,158,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2013,158,181.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2013,158,18.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2013,158,84.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2013,158,58.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2013,158,120.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2013,158,397.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2013,158,405.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2013,158,636.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2013,158,18.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2013,158,35.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2013,158,3.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2013,158,24.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2013,158,2.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2013,158,1.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2013,158,39.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2013,158,5.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2013,158,20.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2013,158,15.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2013,158,125.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2013,158,5.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2013,158,148.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2013,158,8.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2013,158,0.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2013,158,4.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2013,158,13.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2013,158,4.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2013,158,13.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2013,158,23.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2013,158,61.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2013,158,17.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2013,158,1.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2013,158,9.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2013,158,9.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2013,158,207.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2013,158,77.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2013,158,11.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2013,158,66.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2013,158,10.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2013,158,3.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2013,158,5.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2013,158,36.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2013,158,12.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2013,158,30.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2013,158,15.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2013,158,1.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2013,158,4.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2013,158,16.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2013,158,11.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2013,158,32.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2013,158,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2013,158,68.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2013,158,60.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2013,158,3.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2013,158,5.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2013,158,4.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2013,158,23.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2013,158,3.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2013,158,123.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2013,158,18.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2013,158,25.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2013,158,3.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2013,158,396.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2013,158,145.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2013,158,61.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2013,158,59.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2013,158,372.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2013,158,39.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2013,158,3.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2013,158,7.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2013,158,1.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2013,158,59.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2013,158,50.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2013,158,1.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2013,158,0.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2013,158,12.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2013,158,3.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2013,158,33.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2013,158,12.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2013,158,6.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,9.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,0.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,4.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,1.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2013,158,33.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2013,158,89.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2013,158,21.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,9.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,7.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,112.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,118.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,301.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,1.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2013,158,172.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2013,158,73.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2013,158,8.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2013,158,3.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2013,158,196.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2013,158,3.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2013,158,95.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2013,158,299.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2013,158,44.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2013,158,23.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2013,158,30.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2013,158,7.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2013,158,53.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2013,158,16.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2013,158,5.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2013,158,8.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2013,158,6.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2013,158,54.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2013,158,14.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2013,158,9.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2013,158,0.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2013,158,11.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2013,158,13.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2013,158,2.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2013,158,2.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2013,158,33.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2013,158,5.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2013,158,196.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2013,158,4.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2013,158,5.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2013,158,41.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2013,158,13.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2013,158,4.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2013,158,3.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2013,158,2.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2013,158,4.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2013,158,16.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2013,158,21.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2013,158,12.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2013,158,21.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2013,158,2.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2013,158,9.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2013,158,9.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2013,158,12.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2013,158,2.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2013,158,194.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2013,158,12.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2013,158,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2013,158,2.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2013,158,2.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2013,158,11.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2013,158,0.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2013,158,2.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2013,158,63.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2013,158,1.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2013,158,11.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2013,158,31.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2013,158,3.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2013,158,220.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2013,158,2.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2013,158,6.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2013,158,1.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2013,158,25.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,0.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,0.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2013,158,0.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2013,158,1.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,0.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,0.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,1.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2013,158,20.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2013,158,0.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2013,158,0.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2013,158,360.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2013,158,70.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2013,158,243.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2013,158,107.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2013,158,4.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2013,158,67.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2013,158,334.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2013,158,19.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2013,158,1168.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2013,158,72.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2013,158,76.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2013,158,382.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2013,158,15.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2013,158,42.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2013,158,12.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2013,158,148.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2013,158,8.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,5.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,5.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,43.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,141.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2013,158,641.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2013,158,222.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2013,158,1030.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2013,158,426.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2013,158,1512.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2013,158,838.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2013,158,278.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2013,158,573.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,3.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,1038.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2013,158,1549.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,26.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,99.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,1556.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2013,158,2262.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,402.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,2223.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2013,158,2990.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,160.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,1481.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2013,158,9.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,303.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2013,158,554.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2013,158,414.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,273.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,1685.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,612.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,1465.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,1279.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2013,158,83.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,86.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,705.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,4849.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2013,158,164.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,211.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2013,158,777.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,200.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,3996.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,7.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,108.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,13736.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,693.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,29.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,41.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,31.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,48.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,15.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,2111.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,266.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,8173.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,995.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,644.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,61.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,825.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2013,158,76.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,15.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,26.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2013,158,40.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,11.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,16.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,20.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,3.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2013,158,6.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,12.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,9.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,5.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,4.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,10.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,13.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,6.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,676.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,763.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,44.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,617.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2013,158,1231.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2013,158,337.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2013,158,1831.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,60.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,67.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,90.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,24.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,204.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,109.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2013,158,37.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2013,158,43.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2013,158,8271.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,205.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2013,158,122.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,1093.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2013,158,24.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,1999.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,524.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,3517.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,981.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2013,158,943.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2013,158,404.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2013,158,119.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2013,158,80.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,1419.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,2163.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2013,158,2105.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2013,158,638.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2013,158,1247.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2013,158,183.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2013,158,67.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,1652.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2013,158,173.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2013,158,15869.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,126.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,278.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2013,158,65.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,3078.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,145.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,54.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,39.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,6.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2013,158,2028.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2013,158,1637.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2013,158,1276.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2013,158,169.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2013,158,573.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2013,158,2026.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2013,158,29.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,1466.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,103.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,176.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,35.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2013,158,1080.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2013,158,36.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2013,158,2.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2013,158,3.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2013,158,350.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2013,158,33.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2013,158,38.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2013,158,1699.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,219.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2013,158,79.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2013,158,133.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2013,158,174.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,859.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,8.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,101.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,325.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2013,158,961.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,145.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,89.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,375.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,40.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2013,158,2.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,3.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,18.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,4.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,5.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,236.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,40.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,10.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,304.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2013,158,1531.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,14.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,0.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,440.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,1977.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2013,158,161.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,66.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,143.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,232.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,14.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,522.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2013,158,19.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2013,158,4335.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,5460.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,203.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,422.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,157.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,2847.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,498.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,553.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,153.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,794.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,35.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,170.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,7.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,19.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,20.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,32.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,4.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,1.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,4.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,5.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,4.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,698.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,58.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,237.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,136.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,45.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,5.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,1.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,1.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,49.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2013,158,1.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2013,158,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,10.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,5.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,2.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,1.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,4.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,3.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,1.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,6.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,1.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,3.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,13.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,15.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2013,158,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,6.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,2.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2013,158,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,16.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,2.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2013,158,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,1.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,8.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,2.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2013,158,3.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2013,158,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2013,158,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2013,158,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2013,158,6.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,1.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,1.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2013,158,1.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,46.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,1.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,1.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2013,158,1.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2013,158,662.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2013,158,1077.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2013,158,1136.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2013,158,13392.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2013,158,154.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2013,158,88.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2013,158,920.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2013,158,916.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2013,158,548.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2013,158,1610.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2013,158,2063.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2013,158,335.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2013,158,670.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2013,158,608.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2013,158,425.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2013,158,81.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,501.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2013,158,1339.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,78.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2013,158,154.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,116.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,365.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2013,158,382.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,397.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2013,158,280.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2013,158,38.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,27.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,703.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2013,158,163.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,386.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,106.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,732.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2013,158,39.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2013,158,258.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2013,158,102.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2013,158,135.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2013,158,889.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2013,158,14.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2013,158,666.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2013,158,1064.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2013,158,83.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2013,158,121.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2013,158,18845.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2013,158,80.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2013,158,1435.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2013,158,2123.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2013,158,165.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2013,158,1284.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2013,158,45.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2013,158,40.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2013,158,619.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2013,158,835.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2013,159,135.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2013,159,90.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2013,159,33.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2013,159,207.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2013,159,119.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2013,159,477.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2013,159,267.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2013,159,360.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2013,159,2.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2013,159,1.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2013,159,17.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2013,159,347.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2013,159,45.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2013,159,49.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2013,159,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2013,159,20.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2013,159,3.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2013,159,85.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2013,159,288.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2013,159,2919.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2013,159,1.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2013,159,27.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2013,159,28.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2013,159,27.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2013,159,3.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2013,159,107.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2013,159,26.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2013,159,6.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2013,159,7.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2013,159,14.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2013,159,162.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2013,159,401.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2013,159,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2013,159,23.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2013,159,5.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2013,159,28.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2013,159,194.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2013,159,25.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2013,159,40.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2013,159,14.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2013,159,19.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2013,159,38.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2013,159,39.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2013,159,102.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2013,159,227.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2013,159,57.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2013,159,72.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2013,159,63.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2013,159,192.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2013,159,90.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2013,159,89.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2013,159,50.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2013,159,151.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2013,159,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2013,159,238.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2013,159,17.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2013,159,66.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2013,159,82.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2013,159,101.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2013,159,321.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2013,159,247.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2013,159,683.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2013,159,9.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2013,159,81.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2013,159,6.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2013,159,65.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2013,159,5.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2013,159,7.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2013,159,42.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2013,159,5.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2013,159,16.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2013,159,28.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2013,159,69.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2013,159,9.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2013,159,129.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2013,159,22.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2013,159,2.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2013,159,25.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2013,159,13.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2013,159,2.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2013,159,16.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2013,159,32.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2013,159,23.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2013,159,16.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2013,159,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2013,159,20.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2013,159,16.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2013,159,376.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2013,159,96.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2013,159,20.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2013,159,37.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2013,159,12.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2013,159,1.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2013,159,9.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2013,159,37.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2013,159,34.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2013,159,27.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2013,159,13.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2013,159,2.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2013,159,29.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2013,159,72.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2013,159,9.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2013,159,59.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2013,159,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2013,159,135.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2013,159,105.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2013,159,3.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2013,159,5.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2013,159,35.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2013,159,20.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2013,159,2.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2013,159,267.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2013,159,34.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2013,159,46.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2013,159,21.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2013,159,876.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2013,159,342.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2013,159,180.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2013,159,74.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2013,159,187.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2013,159,25.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2013,159,3.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2013,159,13.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2013,159,1.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2013,159,29.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2013,159,30.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2013,159,1.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2013,159,2.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2013,159,24.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2013,159,1.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2013,159,38.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2013,159,62.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2013,159,62.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,33.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,3.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,3.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,1.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2013,159,29.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2013,159,174.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2013,159,95.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,7.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,8.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,133.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,93.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,382.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,1.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2013,159,222.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2013,159,159.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2013,159,5.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2013,159,9.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2013,159,261.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2013,159,22.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2013,159,49.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2013,159,279.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2013,159,104.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2013,159,53.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2013,159,68.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2013,159,17.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2013,159,131.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2013,159,19.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2013,159,18.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2013,159,13.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2013,159,16.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2013,159,71.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2013,159,28.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2013,159,32.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2013,159,38.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2013,159,12.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2013,159,76.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2013,159,2.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2013,159,0.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2013,159,77.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2013,159,8.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2013,159,203.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2013,159,13.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2013,159,7.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2013,159,43.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2013,159,18.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2013,159,10.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2013,159,2.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2013,159,9.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2013,159,4.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2013,159,42.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2013,159,48.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2013,159,6.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2013,159,43.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2013,159,9.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2013,159,13.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2013,159,8.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2013,159,31.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2013,159,4.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2013,159,365.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2013,159,64.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2013,159,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2013,159,5.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2013,159,3.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2013,159,14.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2013,159,1.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2013,159,10.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2013,159,141.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2013,159,0.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2013,159,29.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2013,159,66.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2013,159,5.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2013,159,342.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2013,159,3.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2013,159,1.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2013,159,7.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2013,159,1.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,2.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,2.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2013,159,1.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2013,159,3.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,1.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,2.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,3.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2013,159,22.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2013,159,0.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2013,159,0.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2013,159,674.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2013,159,104.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2013,159,351.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2013,159,114.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2013,159,5.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2013,159,311.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2013,159,690.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2013,159,43.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2013,159,2026.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2013,159,321.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2013,159,133.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2013,159,664.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2013,159,17.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2013,159,36.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2013,159,32.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2013,159,228.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2013,159,9.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,5.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,17.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,140.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,251.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2013,159,575.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2013,159,692.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2013,159,1188.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2013,159,268.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2013,159,1222.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2013,159,1487.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2013,159,735.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2013,159,515.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,14.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,2309.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2013,159,2381.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,48.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,558.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,1175.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2013,159,896.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,289.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,1250.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2013,159,2556.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,198.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,1101.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2013,159,64.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,945.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2013,159,589.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2013,159,657.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,565.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,4091.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,700.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,931.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,2461.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2013,159,302.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,477.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,2325.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,4822.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2013,159,552.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,1166.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2013,159,2690.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,1112.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,14594.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,85.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,1187.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,71425.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,1934.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,119.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,128.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,78.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,121.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,76.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,2088.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,516.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,3491.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,900.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,673.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,462.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,3907.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2013,159,414.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,117.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,140.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2013,159,222.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,88.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,73.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,129.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,15.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2013,159,8.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,208.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,34.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,3.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,8.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,77.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,92.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,14.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,1440.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,1834.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,189.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,1172.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2013,159,3093.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2013,159,1605.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2013,159,1984.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,329.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,128.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,128.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,63.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,401.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,158.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2013,159,92.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2013,159,49.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2013,159,10807.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,1054.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2013,159,257.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,3065.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2013,159,138.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,2114.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,277.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,7006.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,1981.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2013,159,664.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2013,159,987.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2013,159,304.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2013,159,73.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,1312.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,5428.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2013,159,7110.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2013,159,1372.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2013,159,3229.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2013,159,972.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2013,159,274.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,1545.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2013,159,404.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2013,159,37310.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,670.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,776.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2013,159,455.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,9649.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,439.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,46.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,205.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,66.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2013,159,689.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2013,159,2600.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2013,159,698.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2013,159,210.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2013,159,1307.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2013,159,6336.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2013,159,62.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,2371.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,287.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,390.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,158.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2013,159,2516.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2013,159,159.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2013,159,10.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2013,159,12.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2013,159,1222.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2013,159,88.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2013,159,284.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2013,159,2427.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,1055.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2013,159,321.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2013,159,602.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2013,159,403.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,3776.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,4.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,211.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,1153.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2013,159,2023.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,620.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,141.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,1123.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,81.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2013,159,6.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,4.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,66.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,31.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,2.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,541.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,122.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,47.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,782.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2013,159,3439.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,33.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,3.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,1389.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,3126.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2013,159,733.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,260.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,252.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,868.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,77.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,1421.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2013,159,43.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2013,159,13843.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,4980.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1255.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1236.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,797.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,4039.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1108.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1448.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,527.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,2130.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,65.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,468.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,5.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,188.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,49.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,110.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,18.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,3.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,2.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,2.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1363.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,154.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1186.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,342.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,91.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,1.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,1.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,6.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,1.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,41.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2013,159,3.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2013,159,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,4.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,3.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,1.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,7.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,1.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,8.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,12.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,1.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,13.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2013,159,1.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,2.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,3.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2013,159,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,22.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,2.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2013,159,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,5.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,9.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2013,159,1.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2013,159,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2013,159,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2013,159,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2013,159,2.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,1.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2013,159,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,80.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,1.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,1.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2013,159,1.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2013,159,680.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2013,159,539.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2013,159,1240.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2013,159,5589.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2013,159,229.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2013,159,373.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2013,159,2007.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2013,159,423.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2013,159,635.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2013,159,2098.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2013,159,2585.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2013,159,229.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2013,159,418.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2013,159,444.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2013,159,534.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2013,159,52.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,594.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2013,159,1607.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,86.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2013,159,145.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,163.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,258.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2013,159,237.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,250.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2013,159,204.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2013,159,32.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,20.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,778.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2013,159,105.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,341.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,83.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,413.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2013,159,44.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2013,159,177.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2013,159,142.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2013,159,142.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2013,159,573.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2013,159,41.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2013,159,882.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2013,159,1768.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2013,159,130.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2013,159,265.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2013,159,17402.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2013,159,139.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2013,159,3845.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2013,159,4945.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2013,159,244.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2013,159,1603.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2013,159,100.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2013,159,156.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2013,159,612.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2013,159,1697.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2013,160,85.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2013,160,13.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2013,160,18.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2013,160,108.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2013,160,45.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2013,160,171.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2013,160,115.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2013,160,65.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2013,160,2.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2013,160,1.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2013,160,0.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2013,160,140.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2013,160,12.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2013,160,60.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2013,160,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2013,160,17.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2013,160,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2013,160,47.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2013,160,138.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2013,160,2248.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2013,160,2.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2013,160,21.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2013,160,36.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2013,160,6.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2013,160,7.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2013,160,63.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2013,160,13.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2013,160,4.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2013,160,11.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2013,160,24.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2013,160,23.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2013,160,230.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2013,160,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2013,160,0.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2013,160,12.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2013,160,18.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2013,160,182.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2013,160,36.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2013,160,32.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2013,160,18.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2013,160,5.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2013,160,35.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2013,160,17.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2013,160,88.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2013,160,188.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2013,160,45.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2013,160,57.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2013,160,93.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2013,160,178.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2013,160,109.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2013,160,83.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2013,160,35.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2013,160,129.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2013,160,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2013,160,249.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2013,160,7.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2013,160,80.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2013,160,83.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2013,160,68.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2013,160,135.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2013,160,102.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2013,160,732.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2013,160,10.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2013,160,128.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2013,160,9.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2013,160,230.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2013,160,9.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2013,160,10.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2013,160,7.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2013,160,8.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2013,160,28.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2013,160,65.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2013,160,59.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2013,160,54.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2013,160,57.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2013,160,15.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2013,160,3.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2013,160,5.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2013,160,2.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2013,160,3.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2013,160,13.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2013,160,45.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2013,160,17.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2013,160,27.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2013,160,1.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2013,160,21.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2013,160,50.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2013,160,322.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2013,160,64.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2013,160,27.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2013,160,48.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2013,160,28.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2013,160,13.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2013,160,16.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2013,160,47.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2013,160,56.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2013,160,28.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2013,160,42.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2013,160,4.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2013,160,62.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2013,160,292.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2013,160,31.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2013,160,106.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2013,160,2.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2013,160,124.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2013,160,230.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2013,160,8.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2013,160,70.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2013,160,27.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2013,160,52.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2013,160,8.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2013,160,180.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2013,160,75.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2013,160,40.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2013,160,111.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2013,160,2050.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2013,160,269.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2013,160,123.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2013,160,225.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2013,160,103.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2013,160,56.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2013,160,15.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2013,160,24.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2013,160,4.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2013,160,46.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2013,160,43.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2013,160,12.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2013,160,8.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2013,160,20.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2013,160,5.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2013,160,161.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2013,160,150.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2013,160,76.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,38.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,5.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,19.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,6.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2013,160,134.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2013,160,340.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2013,160,75.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,9.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,3.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,133.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,218.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,484.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,1.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2013,160,174.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2013,160,347.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2013,160,8.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2013,160,22.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2013,160,404.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2013,160,8.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2013,160,54.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2013,160,243.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2013,160,240.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2013,160,121.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2013,160,92.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2013,160,23.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2013,160,327.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2013,160,21.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2013,160,78.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2013,160,18.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2013,160,14.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2013,160,104.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2013,160,56.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2013,160,31.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2013,160,59.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2013,160,29.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2013,160,131.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2013,160,2.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2013,160,1.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2013,160,35.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2013,160,14.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2013,160,199.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2013,160,8.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2013,160,8.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2013,160,46.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2013,160,37.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2013,160,6.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2013,160,6.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2013,160,15.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2013,160,2.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2013,160,106.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2013,160,48.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2013,160,23.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2013,160,92.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2013,160,17.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2013,160,26.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2013,160,17.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2013,160,28.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2013,160,29.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2013,160,688.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2013,160,95.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2013,160,6.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2013,160,4.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2013,160,8.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2013,160,30.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2013,160,5.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2013,160,14.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2013,160,335.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2013,160,1.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2013,160,80.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2013,160,97.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2013,160,29.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2013,160,328.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2013,160,14.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2013,160,13.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2013,160,13.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2013,160,9.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,2.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,1.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2013,160,8.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2013,160,3.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,2.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,1.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,4.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,1.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2013,160,32.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2013,160,2.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2013,160,1.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2013,160,654.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2013,160,80.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2013,160,257.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2013,160,207.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2013,160,6.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2013,160,158.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2013,160,106.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2013,160,96.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2013,160,1115.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2013,160,714.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2013,160,200.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2013,160,514.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2013,160,4.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2013,160,37.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2013,160,35.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2013,160,187.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2013,160,6.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,5.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,15.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,337.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,263.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2013,160,174.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2013,160,475.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2013,160,699.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2013,160,193.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2013,160,501.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2013,160,364.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2013,160,918.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2013,160,206.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,36.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,2785.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2013,160,970.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,81.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,755.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,477.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2013,160,452.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,383.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,795.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2013,160,1031.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,32.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,485.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2013,160,63.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,459.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2013,160,433.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2013,160,258.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,434.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,1455.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,245.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,761.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,2382.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2013,160,302.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,955.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,1975.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,1949.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2013,160,816.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,1506.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2013,160,1881.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,940.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,6834.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,72.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,1744.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,71865.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,1414.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,211.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,202.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,83.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,62.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,94.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,1024.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,440.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,1243.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,279.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,515.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,229.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,5874.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2013,160,423.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,261.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,193.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2013,160,451.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,275.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,108.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,163.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,13.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2013,160,16.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,257.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,32.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,8.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,7.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,168.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,105.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,34.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,802.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,1138.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,324.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,526.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2013,160,2106.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2013,160,2963.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2013,160,648.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,448.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,162.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,214.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,81.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,183.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,595.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2013,160,70.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2013,160,55.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2013,160,7655.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,754.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2013,160,160.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,3088.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2013,160,260.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,1484.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,56.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,2910.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,1150.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2013,160,111.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2013,160,624.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2013,160,310.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2013,160,4.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,1527.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,4878.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2013,160,4992.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2013,160,969.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2013,160,2146.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2013,160,874.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2013,160,304.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,342.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2013,160,296.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2013,160,35290.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,1263.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,683.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2013,160,622.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,7779.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,591.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,59.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,243.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,63.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2013,160,125.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2013,160,1258.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2013,160,132.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2013,160,186.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2013,160,1439.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2013,160,6717.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2013,160,83.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,1229.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,330.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,418.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,152.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2013,160,2831.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2013,160,332.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2013,160,11.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2013,160,15.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2013,160,1335.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2013,160,141.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2013,160,447.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2013,160,2603.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,1287.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2013,160,259.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2013,160,722.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2013,160,551.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,6041.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,18.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,253.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,682.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2013,160,1675.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,692.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,214.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,886.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,86.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2013,160,4.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,6.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,96.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,21.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,10.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,786.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,151.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,55.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,2.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,707.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2013,160,1989.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,51.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,2.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,1520.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,1426.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2013,160,768.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,332.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,365.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,967.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,98.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,1639.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2013,160,46.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2013,160,10238.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,2590.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1595.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,929.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,906.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1643.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1001.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1701.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,456.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1669.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,78.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,875.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,3.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,267.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,119.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,223.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,43.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,4.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,4.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,910.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,158.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,1514.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,256.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,69.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,5.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,1.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,33.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,1.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,1.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,1.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,49.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2013,160,3.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2013,160,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,14.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,4.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,4.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,1.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,1.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,3.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,1.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,3.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,6.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,11.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,20.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2013,160,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,3.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,6.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2013,160,3.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,11.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,2.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2013,160,1.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,8.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,6.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,1.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2013,160,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2013,160,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2013,160,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2013,160,1.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2013,160,4.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,1.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,1.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2013,160,1.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,54.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,1.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,4.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,3.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2013,160,1.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2013,160,232.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2013,160,151.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2013,160,692.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2013,160,1839.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2013,160,275.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2013,160,545.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2013,160,1730.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2013,160,92.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2013,160,547.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2013,160,973.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2013,160,1285.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2013,160,129.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2013,160,219.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2013,160,186.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2013,160,536.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2013,160,32.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,408.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2013,160,975.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,34.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2013,160,99.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,183.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,102.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2013,160,114.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,142.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2013,160,91.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2013,160,29.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,6.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,692.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2013,160,40.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,129.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,17.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,183.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2013,160,24.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2013,160,90.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2013,160,122.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2013,160,112.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2013,160,359.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2013,160,89.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2013,160,615.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2013,160,1765.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2013,160,76.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2013,160,157.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2013,160,10918.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2013,160,326.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2013,160,4729.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2013,160,3117.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2013,160,140.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2013,160,1344.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2013,160,119.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2013,160,205.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2013,160,353.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2013,160,3226.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2013,161,72.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2013,161,5.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2013,161,12.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2013,161,88.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2013,161,6.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2013,161,91.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2013,161,48.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2013,161,18.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2013,161,0.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2013,161,2.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2013,161,0.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2013,161,70.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2013,161,16.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2013,161,32.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2013,161,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2013,161,10.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2013,161,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2013,161,71.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2013,161,58.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2013,161,1239.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2013,161,2.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2013,161,1.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2013,161,17.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2013,161,0.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2013,161,0.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2013,161,33.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2013,161,26.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2013,161,8.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2013,161,48.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2013,161,47.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2013,161,27.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2013,161,94.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2013,161,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2013,161,0.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2013,161,0.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2013,161,12.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2013,161,53.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2013,161,10.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2013,161,8.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2013,161,4.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2013,161,10.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2013,161,3.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2013,161,8.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2013,161,29.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2013,161,67.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2013,161,47.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2013,161,32.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2013,161,93.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2013,161,161.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2013,161,27.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2013,161,33.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2013,161,21.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2013,161,28.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2013,161,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2013,161,110.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2013,161,1.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2013,161,52.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2013,161,118.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2013,161,44.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2013,161,42.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2013,161,54.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2013,161,463.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2013,161,18.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2013,161,105.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2013,161,11.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2013,161,232.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2013,161,16.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2013,161,8.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2013,161,3.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2013,161,5.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2013,161,19.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2013,161,35.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2013,161,25.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2013,161,36.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2013,161,36.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2013,161,2.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2013,161,0.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2013,161,2.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2013,161,2.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2013,161,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2013,161,15.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2013,161,32.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2013,161,12.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2013,161,10.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2013,161,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2013,161,16.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2013,161,46.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2013,161,325.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2013,161,66.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2013,161,11.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2013,161,33.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2013,161,18.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2013,161,3.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2013,161,6.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2013,161,91.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2013,161,17.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2013,161,38.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2013,161,57.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2013,161,11.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2013,161,29.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2013,161,298.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2013,161,24.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2013,161,26.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2013,161,1.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2013,161,181.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2013,161,162.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2013,161,9.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2013,161,164.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2013,161,42.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2013,161,41.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2013,161,4.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2013,161,101.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2013,161,82.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2013,161,75.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2013,161,117.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2013,161,2316.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2013,161,114.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2013,161,167.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2013,161,361.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2013,161,52.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2013,161,27.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2013,161,10.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2013,161,32.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2013,161,5.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2013,161,13.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2013,161,24.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2013,161,10.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2013,161,52.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2013,161,29.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2013,161,12.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2013,161,159.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2013,161,113.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2013,161,67.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,48.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,1.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,44.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,17.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2013,161,83.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2013,161,273.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2013,161,13.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,5.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,6.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,113.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,54.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,451.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,6.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2013,161,145.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2013,161,431.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2013,161,13.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2013,161,68.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2013,161,635.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2013,161,10.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2013,161,56.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2013,161,186.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2013,161,271.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2013,161,79.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2013,161,84.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2013,161,26.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2013,161,512.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2013,161,23.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2013,161,58.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2013,161,56.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2013,161,14.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2013,161,75.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2013,161,22.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2013,161,49.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2013,161,128.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2013,161,41.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2013,161,137.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2013,161,13.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2013,161,8.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2013,161,26.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2013,161,22.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2013,161,424.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2013,161,9.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2013,161,5.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2013,161,15.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2013,161,101.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2013,161,7.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2013,161,7.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2013,161,20.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2013,161,9.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2013,161,139.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2013,161,52.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2013,161,26.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2013,161,82.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2013,161,14.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2013,161,37.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2013,161,28.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2013,161,57.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2013,161,52.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2013,161,702.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2013,161,83.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2013,161,8.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2013,161,18.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2013,161,25.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2013,161,35.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2013,161,4.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2013,161,25.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2013,161,793.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2013,161,1.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2013,161,114.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2013,161,88.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2013,161,73.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2013,161,993.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2013,161,18.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2013,161,19.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2013,161,11.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2013,161,30.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,5.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,3.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2013,161,5.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2013,161,2.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,2.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,4.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,2.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,3.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2013,161,64.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2013,161,12.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2013,161,2.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2013,161,771.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2013,161,61.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2013,161,137.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2013,161,253.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2013,161,3.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2013,161,216.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2013,161,45.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2013,161,38.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2013,161,387.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2013,161,250.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2013,161,75.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2013,161,222.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2013,161,3.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2013,161,77.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2013,161,32.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2013,161,140.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2013,161,9.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,0.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,15.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,183.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,210.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2013,161,41.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2013,161,210.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2013,161,158.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2013,161,83.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2013,161,162.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2013,161,178.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2013,161,328.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2013,161,49.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,27.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,1401.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2013,161,375.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,86.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,607.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,166.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2013,161,151.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,84.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,329.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2013,161,284.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,5.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,121.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2013,161,27.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,135.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2013,161,114.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2013,161,31.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,140.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,211.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,80.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,251.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,959.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2013,161,129.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,418.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,707.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,649.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2013,161,418.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,558.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2013,161,637.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,305.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,1155.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,52.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,276.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,14500.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,290.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,42.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,51.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,29.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,21.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,43.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,288.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,99.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,222.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,75.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,294.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,82.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,2920.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2013,161,178.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,156.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,55.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2013,161,257.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,183.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,19.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,50.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,4.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2013,161,6.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,34.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,7.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,4.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,42.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,43.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,12.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,109.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,193.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,141.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,135.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2013,161,507.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2013,161,1082.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2013,161,121.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,119.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,152.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,267.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,83.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,100.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,334.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2013,161,41.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2013,161,50.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2013,161,5931.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,359.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2013,161,92.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,1101.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2013,161,105.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,661.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,24.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,1341.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,254.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2013,161,13.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2013,161,25.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2013,161,49.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2013,161,3.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,611.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,1578.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2013,161,969.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2013,161,194.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2013,161,657.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2013,161,144.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2013,161,50.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,109.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2013,161,61.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2013,161,11201.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,882.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,500.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2013,161,529.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,2593.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,258.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,24.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,127.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,45.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2013,161,40.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2013,161,179.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2013,161,28.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2013,161,67.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2013,161,690.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2013,161,2320.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2013,161,38.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,534.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,163.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,388.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,90.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2013,161,1375.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2013,161,225.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2013,161,4.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2013,161,4.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2013,161,507.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2013,161,68.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2013,161,272.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2013,161,1201.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,629.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2013,161,110.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2013,161,207.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2013,161,196.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,2865.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,8.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,192.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,246.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2013,161,971.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,722.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,154.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,154.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,32.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2013,161,1.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,4.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,26.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,2.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,2.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,326.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,65.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,17.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,2.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,269.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2013,161,268.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,30.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,3.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,854.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,189.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2013,161,137.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,138.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,265.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,435.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,31.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,642.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2013,161,18.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2013,161,1695.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,1059.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,539.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,397.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,312.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,350.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,512.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,702.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,146.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,542.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,33.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,354.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,5.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,103.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,29.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,214.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,27.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,1.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,1.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,4.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,259.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,76.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,263.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,60.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,18.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,2.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,4.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,12.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2013,161,2.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2013,161,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,2.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,7.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,1.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,2.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,1.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,5.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,3.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2013,161,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,4.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2013,161,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,2.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,1.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2013,161,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,2.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2013,161,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2013,161,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2013,161,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2013,161,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2013,161,2.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2013,161,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,31.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,1.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2013,161,1.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2013,161,74.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2013,161,40.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2013,161,211.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2013,161,947.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2013,161,187.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2013,161,157.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2013,161,789.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2013,161,5.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2013,161,186.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2013,161,379.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2013,161,321.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2013,161,66.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2013,161,83.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2013,161,149.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2013,161,215.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2013,161,50.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,268.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2013,161,713.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,20.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2013,161,32.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,91.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,20.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2013,161,45.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,54.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2013,161,32.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2013,161,15.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,0.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,331.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2013,161,10.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,18.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,7.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,63.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2013,161,20.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2013,161,41.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2013,161,99.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2013,161,65.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2013,161,151.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2013,161,79.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2013,161,478.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2013,161,1210.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2013,161,40.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2013,161,75.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2013,161,4428.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2013,161,458.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2013,161,4209.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2013,161,978.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2013,161,142.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2013,161,649.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2013,161,129.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2013,161,103.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2013,161,126.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2013,161,2920.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2013,162,35.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2013,162,4.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2013,162,20.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2013,162,35.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2013,162,3.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2013,162,35.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2013,162,20.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2013,162,7.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2013,162,0.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2013,162,2.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2013,162,6.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2013,162,44.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2013,162,26.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2013,162,17.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2013,162,1.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2013,162,3.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2013,162,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2013,162,126.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2013,162,23.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2013,162,716.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2013,162,3.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2013,162,6.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2013,162,7.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2013,162,0.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2013,162,1.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2013,162,37.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2013,162,16.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2013,162,14.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2013,162,37.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2013,162,52.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2013,162,5.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2013,162,15.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2013,162,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2013,162,3.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2013,162,0.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2013,162,2.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2013,162,17.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2013,162,4.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2013,162,3.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2013,162,1.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2013,162,3.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2013,162,0.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2013,162,3.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2013,162,8.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2013,162,24.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2013,162,7.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2013,162,10.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2013,162,31.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2013,162,28.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2013,162,17.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2013,162,7.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2013,162,13.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2013,162,2.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2013,162,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2013,162,42.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2013,162,1.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2013,162,25.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2013,162,78.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2013,162,18.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2013,162,22.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2013,162,12.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2013,162,248.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2013,162,3.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2013,162,42.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2013,162,3.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2013,162,180.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2013,162,2.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2013,162,3.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2013,162,1.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2013,162,2.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2013,162,3.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2013,162,17.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2013,162,19.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2013,162,7.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2013,162,9.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2013,162,9.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2013,162,5.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2013,162,1.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2013,162,1.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2013,162,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2013,162,21.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2013,162,17.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2013,162,11.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2013,162,10.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2013,162,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2013,162,11.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2013,162,83.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2013,162,228.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2013,162,83.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2013,162,8.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2013,162,15.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2013,162,6.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2013,162,0.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2013,162,1.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2013,162,156.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2013,162,4.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2013,162,12.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2013,162,21.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2013,162,51.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2013,162,15.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2013,162,63.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2013,162,40.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2013,162,14.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2013,162,1.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2013,162,58.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2013,162,286.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2013,162,23.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2013,162,113.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2013,162,23.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2013,162,22.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2013,162,17.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2013,162,48.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2013,162,94.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2013,162,97.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2013,162,68.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2013,162,2595.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2013,162,117.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2013,162,214.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2013,162,78.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2013,162,26.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2013,162,9.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2013,162,21.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2013,162,73.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2013,162,3.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2013,162,7.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2013,162,34.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2013,162,5.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2013,162,1.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2013,162,43.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2013,162,3.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2013,162,113.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2013,162,57.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2013,162,72.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,20.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,6.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,17.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,13.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2013,162,43.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2013,162,71.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2013,162,14.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,15.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,19.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,35.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,144.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,206.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,14.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2013,162,144.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2013,162,198.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2013,162,36.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2013,162,67.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2013,162,912.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2013,162,3.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2013,162,115.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2013,162,128.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2013,162,167.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2013,162,27.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2013,162,22.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2013,162,11.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2013,162,261.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2013,162,28.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2013,162,61.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2013,162,44.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2013,162,31.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2013,162,33.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2013,162,16.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2013,162,51.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2013,162,134.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2013,162,31.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2013,162,102.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2013,162,9.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2013,162,1.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2013,162,37.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2013,162,23.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2013,162,460.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2013,162,4.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2013,162,3.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2013,162,9.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2013,162,69.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2013,162,2.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2013,162,10.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2013,162,14.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2013,162,7.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2013,162,75.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2013,162,56.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2013,162,11.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2013,162,45.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2013,162,19.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2013,162,16.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2013,162,14.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2013,162,25.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2013,162,12.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2013,162,418.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2013,162,62.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2013,162,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2013,162,8.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2013,162,14.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2013,162,26.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2013,162,7.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2013,162,33.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2013,162,769.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2013,162,3.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2013,162,29.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2013,162,32.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2013,162,98.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2013,162,612.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2013,162,8.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2013,162,21.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2013,162,2.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2013,162,2.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,4.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,6.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2013,162,1.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2013,162,12.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,2.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,1.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,3.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,2.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2013,162,63.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2013,162,7.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2013,162,5.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2013,162,279.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2013,162,31.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2013,162,58.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2013,162,133.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2013,162,8.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2013,162,62.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2013,162,20.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2013,162,21.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2013,162,108.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2013,162,117.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2013,162,50.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2013,162,132.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2013,162,2.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2013,162,17.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2013,162,27.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2013,162,112.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2013,162,5.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,2.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,12.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,106.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,211.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2013,162,13.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2013,162,33.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2013,162,36.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2013,162,36.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2013,162,29.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2013,162,20.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2013,162,73.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2013,162,8.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,20.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,532.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2013,162,155.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,33.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,353.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,52.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2013,162,42.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,10.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,108.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2013,162,50.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,2.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,21.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2013,162,1.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,71.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2013,162,34.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2013,162,3.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,14.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,48.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,25.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,76.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,261.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2013,162,68.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,226.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,226.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,187.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2013,162,139.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,160.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2013,162,207.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,76.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,251.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,13.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,61.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,2306.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,92.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,13.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,5.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,3.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,4.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,19.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,145.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,9.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,107.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,23.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,53.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,38.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,915.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2013,162,31.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,15.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,15.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2013,162,93.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,63.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,4.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,18.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,0.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,6,2013,162,3.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,11.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,0.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,1.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,1.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,11.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,15.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,2.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,33.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,39.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,21.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,32.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2013,162,138.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2013,162,114.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2013,162,16.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,65.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,166.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,67.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,74.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,99.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,145.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2013,162,9.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,6,2013,162,7.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,6,2013,162,2826.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,162.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,6,2013,162,30.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,252.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,6,2013,162,25.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,216.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,6.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,493.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,145.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2013,162,0.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2013,162,24.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,6,2013,162,0.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2013,162,0.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,154.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,229.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2013,162,127.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,6,2013,162,38.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2013,162,152.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,6,2013,162,9.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,6,2013,162,11.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,25.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,6,2013,162,9.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,6,2013,162,2984.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,242.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,152.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,6,2013,162,221.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,481.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,68.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,7.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,22.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,8.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,6,2013,162,27.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,6,2013,162,20.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,6,2013,162,4.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,6,2013,162,15.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,6,2013,162,117.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,6,2013,162,338.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,6,2013,162,14.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,136.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,35.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,122.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,19.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,6,2013,162,264.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,6,2013,162,17.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,6,2013,162,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,6,2013,162,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,6,2013,162,128.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,6,2013,162,35.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,6,2013,162,86.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2013,162,143.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,104.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2013,162,26.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2013,162,29.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,6,2013,162,46.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,677.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,1.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,34.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,100.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,6,2013,162,296.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,291.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,30.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,17.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,5.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,6,2013,162,0.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,1.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,2.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,2.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,40.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,13.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,5.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,83.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,6,2013,162,23.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,8.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,0.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,352.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,27.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,6,2013,162,29.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,36.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,31.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,62.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,11.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,176.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,6,2013,162,4.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,6,2013,162,277.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,209.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,171.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,87.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,40.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,51.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,124.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,162.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,19.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,66.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,10.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,75.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,23.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,16.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,55.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,2.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,0.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,1.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,43.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,16.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,60.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,7.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,5.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,1.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,4.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,6,2013,162,0.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,6,2013,162,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,1.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,4.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,2.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,4.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,6,2013,162,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,2.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,6,2013,162,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,1.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2013,162,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2013,162,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2013,162,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2013,162,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2013,162,1.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,6,2013,162,0.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,6,2013,162,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,5.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,1.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,6,2013,162,0.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,6,2013,162,41.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,6,2013,162,9.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2013,162,91.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2013,162,351.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2013,162,54.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2013,162,35.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,6,2013,162,46.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,6,2013,162,4.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,6,2013,162,57.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,6,2013,162,61.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,6,2013,162,92.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,6,2013,162,19.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,6,2013,162,62.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,6,2013,162,38.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,6,2013,162,55.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,6,2013,162,18.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,104.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,6,2013,162,321.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,12.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,6,2013,162,17.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,31.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,2.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,6,2013,162,11.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,24.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,6,2013,162,27.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,6,2013,162,5.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,1.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,153.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,6,2013,162,4.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,11.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,3.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,25.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,6,2013,162,5.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,6,2013,162,8.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,6,2013,162,31.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,6,2013,162,23.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,6,2013,162,33.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,6,2013,162,58.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,6,2013,162,162.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,6,2013,162,474.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,6,2013,162,9.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,6,2013,162,45.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,6,2013,162,2091.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,6,2013,162,124.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,6,2013,162,2119.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,6,2013,162,261.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,6,2013,162,43.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,6,2013,162,210.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,6,2013,162,38.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,6,2013,162,30.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,6,2013,162,32.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,6,2013,162,1340.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,7,2013,163,17.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,7,2013,163,3.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,7,2013,163,20.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,7,2013,163,17.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,7,2013,163,2.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,7,2013,163,24.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,7,2013,163,21.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,7,2013,163,2.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,7,2013,163,2.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,7,2013,163,0.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,7,2013,163,5.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,7,2013,163,37.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,7,2013,163,21.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,7,2013,163,24.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,7,2013,163,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,7,2013,163,2.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,7,2013,163,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,7,2013,163,58.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,7,2013,163,22.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,7,2013,163,451.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,7,2013,163,1.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,7,2013,163,0.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,7,2013,163,3.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,7,2013,163,0.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,7,2013,163,0.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,7,2013,163,17.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,7,2013,163,26.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,7,2013,163,23.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,7,2013,163,24.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,7,2013,163,26.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,7,2013,163,4.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,7,2013,163,6.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,7,2013,163,1.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,7,2013,163,0.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,7,2013,163,5.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,7,2013,163,2.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,7,2013,163,19.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,7,2013,163,0.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,7,2013,163,4.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,7,2013,163,1.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,7,2013,163,4.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,7,2013,163,1.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,7,2013,163,0.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,7,2013,163,2.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,7,2013,163,14.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,7,2013,163,2.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,7,2013,163,6.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,7,2013,163,3.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,7,2013,163,20.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,7,2013,163,6.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,7,2013,163,1.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,7,2013,163,1.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,7,2013,163,2.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,7,2013,163,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,7,2013,163,36.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,7,2013,163,1.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,7,2013,163,10.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,7,2013,163,24.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,7,2013,163,9.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,7,2013,163,7.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,7,2013,163,3.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,7,2013,163,86.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,7,2013,163,1.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,7,2013,163,17.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,7,2013,163,1.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,7,2013,163,116.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,7,2013,163,1.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,7,2013,163,2.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,7,2013,163,0.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,7,2013,163,0.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,7,2013,163,0.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,7,2013,163,9.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,7,2013,163,4.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,7,2013,163,6.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,7,2013,163,7.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,7,2013,163,3.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,7,2013,163,1.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,7,2013,163,0.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,7,2013,163,1.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,7,2013,163,1.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,7,2013,163,8.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,7,2013,163,9.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,7,2013,163,4.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,7,2013,163,3.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,7,2013,163,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2013,163,13.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,7,2013,163,95.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,7,2013,163,175.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,7,2013,163,33.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,7,2013,163,0.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,7,2013,163,52.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2013,163,16.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,7,2013,163,6.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,7,2013,163,0.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,7,2013,163,25.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,7,2013,163,10.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,7,2013,163,2.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,7,2013,163,15.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,7,2013,163,33.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,7,2013,163,11.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,7,2013,163,71.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,7,2013,163,25.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,7,2013,163,9.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,7,2013,163,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,7,2013,163,84.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,7,2013,163,212.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,7,2013,163,27.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,7,2013,163,144.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,7,2013,163,36.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,7,2013,163,25.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,7,2013,163,59.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,7,2013,163,37.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,7,2013,163,95.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,7,2013,163,165.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,7,2013,163,72.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,7,2013,163,2292.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,7,2013,163,6.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,7,2013,163,239.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,7,2013,163,78.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,7,2013,163,45.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,7,2013,163,6.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,7,2013,163,63.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,7,2013,163,135.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,7,2013,163,9.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,7,2013,163,1.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,7,2013,163,97.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,7,2013,163,1.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,7,2013,163,2.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,7,2013,163,26.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,7,2013,163,4.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,7,2013,163,62.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,7,2013,163,43.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,7,2013,163,74.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,10.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,6.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,6.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,7.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2013,163,9.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2013,163,71.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2013,163,12.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,14.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,15.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,7.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,240.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,112.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,11.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,7,2013,163,151.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2013,163,181.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2013,163,10.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,7,2013,163,57.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2013,163,942.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,7,2013,163,3.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,7,2013,163,130.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,7,2013,163,59.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,7,2013,163,159.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,7,2013,163,18.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,7,2013,163,11.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,7,2013,163,20.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,7,2013,163,69.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2013,163,19.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,7,2013,163,76.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2013,163,41.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,7,2013,163,33.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,7,2013,163,30.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,7,2013,163,27.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,7,2013,163,27.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,7,2013,163,103.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,7,2013,163,33.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,7,2013,163,221.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,7,2013,163,4.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,7,2013,163,0.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,7,2013,163,55.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,7,2013,163,20.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,7,2013,163,423.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,7,2013,163,4.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,7,2013,163,5.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,7,2013,163,16.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,7,2013,163,28.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,7,2013,163,1.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,7,2013,163,12.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,7,2013,163,3.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,7,2013,163,2.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,7,2013,163,50.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2013,163,29.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,7,2013,163,24.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,7,2013,163,10.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2013,163,12.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2013,163,20.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2013,163,12.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2013,163,8.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2013,163,6.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,7,2013,163,302.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,7,2013,163,37.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,7,2013,163,1.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,7,2013,163,6.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,7,2013,163,7.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,7,2013,163,32.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,7,2013,163,4.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,7,2013,163,13.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,7,2013,163,355.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,7,2013,163,4.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2013,163,14.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,7,2013,163,26.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,7,2013,163,44.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,7,2013,163,404.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,7,2013,163,11.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,7,2013,163,69.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,7,2013,163,2.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,7,2013,163,8.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,2.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,0.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,7,2013,163,0.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,7,2013,163,3.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,4.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,1.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,2.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,7,2013,163,31.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,7,2013,163,5.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,7,2013,163,1.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,7,2013,163,21.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,7,2013,163,2.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,7,2013,163,13.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,7,2013,163,29.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,7,2013,163,6.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,7,2013,163,67.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,7,2013,163,6.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,7,2013,163,11.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,7,2013,163,21.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,7,2013,163,64.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,7,2013,163,33.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,7,2013,163,135.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,7,2013,163,3.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,7,2013,163,19.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,7,2013,163,21.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,7,2013,163,84.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,7,2013,163,6.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,1.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,16.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,99.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,210.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,7,2013,163,11.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,7,2013,163,3.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,7,2013,163,14.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2013,163,9.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,7,2013,163,17.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,7,2013,163,10.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,7,2013,163,41.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,7,2013,163,8.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,11.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,254.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,7,2013,163,104.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,41.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,176.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,20.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,7,2013,163,10.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,7.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,5.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,7,2013,163,17.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,0.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,0.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,7,2013,163,0.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,30.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2013,163,13.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,7,2013,163,0.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,5.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,16.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,9.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,8.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,81.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,7,2013,163,17.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,109.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,84.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,59.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,7,2013,163,55.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,29.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,7,2013,163,78.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,21.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,26.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,1.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,5.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,285.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,22.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,1.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,16.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,79.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,4.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,41.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,4.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,22.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,10.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,111.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,7,2013,163,10.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,5.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,12.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,7,2013,163,18.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,9.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,1.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,1.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,2.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,7,2013,163,0.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,1.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,2.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,3.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,1.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,6.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,10.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,12.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,6.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,7,2013,163,12.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,7,2013,163,10.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,7,2013,163,1.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,13.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,113.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,28.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,42.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,48.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,48.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2013,163,2.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,7,2013,163,7.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,7,2013,163,1551.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,107.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,7,2013,163,8.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,38.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,7,2013,163,9.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,76.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,1.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,164.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,25.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2013,163,0.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2013,163,0.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,7,2013,163,0.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2013,163,0.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,14.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,44.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2013,163,25.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,7,2013,163,16.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2013,163,33.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,7,2013,163,2.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,7,2013,163,1.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,14.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,7,2013,163,1.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,7,2013,163,1059.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,35.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,38.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,7,2013,163,72.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,95.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,36.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,0.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,4.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,4.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,7,2013,163,6.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,7,2013,163,4.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,7,2013,163,1.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,7,2013,163,5.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,7,2013,163,45.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,7,2013,163,59.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,7,2013,163,4.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,50.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,25.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,29.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,3.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,7,2013,163,49.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,7,2013,163,3.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,7,2013,163,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,7,2013,163,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,7,2013,163,32.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,7,2013,163,5.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,7,2013,163,23.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2013,163,21.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,20.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2013,163,6.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2013,163,7.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,7,2013,163,17.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,107.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,2.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,8.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,16.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,7,2013,163,78.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,56.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,17.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,10.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,2.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,7,2013,163,2.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,0.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,4.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,2.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,8.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,6.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,6.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,18.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,7,2013,163,7.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,7.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,0.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,83.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,0.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,7,2013,163,7.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,7.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,1.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,20.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,3.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,99.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,7,2013,163,7.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,7,2013,163,29.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,54.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,13.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,10.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,4.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,8.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,14.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,16.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,13.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,4.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,20.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,7.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,11.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,1.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,8.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,15.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,22.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,2.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,4.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,1.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,3.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,7,2013,163,0.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,7,2013,163,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,1.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,1.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,7,2013,163,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,7,2013,163,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2013,163,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2013,163,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2013,163,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2013,163,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2013,163,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,7,2013,163,1.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,7,2013,163,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,3.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,7,2013,163,0.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,7,2013,163,25.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,7,2013,163,10.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2013,163,29.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2013,163,217.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2013,163,6.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2013,163,31.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,7,2013,163,10.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,7,2013,163,2.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,7,2013,163,28.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,7,2013,163,34.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,7,2013,163,26.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,7,2013,163,20.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,7,2013,163,46.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,7,2013,163,19.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,7,2013,163,30.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,7,2013,163,12.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,49.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,7,2013,163,164.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,11.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,7,2013,163,1.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,7.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,4.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,7,2013,163,28.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,13.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,7,2013,163,8.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,7,2013,163,0.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,0.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,151.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,7,2013,163,5.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,5.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,0.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,19.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,7,2013,163,0.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,7,2013,163,6.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,7,2013,163,5.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,7,2013,163,6.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,7,2013,163,16.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,7,2013,163,32.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,7,2013,163,81.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,7,2013,163,193.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,7,2013,163,8.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,7,2013,163,11.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,7,2013,163,893.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,7,2013,163,12.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,7,2013,163,847.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,7,2013,163,110.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,7,2013,163,14.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,7,2013,163,48.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,7,2013,163,17.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,7,2013,163,15.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,7,2013,163,21.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,7,2013,163,611.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,8,2013,164,14.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,8,2013,164,1.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,8,2013,164,7.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,8,2013,164,13.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,8,2013,164,0.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,8,2013,164,20.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,8,2013,164,10.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,8,2013,164,3.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,8,2013,164,2.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,8,2013,164,0.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,8,2013,164,2.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,8,2013,164,13.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,8,2013,164,0.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,8,2013,164,10.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,8,2013,164,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,8,2013,164,4.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,8,2013,164,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,8,2013,164,18.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,8,2013,164,18.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,8,2013,164,272.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,8,2013,164,0.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,8,2013,164,0.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,8,2013,164,1.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,8,2013,164,0.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,8,2013,164,0.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,8,2013,164,32.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,8,2013,164,21.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,8,2013,164,5.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,8,2013,164,21.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,8,2013,164,32.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,8,2013,164,0.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,8,2013,164,3.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,8,2013,164,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,8,2013,164,0.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,8,2013,164,0.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,8,2013,164,8.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,8,2013,164,30.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,8,2013,164,1.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,8,2013,164,0.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,8,2013,164,1.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,8,2013,164,4.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,8,2013,164,2.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,8,2013,164,2.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,8,2013,164,3.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,8,2013,164,10.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,8,2013,164,5.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,8,2013,164,5.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,8,2013,164,4.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,8,2013,164,12.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,8,2013,164,3.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,8,2013,164,4.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,8,2013,164,3.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,8,2013,164,2.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,8,2013,164,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,8,2013,164,56.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,8,2013,164,0.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,8,2013,164,7.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,8,2013,164,24.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,8,2013,164,9.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,8,2013,164,3.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,8,2013,164,1.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,8,2013,164,72.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,8,2013,164,4.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,8,2013,164,4.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,8,2013,164,5.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,8,2013,164,129.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,8,2013,164,0.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,8,2013,164,5.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,8,2013,164,2.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,8,2013,164,2.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,8,2013,164,1.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,8,2013,164,7.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,8,2013,164,5.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,8,2013,164,3.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,8,2013,164,1.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,8,2013,164,2.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,8,2013,164,1.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,8,2013,164,0.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,8,2013,164,1.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,8,2013,164,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,8,2013,164,2.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,8,2013,164,4.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,8,2013,164,2.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,8,2013,164,7.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,8,2013,164,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2013,164,23.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,8,2013,164,60.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,8,2013,164,109.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,8,2013,164,12.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,8,2013,164,1.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,8,2013,164,3.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2013,164,5.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,8,2013,164,2.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,8,2013,164,0.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,8,2013,164,3.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,8,2013,164,5.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,8,2013,164,0.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,8,2013,164,2.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,8,2013,164,0.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,8,2013,164,4.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,8,2013,164,41.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,8,2013,164,21.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,8,2013,164,10.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,8,2013,164,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,8,2013,164,97.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,8,2013,164,118.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,8,2013,164,33.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,8,2013,164,58.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,8,2013,164,37.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,8,2013,164,7.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,8,2013,164,28.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,8,2013,164,117.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,8,2013,164,86.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,8,2013,164,81.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,8,2013,164,44.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,8,2013,164,1521.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,8,2013,164,5.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,8,2013,164,189.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,8,2013,164,86.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,8,2013,164,96.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,8,2013,164,29.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,8,2013,164,46.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,8,2013,164,137.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,8,2013,164,5.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,8,2013,164,1.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,8,2013,164,191.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,8,2013,164,3.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,8,2013,164,0.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,8,2013,164,16.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,8,2013,164,1.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,8,2013,164,31.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,8,2013,164,18.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,8,2013,164,56.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,10.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,22.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,0.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,7.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2013,164,19.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2013,164,31.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2013,164,5.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,8.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,10.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,9.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,237.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,64.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,4.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,8,2013,164,201.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2013,164,101.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2013,164,6.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,8,2013,164,31.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2013,164,793.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,8,2013,164,18.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,8,2013,164,125.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,8,2013,164,60.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,8,2013,164,96.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,8,2013,164,10.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,8,2013,164,3.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,8,2013,164,14.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,8,2013,164,19.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2013,164,10.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,8,2013,164,80.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2013,164,30.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,8,2013,164,30.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,8,2013,164,9.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,8,2013,164,11.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,8,2013,164,31.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,8,2013,164,77.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,8,2013,164,47.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,8,2013,164,270.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,8,2013,164,4.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,8,2013,164,2.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,8,2013,164,47.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,8,2013,164,10.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,8,2013,164,204.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,8,2013,164,2.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,8,2013,164,1.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,8,2013,164,12.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,8,2013,164,14.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,8,2013,164,2.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,8,2013,164,2.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,8,2013,164,2.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,8,2013,164,0.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,8,2013,164,42.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2013,164,19.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,8,2013,164,9.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,8,2013,164,6.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2013,164,9.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2013,164,23.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2013,164,6.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2013,164,6.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2013,164,2.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,8,2013,164,305.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,8,2013,164,35.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,8,2013,164,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,8,2013,164,2.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,8,2013,164,7.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,8,2013,164,25.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,8,2013,164,3.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,8,2013,164,20.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,8,2013,164,406.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,8,2013,164,0.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2013,164,3.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,8,2013,164,13.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,8,2013,164,18.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,8,2013,164,287.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,8,2013,164,5.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,8,2013,164,33.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,8,2013,164,1.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,8,2013,164,0.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,1.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,2.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,8,2013,164,1.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,8,2013,164,10.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,0.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,3.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,2.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,2.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,8,2013,164,19.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,8,2013,164,2.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,8,2013,164,2.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,8,2013,164,3.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,8,2013,164,2.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,8,2013,164,32.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,8,2013,164,21.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,8,2013,164,2.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,8,2013,164,15.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,8,2013,164,2.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,8,2013,164,16.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,8,2013,164,23.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,8,2013,164,40.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,8,2013,164,18.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,8,2013,164,89.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,8,2013,164,2.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,8,2013,164,13.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,8,2013,164,4.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,8,2013,164,36.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,8,2013,164,6.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,1.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,8.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,40.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,174.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,8,2013,164,3.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,8,2013,164,2.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,8,2013,164,17.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2013,164,4.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,8,2013,164,7.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,8,2013,164,8.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,8,2013,164,52.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,8,2013,164,0.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,8.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,116.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,8,2013,164,58.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,17.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,31.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,13.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,8,2013,164,12.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,1.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,4.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,8,2013,164,9.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,0.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,0.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,8,2013,164,0.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,4.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2013,164,8.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,8,2013,164,1.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,2.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,5.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,5.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,2.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,70.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,8,2013,164,4.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,43.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,34.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,36.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,8,2013,164,25.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,9.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,8,2013,164,21.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,21.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,9.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,0.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,0.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,119.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,3.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,2.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,1.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,2.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,2.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,37.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,1.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,13.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,3.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,12.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,4.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,37.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,8,2013,164,4.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,2.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,3.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,8,2013,164,13.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,3.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,1.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,8,2013,164,2.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,1.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,1.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,0.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,1.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,7.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,4.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,1.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,3.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,8,2013,164,1.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,8,2013,164,7.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,8,2013,164,0.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,3.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,24.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,16.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,20.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,28.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,26.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2013,164,0.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,8,2013,164,5.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,8,2013,164,994.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,20.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,8,2013,164,6.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,17.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,8,2013,164,1.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,55.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,3.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,52.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,10.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2013,164,0.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2013,164,0.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,8,2013,164,2.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2013,164,1.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,2.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,23.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2013,164,13.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,8,2013,164,5.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2013,164,12.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,8,2013,164,1.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,8,2013,164,2.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,12.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,8,2013,164,1.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,8,2013,164,501.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,19.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,17.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,8,2013,164,28.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,38.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,6.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,0.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,0.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,2.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,8,2013,164,3.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,8,2013,164,1.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,8,2013,164,2.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,8,2013,164,1.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,8,2013,164,16.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,8,2013,164,35.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,8,2013,164,3.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,18.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,2.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,13.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,1.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,8,2013,164,7.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,8,2013,164,0.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,8,2013,164,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,8,2013,164,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,8,2013,164,21.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,8,2013,164,4.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,8,2013,164,5.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2013,164,5.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,5.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2013,164,2.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2013,164,4.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,8,2013,164,10.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,58.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,2.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,6.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,19.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,8,2013,164,28.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,16.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,3.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,5.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,0.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,8,2013,164,0.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,0.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,0.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,0.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,10.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,6.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,5.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,21.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,8,2013,164,4.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,0.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,0.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,30.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,2.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,8,2013,164,1.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,3.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,1.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,11.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,1.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,49.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,8,2013,164,1.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,8,2013,164,11.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,17.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,5.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,2.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,6.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,9.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,3.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,3.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,20.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,2.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,1.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,1.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,1.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,10.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,1.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,2.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,1.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,1.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,8,2013,164,0.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,8,2013,164,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,1.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,1.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,8,2013,164,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,8,2013,164,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2013,164,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,1.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2013,164,1.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2013,164,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2013,164,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2013,164,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,8,2013,164,0.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,8,2013,164,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,1.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,2.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,1.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,8,2013,164,2.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,8,2013,164,14.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,8,2013,164,5.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2013,164,13.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2013,164,114.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2013,164,3.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2013,164,9.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,8,2013,164,6.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,8,2013,164,0.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,8,2013,164,7.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,8,2013,164,7.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,8,2013,164,2.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,8,2013,164,5.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,8,2013,164,51.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,8,2013,164,9.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,8,2013,164,9.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,8,2013,164,2.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,33.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,8,2013,164,95.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,3.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,8,2013,164,1.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,6.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,3.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,8,2013,164,5.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,1.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,8,2013,164,7.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,8,2013,164,0.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,0.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,116.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,8,2013,164,1.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,2.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,3.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,27.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,8,2013,164,2.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,8,2013,164,5.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,8,2013,164,2.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,8,2013,164,3.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,8,2013,164,38.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,8,2013,164,13.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,8,2013,164,27.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,8,2013,164,132.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,8,2013,164,1.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,8,2013,164,10.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,8,2013,164,789.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,8,2013,164,6.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,8,2013,164,399.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,8,2013,164,41.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,8,2013,164,6.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,8,2013,164,20.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,8,2013,164,10.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,8,2013,164,4.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,8,2013,164,5.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,8,2013,164,205.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,9,2013,165,9.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,9,2013,165,1.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,9,2013,165,5.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,9,2013,165,23.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,9,2013,165,0.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,9,2013,165,18.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,9,2013,165,14.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,9,2013,165,2.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,9,2013,165,1.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,9,2013,165,0.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,9,2013,165,5.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,9,2013,165,13.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,9,2013,165,3.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,9,2013,165,6.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,9,2013,165,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,9,2013,165,3.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,9,2013,165,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,9,2013,165,4.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,9,2013,165,8.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,9,2013,165,203.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,9,2013,165,1.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,9,2013,165,0.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,9,2013,165,2.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,9,2013,165,2.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,9,2013,165,0.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,9,2013,165,45.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,9,2013,165,44.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,9,2013,165,5.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,9,2013,165,18.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,9,2013,165,43.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,9,2013,165,7.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,9,2013,165,1.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,9,2013,165,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,9,2013,165,1.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,9,2013,165,0.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,9,2013,165,3.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,9,2013,165,18.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,9,2013,165,3.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,9,2013,165,4.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,9,2013,165,10.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,9,2013,165,4.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,9,2013,165,1.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,9,2013,165,5.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,9,2013,165,2.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,9,2013,165,11.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,9,2013,165,6.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,9,2013,165,8.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,9,2013,165,2.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,9,2013,165,9.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,9,2013,165,2.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,9,2013,165,1.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,9,2013,165,0.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,9,2013,165,0.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,9,2013,165,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,9,2013,165,33.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,9,2013,165,0.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,9,2013,165,8.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,9,2013,165,27.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,9,2013,165,7.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,9,2013,165,3.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,9,2013,165,3.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,9,2013,165,52.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,9,2013,165,3.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,9,2013,165,6.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,9,2013,165,16.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,9,2013,165,100.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,9,2013,165,1.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,9,2013,165,1.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,9,2013,165,4.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,9,2013,165,1.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,9,2013,165,0.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,9,2013,165,2.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,9,2013,165,2.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,9,2013,165,1.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,9,2013,165,1.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,9,2013,165,1.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,9,2013,165,0.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,9,2013,165,1.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,9,2013,165,3.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,9,2013,165,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,9,2013,165,4.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,9,2013,165,3.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,9,2013,165,6.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,9,2013,165,0.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,9,2013,165,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2013,165,8.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,9,2013,165,19.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,9,2013,165,115.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,9,2013,165,4.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,9,2013,165,1.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,9,2013,165,3.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2013,165,3.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,9,2013,165,1.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,9,2013,165,1.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,9,2013,165,3.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,9,2013,165,6.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,9,2013,165,0.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,9,2013,165,2.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,9,2013,165,1.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,9,2013,165,8.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,9,2013,165,11.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,9,2013,165,9.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,9,2013,165,2.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,9,2013,165,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,9,2013,165,50.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,9,2013,165,32.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,9,2013,165,9.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,9,2013,165,4.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,9,2013,165,11.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,9,2013,165,6.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,9,2013,165,20.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,9,2013,165,30.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,9,2013,165,19.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,9,2013,165,16.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,9,2013,165,17.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,9,2013,165,538.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,9,2013,165,2.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,9,2013,165,71.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,9,2013,165,39.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,9,2013,165,39.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,9,2013,165,26.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,9,2013,165,24.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,9,2013,165,82.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,9,2013,165,0.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,9,2013,165,1.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,9,2013,165,69.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,9,2013,165,1.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,9,2013,165,3.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,9,2013,165,10.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,9,2013,165,1.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,9,2013,165,21.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,9,2013,165,28.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,9,2013,165,58.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,4.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,16.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,0.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,4.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2013,165,19.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2013,165,13.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2013,165,7.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,3.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,2.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,2.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,97.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,88.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,5.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,9,2013,165,108.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2013,165,35.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2013,165,6.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,9,2013,165,18.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2013,165,432.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,9,2013,165,12.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,9,2013,165,41.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,9,2013,165,41.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,9,2013,165,29.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,9,2013,165,3.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,9,2013,165,2.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,9,2013,165,3.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,9,2013,165,9.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2013,165,6.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,9,2013,165,42.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2013,165,24.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,9,2013,165,16.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,9,2013,165,6.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,9,2013,165,1.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,9,2013,165,3.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,9,2013,165,23.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,9,2013,165,36.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,9,2013,165,239.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,9,2013,165,2.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,9,2013,165,1.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,9,2013,165,15.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,9,2013,165,8.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,9,2013,165,109.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,9,2013,165,9.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,9,2013,165,0.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,9,2013,165,23.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,9,2013,165,3.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,9,2013,165,0.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,9,2013,165,9.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,9,2013,165,0.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,9,2013,165,0.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,9,2013,165,22.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2013,165,18.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,9,2013,165,7.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,9,2013,165,3.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2013,165,7.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2013,165,18.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2013,165,1.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2013,165,8.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2013,165,3.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,9,2013,165,188.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,9,2013,165,18.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,9,2013,165,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,9,2013,165,2.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,9,2013,165,5.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,9,2013,165,33.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,9,2013,165,1.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,9,2013,165,19.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,9,2013,165,484.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,9,2013,165,0.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2013,165,7.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,9,2013,165,7.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,9,2013,165,7.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,9,2013,165,221.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,9,2013,165,4.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,9,2013,165,21.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,9,2013,165,8.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,9,2013,165,0.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,1.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,1.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,9,2013,165,2.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,9,2013,165,4.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,4.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,1.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,1.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,9,2013,165,14.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,9,2013,165,4.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,9,2013,165,2.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,9,2013,165,1.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,9,2013,165,0.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,9,2013,165,122.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,9,2013,165,25.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,9,2013,165,8.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,9,2013,165,1.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,9,2013,165,0.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,9,2013,165,13.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,9,2013,165,7.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,9,2013,165,13.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,9,2013,165,26.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,9,2013,165,105.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,9,2013,165,0.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,9,2013,165,9.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,9,2013,165,2.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,9,2013,165,53.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,9,2013,165,3.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,2.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,3.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,15.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,144.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,9,2013,165,5.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,9,2013,165,2.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,9,2013,165,27.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2013,165,0.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,9,2013,165,1.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,9,2013,165,8.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,9,2013,165,37.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,9,2013,165,3.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,4.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,67.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,9,2013,165,38.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,28.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,27.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,7.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,9,2013,165,4.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,1.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,0.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,9,2013,165,5.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,0.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,1.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,9,2013,165,0.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,0.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2013,165,3.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,9,2013,165,2.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,0.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,7.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,4.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,2.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,50.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,9,2013,165,5.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,35.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,13.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,59.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,9,2013,165,22.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,5.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,9,2013,165,48.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,24.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,8.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,0.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,1.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,112.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,5.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,2.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,1.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,1.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,2.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,7.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,22.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,1.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,37.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,2.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,3.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,0.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,15.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,9,2013,165,2.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,8.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,3.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,9,2013,165,6.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,1.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,1.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,4.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,7.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,2.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,0.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,3.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,9,2013,165,2.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,9,2013,165,5.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,9,2013,165,0.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,5.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,17.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,6.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,8.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,19.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,15.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2013,165,3.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,9,2013,165,724.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,18.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,9,2013,165,5.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,9.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,9,2013,165,10.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,62.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,1.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,49.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,7.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2013,165,0.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2013,165,2.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,9,2013,165,0.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2013,165,0.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,3.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,7.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2013,165,6.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,9,2013,165,1.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2013,165,7.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,9,2013,165,0.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,1.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,9,2013,165,1.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,9,2013,165,373.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,4.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,9.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,9,2013,165,24.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,22.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,2.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,0.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,2.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,2.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,9,2013,165,0.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,9,2013,165,3.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,9,2013,165,2.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,9,2013,165,3.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,9,2013,165,11.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,9,2013,165,30.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,9,2013,165,0.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,3.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,4.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,4.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,0.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,9,2013,165,10.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,9,2013,165,2.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,9,2013,165,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,9,2013,165,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,9,2013,165,7.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,9,2013,165,0.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,9,2013,165,9.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2013,165,10.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,10.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2013,165,0.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2013,165,0.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,9,2013,165,11.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,69.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,5.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,5.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,9,2013,165,22.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,10.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,3.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,6.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,0.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,9,2013,165,0.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,0.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,0.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,1.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,27.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,3.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,5.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,24.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,9,2013,165,3.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,7.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,2.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,9,2013,165,2.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,2.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,0.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,5.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,1.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,33.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,9,2013,165,2.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,9,2013,165,19.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,12.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,2.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,1.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,3.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,5.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,3.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,2.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,29.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,2.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,2.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,5.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,15.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,3.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,2.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,9,2013,165,0.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,9,2013,165,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,1.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,2.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,9,2013,165,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,9,2013,165,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2013,165,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2013,165,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2013,165,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2013,165,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2013,165,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,9,2013,165,0.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,9,2013,165,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,9,2013,165,0.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,9,2013,165,16.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,9,2013,165,1.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2013,165,10.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2013,165,90.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2013,165,0.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2013,165,2.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,9,2013,165,1.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,9,2013,165,0.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,9,2013,165,5.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,9,2013,165,6.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,9,2013,165,7.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,9,2013,165,14.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,9,2013,165,44.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,9,2013,165,13.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,9,2013,165,6.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,9,2013,165,3.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,17.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,9,2013,165,54.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,2.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,9,2013,165,1.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,2.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,4.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,9,2013,165,16.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,4.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,9,2013,165,7.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,9,2013,165,3.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,1.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,141.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,9,2013,165,3.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,2.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,0.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,22.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,9,2013,165,2.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,9,2013,165,6.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,9,2013,165,2.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,9,2013,165,6.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,9,2013,165,36.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,9,2013,165,4.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,9,2013,165,16.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,9,2013,165,88.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,9,2013,165,8.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,9,2013,165,0.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,9,2013,165,814.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,9,2013,165,5.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,9,2013,165,164.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,9,2013,165,22.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,9,2013,165,3.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,9,2013,165,9.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,9,2013,165,2.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,9,2013,165,2.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,9,2013,165,1.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,9,2013,165,146.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,10,2013,166,6.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,10,2013,166,3.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,10,2013,166,19.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,10,2013,166,25.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,10,2013,166,2.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,10,2013,166,49.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,10,2013,166,19.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,10,2013,166,2.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,10,2013,166,1.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,10,2013,166,1.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,10,2013,166,10.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,10,2013,166,12.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,10,2013,166,0.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,10,2013,166,20.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,10,2013,166,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,10,2013,166,3.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,10,2013,166,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,10,2013,166,11.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,10,2013,166,8.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,10,2013,166,197.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,10,2013,166,1.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,10,2013,166,1.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,10,2013,166,0.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,10,2013,166,0.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,10,2013,166,4.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,10,2013,166,45.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,10,2013,166,31.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,10,2013,166,5.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,10,2013,166,10.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,10,2013,166,38.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,10,2013,166,6.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,10,2013,166,8.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,10,2013,166,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,10,2013,166,0.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,10,2013,166,3.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,10,2013,166,0.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,10,2013,166,16.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,10,2013,166,0.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,10,2013,166,1.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,10,2013,166,7.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,10,2013,166,0.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,10,2013,166,1.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,10,2013,166,3.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,10,2013,166,3.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,10,2013,166,42.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,10,2013,166,5.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,10,2013,166,4.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,10,2013,166,1.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,10,2013,166,20.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,10,2013,166,2.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,10,2013,166,5.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,10,2013,166,1.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,10,2013,166,7.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,10,2013,166,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,10,2013,166,26.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,10,2013,166,0.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,10,2013,166,7.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,10,2013,166,19.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,10,2013,166,25.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,10,2013,166,8.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,10,2013,166,1.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,10,2013,166,49.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,10,2013,166,5.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,10,2013,166,4.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,10,2013,166,2.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,10,2013,166,55.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,10,2013,166,1.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,10,2013,166,0.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,10,2013,166,1.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,10,2013,166,0.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,10,2013,166,0.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,10,2013,166,2.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,10,2013,166,6.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,10,2013,166,5.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,10,2013,166,2.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,10,2013,166,2.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,10,2013,166,0.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,10,2013,166,0.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,10,2013,166,0.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,10,2013,166,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,10,2013,166,2.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,10,2013,166,0.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,10,2013,166,3.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,10,2013,166,2.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,10,2013,166,1.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2013,166,6.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,10,2013,166,4.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,10,2013,166,75.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,10,2013,166,4.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,10,2013,166,0.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,10,2013,166,0.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2013,166,0.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,10,2013,166,1.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,10,2013,166,1.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,10,2013,166,0.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,10,2013,166,3.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,10,2013,166,0.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,10,2013,166,1.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,10,2013,166,0.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,10,2013,166,1.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,10,2013,166,5.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,10,2013,166,4.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,10,2013,166,12.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,10,2013,166,2.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,10,2013,166,3.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,10,2013,166,3.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,10,2013,166,10.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,10,2013,166,15.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,10,2013,166,4.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,10,2013,166,5.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,10,2013,166,7.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,10,2013,166,283.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,10,2013,166,63.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,10,2013,166,26.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,10,2013,166,25.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,10,2013,166,27.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,10,2013,166,12.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,10,2013,166,47.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,10,2013,166,0.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,10,2013,166,1.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,10,2013,166,20.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,10,2013,166,9.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,10,2013,166,21.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,10,2013,166,0.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,10,2013,166,3.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,10,2013,166,19.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,10,2013,166,25.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,5.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,1.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,0.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,1.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2013,166,7.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2013,166,85.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2013,166,4.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,1.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,3.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,0.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,63.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,107.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,12.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,10,2013,166,46.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2013,166,16.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2013,166,4.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,10,2013,166,9.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2013,166,235.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,10,2013,166,3.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,10,2013,166,16.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,10,2013,166,7.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,10,2013,166,8.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,10,2013,166,2.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,10,2013,166,3.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,10,2013,166,2.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,10,2013,166,5.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2013,166,2.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,10,2013,166,41.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2013,166,23.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,10,2013,166,19.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,10,2013,166,9.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,10,2013,166,1.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,10,2013,166,6.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,10,2013,166,17.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,10,2013,166,29.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,10,2013,166,140.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,10,2013,166,8.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,10,2013,166,1.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,10,2013,166,10.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,10,2013,166,0.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,10,2013,166,98.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,10,2013,166,2.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,10,2013,166,1.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,10,2013,166,30.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,10,2013,166,4.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,10,2013,166,1.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,10,2013,166,2.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,10,2013,166,5.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,10,2013,166,0.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,10,2013,166,27.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2013,166,10.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,10,2013,166,3.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,10,2013,166,3.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2013,166,7.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2013,166,27.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2013,166,1.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2013,166,8.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2013,166,6.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,10,2013,166,159.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,10,2013,166,25.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,10,2013,166,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,10,2013,166,1.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,10,2013,166,1.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,10,2013,166,62.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,10,2013,166,3.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,10,2013,166,12.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,10,2013,166,416.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,10,2013,166,1.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2013,166,6.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,10,2013,166,5.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,10,2013,166,3.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,10,2013,166,123.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,10,2013,166,5.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,10,2013,166,30.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,10,2013,166,11.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,10,2013,166,0.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,0.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,0.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,10,2013,166,0.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,10,2013,166,2.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,6.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,3.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,1.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,1.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,10,2013,166,40.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,10,2013,166,1.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,10,2013,166,1.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,10,2013,166,18.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,10,2013,166,1.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,10,2013,166,14.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,10,2013,166,19.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,10,2013,166,2.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,10,2013,166,2.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,10,2013,166,0.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,10,2013,166,12.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,10,2013,166,8.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,10,2013,166,13.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,10,2013,166,10.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,10,2013,166,88.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,10,2013,166,0.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,10,2013,166,19.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,10,2013,166,9.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,10,2013,166,28.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,10,2013,166,2.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,0.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,0.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,12.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,127.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,10,2013,166,0.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,10,2013,166,4.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,10,2013,166,32.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2013,166,3.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,10,2013,166,2.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,10,2013,166,9.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,10,2013,166,22.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,10,2013,166,2.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,3.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,61.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,10,2013,166,10.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,26.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,41.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,10.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,10,2013,166,5.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,0.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,2.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,10,2013,166,11.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,0.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,3.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,10,2013,166,0.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,2.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2013,166,5.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,10,2013,166,2.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,2.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,7.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,5.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,5.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,63.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,10,2013,166,1.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,35.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,27.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,96.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,10,2013,166,23.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,18.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,10,2013,166,38.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,11.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,16.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,0.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,0.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,139.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,3.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,1.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,2.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,7.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,47.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,0.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,41.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,2.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,7.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,0.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,8.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,10,2013,166,2.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,15.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,4.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,10,2013,166,2.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,1.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,1.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,1.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,1.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,5.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,1.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,1.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,2.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,0.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,5.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,10,2013,166,4.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,10,2013,166,2.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,10,2013,166,1.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,1.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,2.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,2.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,17.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,29.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,6.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2013,166,4.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,10,2013,166,503.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,36.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,10,2013,166,5.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,29.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,10,2013,166,1.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,85.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,3.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,19.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,21.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2013,166,2.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2013,166,1.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,10,2013,166,0.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2013,166,0.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,2.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,20.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2013,166,13.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,10,2013,166,6.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2013,166,11.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,10,2013,166,1.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,4.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,10,2013,166,4.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,10,2013,166,395.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,10.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,15.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,10,2013,166,37.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,26.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,6.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,0.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,3.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,1.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,10,2013,166,2.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,10,2013,166,5.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,10,2013,166,5.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,10,2013,166,0.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,10,2013,166,5.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,10,2013,166,21.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,10,2013,166,1.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,5.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,7.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,6.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,2.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,10,2013,166,3.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,10,2013,166,3.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,10,2013,166,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,10,2013,166,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,10,2013,166,6.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,10,2013,166,3.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,10,2013,166,4.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2013,166,14.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,8.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2013,166,0.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2013,166,3.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,10,2013,166,25.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,67.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,3.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,0.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,10,2013,166,23.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,5.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,0.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,4.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,1.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,10,2013,166,0.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,1.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,0.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,20.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,2.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,5.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,9.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,10,2013,166,10.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,1.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,0.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,17.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,7.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,10,2013,166,1.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,2.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,3.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,3.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,4.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,42.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,10,2013,166,1.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,10,2013,166,14.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,14.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,5.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,3.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,1.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,7.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,11.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,6.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,1.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,43.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,3.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,1.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,1.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,13.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,23.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,7.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,0.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,10,2013,166,0.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,10,2013,166,1.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,1.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,1.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,10,2013,166,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,10,2013,166,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,1.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2013,166,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,1.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2013,166,1.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2013,166,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2013,166,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2013,166,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,10,2013,166,0.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,10,2013,166,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,10,2013,166,0.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,10,2013,166,5.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,10,2013,166,6.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2013,166,8.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2013,166,106.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2013,166,1.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2013,166,1.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,10,2013,166,3.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,10,2013,166,0.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,10,2013,166,12.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,10,2013,166,6.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,10,2013,166,1.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,10,2013,166,17.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,10,2013,166,38.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,10,2013,166,14.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,10,2013,166,9.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,10,2013,166,1.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,26.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,10,2013,166,72.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,2.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,10,2013,166,4.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,2.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,1.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,10,2013,166,17.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,3.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,10,2013,166,5.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,10,2013,166,2.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,0.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,199.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,10,2013,166,1.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,2.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,6.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,30.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,10,2013,166,0.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,10,2013,166,0.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,10,2013,166,1.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,10,2013,166,17.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,10,2013,166,13.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,10,2013,166,5.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,10,2013,166,27.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,10,2013,166,91.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,10,2013,166,10.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,10,2013,166,1.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,10,2013,166,1180.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,10,2013,166,6.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,10,2013,166,166.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,10,2013,166,30.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,10,2013,166,4.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,10,2013,166,5.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,10,2013,166,17.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,10,2013,166,3.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,10,2013,166,13.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,10,2013,166,106.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,11,2013,167,28.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,11,2013,167,63.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,11,2013,167,35.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,11,2013,167,88.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,11,2013,167,7.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,11,2013,167,109.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,11,2013,167,20.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,11,2013,167,5.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,11,2013,167,1.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,11,2013,167,0.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,11,2013,167,25.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,11,2013,167,58.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,11,2013,167,4.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,11,2013,167,6.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,11,2013,167,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,11,2013,167,38.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,11,2013,167,0.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,11,2013,167,11.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,11,2013,167,25.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,11,2013,167,194.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,11,2013,167,0.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,11,2013,167,1.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,11,2013,167,2.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,11,2013,167,1.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,11,2013,167,2.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,11,2013,167,28.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,11,2013,167,25.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,11,2013,167,7.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,11,2013,167,19.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,11,2013,167,13.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,11,2013,167,24.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,11,2013,167,7.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,11,2013,167,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,11,2013,167,0.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,11,2013,167,3.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,11,2013,167,3.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,11,2013,167,15.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,11,2013,167,2.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,11,2013,167,0.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,11,2013,167,6.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,11,2013,167,1.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,11,2013,167,6.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,11,2013,167,4.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,11,2013,167,7.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,11,2013,167,74.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,11,2013,167,3.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,11,2013,167,9.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,11,2013,167,14.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,11,2013,167,110.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,11,2013,167,5.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,11,2013,167,1.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,11,2013,167,1.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,11,2013,167,13.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,11,2013,167,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,11,2013,167,16.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,11,2013,167,0.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,11,2013,167,13.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,11,2013,167,53.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,11,2013,167,46.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,11,2013,167,43.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,11,2013,167,4.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,11,2013,167,82.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,11,2013,167,10.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,11,2013,167,27.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,11,2013,167,1.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,11,2013,167,33.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,11,2013,167,0.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,11,2013,167,2.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,11,2013,167,0.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,11,2013,167,0.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,11,2013,167,3.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,11,2013,167,3.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,11,2013,167,8.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,11,2013,167,3.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,11,2013,167,6.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,11,2013,167,3.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,11,2013,167,0.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,11,2013,167,1.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,11,2013,167,0.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,11,2013,167,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,11,2013,167,7.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,11,2013,167,5.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,11,2013,167,1.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,11,2013,167,1.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,11,2013,167,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2013,167,27.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,11,2013,167,1.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,11,2013,167,66.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,11,2013,167,3.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,11,2013,167,2.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,11,2013,167,0.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2013,167,1.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,11,2013,167,2.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,11,2013,167,0.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,11,2013,167,2.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,11,2013,167,0.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,11,2013,167,0.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,11,2013,167,4.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,11,2013,167,0.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,11,2013,167,1.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,11,2013,167,1.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,11,2013,167,2.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,11,2013,167,0.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,11,2013,167,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,11,2013,167,3.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,11,2013,167,2.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,11,2013,167,0.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,11,2013,167,1.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,11,2013,167,1.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,11,2013,167,4.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,11,2013,167,1.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,11,2013,167,11.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,11,2013,167,12.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,11,2013,167,0.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,11,2013,167,4.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,11,2013,167,204.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,11,2013,167,0.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,11,2013,167,8.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,11,2013,167,7.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,11,2013,167,54.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,11,2013,167,170.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,11,2013,167,9.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,11,2013,167,16.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,11,2013,167,2.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,11,2013,167,24.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,11,2013,167,6.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,11,2013,167,0.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,11,2013,167,0.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,11,2013,167,63.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,11,2013,167,2.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,11,2013,167,27.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,11,2013,167,32.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,11,2013,167,20.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,11.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,1.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,2.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,1.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2013,167,19.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2013,167,382.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2013,167,0.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,0.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,2.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,1.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,3.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,67.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,14.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,11,2013,167,15.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2013,167,22.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2013,167,5.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,11,2013,167,5.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2013,167,141.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,11,2013,167,10.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,11,2013,167,17.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,11,2013,167,12.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,11,2013,167,4.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,11,2013,167,1.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,11,2013,167,0.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,11,2013,167,8.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,11,2013,167,9.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2013,167,3.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,11,2013,167,14.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2013,167,16.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,11,2013,167,5.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,11,2013,167,3.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,11,2013,167,2.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,11,2013,167,2.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,11,2013,167,8.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,11,2013,167,26.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,11,2013,167,55.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,11,2013,167,3.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,11,2013,167,0.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,11,2013,167,3.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,11,2013,167,2.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,11,2013,167,62.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,11,2013,167,16.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,11,2013,167,0.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,11,2013,167,2.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,11,2013,167,16.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,11,2013,167,1.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,11,2013,167,5.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,11,2013,167,5.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,11,2013,167,0.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,11,2013,167,21.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2013,167,6.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,11,2013,167,4.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,11,2013,167,3.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2013,167,8.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2013,167,12.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2013,167,4.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2013,167,5.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2013,167,1.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,11,2013,167,151.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,11,2013,167,14.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,11,2013,167,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,11,2013,167,0.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,11,2013,167,3.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,11,2013,167,54.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,11,2013,167,4.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,11,2013,167,20.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,11,2013,167,454.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,11,2013,167,1.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2013,167,6.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,11,2013,167,5.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,11,2013,167,2.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,11,2013,167,162.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,11,2013,167,2.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,11,2013,167,28.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,11,2013,167,19.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,11,2013,167,1.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,1.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,1.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,11,2013,167,0.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,11,2013,167,4.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,3.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,0.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,4.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,11,2013,167,40.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,11,2013,167,1.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,11,2013,167,2.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,11,2013,167,8.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,11,2013,167,1.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,11,2013,167,4.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,11,2013,167,18.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,11,2013,167,2.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,11,2013,167,1.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,11,2013,167,2.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,11,2013,167,8.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,11,2013,167,17.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,11,2013,167,5.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,11,2013,167,7.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,11,2013,167,59.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,11,2013,167,0.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,11,2013,167,63.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,11,2013,167,5.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,11,2013,167,49.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,11,2013,167,3.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,0.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,2.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,3.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,177.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,11,2013,167,0.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,11,2013,167,5.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,11,2013,167,37.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2013,167,0.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,11,2013,167,6.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,11,2013,167,6.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,11,2013,167,22.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,11,2013,167,3.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,10.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,98.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,11,2013,167,19.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,33.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,18.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,13.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,11,2013,167,2.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,1.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,12.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,11,2013,167,22.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,0.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,6.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,11,2013,167,2.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,2.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2013,167,22.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,11,2013,167,1.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,2.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,8.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,4.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,10.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,102.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,11,2013,167,1.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,3.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,42.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,92.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,11,2013,167,29.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,50.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,11,2013,167,58.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,16.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,25.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,0.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,0.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,195.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,8.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,2.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,1.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,1.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,0.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,2.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,75.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,1.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,63.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,1.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,14.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,1.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,7.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,11,2013,167,7.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,36.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,4.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,11,2013,167,4.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,4.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,2.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,3.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,0.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,11,2013,167,1.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,0.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,2.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,0.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,2.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,0.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,0.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,1.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,11.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,0.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,6.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,11,2013,167,9.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,11,2013,167,5.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,11,2013,167,0.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,1.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,5.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,5.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,7.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,39.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,12.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2013,167,1.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,11,2013,167,2.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,11,2013,167,459.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,20.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,11,2013,167,3.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,48.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,11,2013,167,7.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,74.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,12.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,66.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,3.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2013,167,1.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2013,167,6.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,11,2013,167,2.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2013,167,0.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,10.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,31.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2013,167,10.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,11,2013,167,7.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2013,167,33.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,11,2013,167,0.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,11,2013,167,0.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,10.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,11,2013,167,3.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,11,2013,167,463.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,11.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,6.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,11,2013,167,22.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,50.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,5.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,0.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,1.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,1.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,11,2013,167,9.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,11,2013,167,6.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,11,2013,167,11.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,11,2013,167,8.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,11,2013,167,7.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,11,2013,167,24.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,11,2013,167,0.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,29.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,18.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,22.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,9.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,11,2013,167,6.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,11,2013,167,4.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,11,2013,167,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,11,2013,167,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,11,2013,167,2.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,11,2013,167,1.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,11,2013,167,5.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2013,167,16.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,11.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2013,167,1.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2013,167,3.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,11,2013,167,7.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,84.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,0.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,0.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,0.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,11,2013,167,19.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,2.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,4.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,12.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,1.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,11,2013,167,0.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,0.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,3.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,1.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,71.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,1.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,5.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,18.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,11,2013,167,13.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,0.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,1.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,7.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,7.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,11,2013,167,2.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,11.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,13.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,5.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,0.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,50.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,11,2013,167,4.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,11,2013,167,37.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,38.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,5.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,2.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,1.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,4.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,43.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,51.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,1.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,17.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,11.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,52.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,7.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,1.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,9.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,9.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,34.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,4.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,13.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,1.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,4.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,11,2013,167,2.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,11,2013,167,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,1.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,1.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,1.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,11,2013,167,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,11,2013,167,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2013,167,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2013,167,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2013,167,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2013,167,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2013,167,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,11,2013,167,1.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,11,2013,167,1.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,11,2013,167,0.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,11,2013,167,16.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,11,2013,167,3.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2013,167,37.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2013,167,195.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2013,167,4.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2013,167,5.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,11,2013,167,2.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,11,2013,167,0.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,11,2013,167,3.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,11,2013,167,16.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,11,2013,167,4.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,11,2013,167,66.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,11,2013,167,94.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,11,2013,167,35.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,11,2013,167,20.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,11,2013,167,6.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,44.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,11,2013,167,160.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,5.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,11,2013,167,14.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,29.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,10.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,11,2013,167,51.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,8.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,11,2013,167,24.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,11,2013,167,3.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,6.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,146.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,11,2013,167,12.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,6.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,15.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,15.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,11,2013,167,5.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,11,2013,167,2.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,11,2013,167,16.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,11,2013,167,32.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,11,2013,167,28.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,11,2013,167,19.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,11,2013,167,44.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,11,2013,167,132.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,11,2013,167,59.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,11,2013,167,5.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,11,2013,167,1482.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,11,2013,167,5.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,11,2013,167,285.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,11,2013,167,68.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,11,2013,167,12.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,11,2013,167,36.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,11,2013,167,22.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,11,2013,167,9.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,11,2013,167,2.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,11,2013,167,143.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,12,2013,168,26.0,613757.0,9.35544064011005,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,12,2013,168,67.0,79879.0,1.95991784044834,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,12,2013,168,39.0,192354.0,7.89663306134033,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,12,2013,168,100.0,315964.0,12.6030884235722,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,12,2013,168,6.0,74999.0,4.69197043579398,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,12,2013,168,54.0,246464.0,10.0385702223259,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,12,2013,168,22.0,149595.0,5.59985506972127,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,12,2013,168,13.0,55202.0,3.76726381963996,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,12,2013,168,2.0,138755.0,4.3441727387628,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,12,2013,168,0.0,77129.0,1.4417037987815,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,12,2013,168,0.0,54071.0,1.33338970132247,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,12,2013,168,78.0,444009.0,19.9458143835393,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,12,2013,168,27.0,62499.0,3.93524629011645,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,12,2013,168,4.0,106390.0,0.32016757311676,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,12,2013,168,0.0,24393.0,0.335868253023039,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,12,2013,168,78.0,240175.0,1.12619385641822,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,12,2013,168,2.0,139876.0,1.24193082327156,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,12,2013,168,13.0,90852.0,2.27714579078783,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,12,2013,168,47.0,166344.0,1.48393604466936,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,12,2013,168,273.0,2242712.0,54.307497200998,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,12,2013,168,0.0,59977.0,1.92426947223491,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,12,2013,168,5.0,165918.0,6.51901209484405,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,12,2013,168,0.0,262719.0,2.45526634146374,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,12,2013,168,1.0,51941.0,0.817367721804609,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,12,2013,168,0.0,74737.0,0.399835073995905,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,12,2013,168,23.0,181887.0,0.822927111815759,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,12,2013,168,16.0,347279.0,5.11451572531804,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,12,2013,168,2.0,45799.0,1.49016453564583,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,12,2013,168,9.0,45348.0,0.611565336990808,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,12,2013,168,15.0,49646.0,0.96486754128866,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,12,2013,168,35.0,193769.0,1.2298320409389,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,12,2013,168,10.0,499965.0,5.407056619665,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,12,2013,168,0.0,70403.0,0.779084519498281,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,12,2013,168,2.0,139347.0,3.08891204773972,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,12,2013,168,0.0,214867.0,7.14166452956443,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,12,2013,168,1.0,162836.0,5.63053775779453,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,12,2013,168,12.0,2222335.0,709.752131656994,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,12,2013,168,0.0,314158.0,83.4524050910288,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,12,2013,168,1.0,256020.0,43.1289399074249,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,12,2013,168,1.0,397869.0,45.1927547054074,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,12,2013,168,2.0,460628.0,27.6297478520103,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,12,2013,168,7.0,308695.0,13.0234165940435,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,12,2013,168,1.0,450804.0,15.9249943652393,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,12,2013,168,25.0,243031.0,1.28161938804288,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,12,2013,168,44.0,287193.0,1.26989207092894,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,12,2013,168,9.0,350813.0,10.6797245425332,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,12,2013,168,4.0,316737.0,6.54292932104776,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,12,2013,168,5.0,187552.0,1.54700813649288,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,12,2013,168,59.0,283946.0,12.6323078050134,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,12,2013,168,2.0,304066.0,15.1381073189559,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,12,2013,168,6.0,187783.0,8.88799150985923,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,12,2013,168,5.0,146912.0,4.70874087006072,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,12,2013,168,5.0,32779.0,0.888637957680941,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,12,2013,168,0.0,27052.0,1.30294136917602,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,12,2013,168,7.0,598870.0,15.5140295124006,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,12,2013,168,2.0,76295.0,1.63701578333019,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,12,2013,168,12.0,207214.0,13.1368716633457,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,12,2013,168,38.0,298783.0,11.2982667623337,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,12,2013,168,52.0,147591.0,4.24448691325317,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,12,2013,168,102.0,122527.0,2.38087313635599,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,12,2013,168,19.0,144769.0,5.27988220279423,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,12,2013,168,79.0,358276.0,16.9160146691918,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,12,2013,168,3.0,76288.0,1.42514251252468,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,12,2013,168,9.0,122716.0,2.60020575107552,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,12,2013,168,0.0,186262.0,19.7402755097417,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,12,2013,168,32.0,1366266.0,956.427137238031,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,12,2013,168,0.0,168740.0,26.2268109422244,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,12,2013,168,0.0,186318.0,17.2786242460161,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,12,2013,168,1.0,581920.0,33.7915507906111,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,12,2013,168,0.0,223241.0,31.6588362162897,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,12,2013,168,0.0,230990.0,10.7069703568596,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,12,2013,168,5.0,642579.0,17.8531369704843,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,12,2013,168,2.0,580283.0,19.8567995654374,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,12,2013,168,2.0,415203.0,37.7978948895537,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,12,2013,168,3.0,320723.0,8.70569195191417,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,12,2013,168,1.0,194017.0,29.6698338417769,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,12,2013,168,2.0,139621.0,23.1435914574364,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,12,2013,168,0.0,234229.0,21.7065661674083,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,12,2013,168,3.0,269763.0,27.1494637892642,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,12,2013,168,0.0,90137.0,25.0381599055751,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,12,2013,168,0.0,428592.0,27.9362420649501,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,12,2013,168,4.0,214158.0,8.5679960843231,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,12,2013,168,4.0,114767.0,8.06961524589487,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,12,2013,168,0.0,136434.0,3.73857051711855,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,12,2013,168,0.0,70058.0,4.12696680984867,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2013,168,11.0,335771.0,26.9333770545872,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,12,2013,168,0.0,311181.0,31.980427221959,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,12,2013,168,45.0,1025138.0,111.69415487096,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,12,2013,168,1.0,223416.0,9.17338943713336,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,12,2013,168,0.0,132435.0,15.9351418395905,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,12,2013,168,0.0,105074.0,7.82235274855413,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2013,168,0.0,45011.0,1.76721832461259,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,12,2013,168,2.0,41314.0,3.71729124987143,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,12,2013,168,0.0,122772.0,6.65818692740008,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,12,2013,168,2.0,90379.0,3.27231187473088,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,12,2013,168,2.0,138248.0,5.02405480204359,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,12,2013,168,0.0,84144.0,4.71742429434694,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,12,2013,168,0.0,203273.0,19.7367646324767,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,12,2013,168,1.0,59065.0,13.6959223279002,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,12,2013,168,0.0,266945.0,8.46528903368003,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,12,2013,168,3.0,374258.0,43.3016520866324,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,306828.0,60.5944320558757,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,57796.0,27.8985985671811,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,25548.0,94.6337889810867,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,12,2013,168,1.0,397363.0,48.2148486630132,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,12,2013,168,3.0,139413.0,33.0021461507257,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,12,2013,168,0.0,73458.0,12.239243732215,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,217008.0,58.4674248192357,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,12,2013,168,2.0,110579.0,77.1450994469667,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,105552.0,100.56471551496,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,88176.0,29.1859180556136,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,12,2013,168,2.0,129053.0,24.2979767343298,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,192546.0,71.5701232381223,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,12,2013,168,1.0,64387.0,49.6489347326429,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,140101.0,55.105795295774,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,12,2013,168,130.0,3501448.0,1037.88379948491,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,12,2013,168,1.0,127094.0,320.093037015788,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,12,2013,168,4.0,245203.0,19.130002072634,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,12,2013,168,6.0,276305.0,23.1067575221952,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,12,2013,168,108.0,148769.0,12.6952491409725,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,12,2013,168,30.0,222214.0,22.716445733581,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,12,2013,168,6.0,114048.0,52.9658709911192,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,12,2013,168,21.0,323140.0,32.5438463011438,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,12,2013,168,3.0,63615.0,14.8260250502305,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,12,2013,168,21.0,43393.0,21.1457281195801,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,12,2013,168,6.0,228445.0,48.0485958921652,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,98938.0,27.9215214447762,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,12,2013,168,7.0,57516.0,35.5626639126742,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,12,2013,168,43.0,97815.0,22.0120592572584,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,12,2013,168,0.0,57601.0,44.7132529928635,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,12,2013,168,3.0,92460.0,34.73594335805,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,12,2013,168,45.0,555282.0,121.886486495171,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,12,2013,168,11.0,103224.0,53.2170592822812,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,9.0,358621.0,85.8473980485821,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,1.0,75370.0,18.4194821453345,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,0.0,40830.0,14.2757961580913,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,2.0,149243.0,31.1797413245025,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2013,168,14.0,65893.0,66.4517628902792,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2013,168,147.0,118488.0,44.5745099210114,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2013,168,4.0,67347.0,41.2788243550792,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,0.0,56341.0,29.57040177099,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,2.0,53073.0,13.0142936678982,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,0.0,63750.0,21.1742194936301,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,5.0,102989.0,33.5914777243822,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,41.0,123824.0,32.8266127565965,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,2.0,66512.0,34.7933365726679,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,12,2013,168,5.0,140876.0,35.8579786949294,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2013,168,4.0,243586.0,69.5518732989242,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2013,168,0.0,89092.0,34.9456505496155,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,12,2013,168,2.0,310767.0,149.780977789557,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2013,168,106.0,1110019.0,2536.22182931262,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,12,2013,168,3.0,137338.0,98.9686933076876,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,12,2013,168,14.0,120306.0,39.4639649723194,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,12,2013,168,10.0,173641.0,51.1960082828252,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,12,2013,168,0.0,186870.0,38.8933951066024,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,12,2013,168,1.0,131274.0,51.5070754935765,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,12,2013,168,0.0,71458.0,21.6975015791769,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,12,2013,168,2.0,85602.0,28.0961392270634,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,12,2013,168,1.0,119736.0,46.092718402374,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2013,168,1.0,40395.0,23.0795878637068,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,12,2013,168,24.0,76955.0,29.4803224630767,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2013,168,15.0,125775.0,18.0210564462721,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,12,2013,168,4.0,65654.0,15.5902368198739,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,12,2013,168,1.0,124730.0,31.9214189968309,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,12,2013,168,3.0,95177.0,71.989634735147,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,12,2013,168,0.0,55929.0,208.812172762489,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,12,2013,168,8.0,117339.0,99.4531780343569,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,12,2013,168,11.0,169133.0,131.109284534265,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,12,2013,168,38.0,521407.0,247.497019952242,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,12,2013,168,1.0,110776.0,65.64567961792,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,12,2013,168,0.0,54636.0,46.1914158779596,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,12,2013,168,3.0,147982.0,74.4548776468531,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,12,2013,168,1.0,137078.0,122.428869284372,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,12,2013,168,77.0,1096284.0,878.301240803836,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,12,2013,168,5.0,86284.0,99.6518259065045,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,12,2013,168,1.0,321819.0,27.8868938230666,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,12,2013,168,4.0,168165.0,19.1949554786464,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,12,2013,168,10.0,325564.0,36.885331570815,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,12,2013,168,0.0,224139.0,25.47848581273,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,12,2013,168,4.0,478117.0,31.9394050252472,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,12,2013,168,0.0,141618.0,14.8820665060278,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,12,2013,168,0.0,188822.0,34.7687012402773,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,12,2013,168,31.0,897926.0,114.201425633729,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2013,168,1.0,295501.0,164.61109325106,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,12,2013,168,2.0,258929.0,147.9409186078,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,12,2013,168,1.0,458884.0,89.6293157808995,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2013,168,4.0,222423.0,86.8825013698126,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2013,168,9.0,555390.0,189.040783784778,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2013,168,2.0,224631.0,239.326419002442,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2013,168,1.0,584446.0,129.140316480584,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2013,168,1.0,177798.0,330.142319359458,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,12,2013,168,98.0,3397463.0,2715.65254880902,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,12,2013,168,8.0,284078.0,294.145674384182,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,12,2013,168,0.0,2837.0,218.327533248982,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,12,2013,168,1.0,92964.0,35.3973192685361,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,12,2013,168,2.0,84669.0,62.0042252650079,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,12,2013,168,43.0,178863.0,58.3642190405836,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,12,2013,168,0.0,96367.0,53.3706709283331,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,12,2013,168,32.0,181875.0,76.0466875508783,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,12,2013,168,250.0,434661.0,179.191987827612,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,12,2013,168,3.0,39653.0,42.3761345695352,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2013,168,4.0,152901.0,82.978065510715,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,12,2013,168,8.0,316769.0,80.3187222984688,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,12,2013,168,8.0,70976.0,70.5150812753652,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,12,2013,168,133.0,1218197.0,680.233424143369,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,12,2013,168,0.0,302432.0,101.800442552876,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,12,2013,168,37.0,130608.0,76.3159445724163,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,12,2013,168,10.0,165747.0,30.436191327296,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,12,2013,168,0.0,72157.0,38.6392530524215,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,0.0,65884.0,53.096084872847,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,3.0,168667.0,149.084288341686,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,12,2013,168,1.0,113834.0,56.510500150982,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,12,2013,168,3.0,120267.0,79.7660354574942,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,1.0,94413.0,89.5085759345474,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,0.0,49763.0,64.9955054605915,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,0.0,57634.0,40.2820693571418,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,0.0,95386.0,128.763628908493,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,12,2013,168,30.0,899239.0,1030.75465187899,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,12,2013,168,1.0,162116.0,88.1815496046447,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,12,2013,168,1.0,130555.0,64.5013632112768,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,12,2013,168,8.0,321062.0,6.07443374665452,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,12,2013,168,1.0,121912.0,5.38909859555533,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,12,2013,168,0.0,189564.0,4.51462518555095,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,12,2013,168,5.0,491297.0,8.97926620974138,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,12,2013,168,2.0,180862.0,14.5160219868554,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,12,2013,168,0.0,184705.0,5.67251765718811,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,12,2013,168,1.0,182438.0,12.6365337119076,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,12,2013,168,5.0,307095.0,18.4724580188536,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,12,2013,168,31.0,400033.0,21.9366667494179,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,12,2013,168,8.0,347825.0,18.4853044500537,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,12,2013,168,2.0,264041.0,16.0351295214079,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,12,2013,168,55.0,1068087.0,83.803742095568,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,12,2013,168,1.0,103758.0,12.9435586472335,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,12,2013,168,2.0,316859.0,16.9528380678845,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,12,2013,168,3.0,331015.0,38.2585498606534,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,12,2013,168,58.0,445298.0,41.8182452549466,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,12,2013,168,3.0,332440.0,57.8432884048585,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,0.0,124892.0,28.5374372140063,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,4.0,229226.0,83.3999375342431,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,6.0,579220.0,101.598573651297,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,122.0,3758256.0,1300.22920618359,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,12,2013,168,4.0,197866.0,12.3046718921498,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,12,2013,168,8.0,269630.0,12.9968105930883,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,12,2013,168,63.0,537105.0,31.223687062577,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2013,168,0.0,102995.0,20.0227890861078,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,12,2013,168,12.0,401741.0,17.1381054450174,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,12,2013,168,13.0,245277.0,15.9886152590172,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,12,2013,168,31.0,664905.0,35.3391881065549,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,12,2013,168,3.0,207788.0,18.4288222558585,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,2.0,284635.0,49.473911070063,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,115.0,1060853.0,49.908764424267,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,12,2013,168,29.0,791457.0,28.557677273629,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,12.0,155939.0,5.68990646471459,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,37.0,229106.0,6.54414560947462,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,50.0,286396.0,8.62331523663732,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,12,2013,168,21.0,257153.0,17.1004765332422,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,8.0,219727.0,12.3200514763902,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,49.0,172272.0,7.48316866657117,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,12,2013,168,162.0,634942.0,28.4217500769655,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,0.0,44428.0,4.90299376481664,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,17.0,71995.0,9.09651156392374,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,12,2013,168,1.0,85404.0,11.5595958928916,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,2.0,205877.0,17.1354651955853,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2013,168,177.0,162215.0,15.7953544268722,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,12,2013,168,2.0,85121.0,16.8559620184091,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,4.0,186741.0,12.0813672130835,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,31.0,276042.0,23.7595392991783,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,21.0,122084.0,14.3930139705477,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,53.0,150109.0,17.1924520762278,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,104.0,873076.0,46.4706431592081,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,12,2013,168,4.0,206976.0,17.3050215780709,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,7.0,265815.0,24.7867009760377,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,52.0,190941.0,11.3078444024421,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,176.0,369623.0,39.6105095746328,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,12,2013,168,10.0,217880.0,15.4860601340476,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,63.0,101708.0,9.61070868821157,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,12,2013,168,92.0,156904.0,11.4481984274743,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,19.0,174076.0,23.2459312215851,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,42.0,417019.0,48.8139504015408,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,1.0,86263.0,12.6523981347552,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,1.0,130961.0,73.9739147963343,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,257.0,5038298.0,864.453389057979,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,21.0,396930.0,49.2834164687502,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,4.0,64051.0,26.4946538540285,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,2.0,183537.0,58.2315682534398,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,3.0,261120.0,88.1096906546576,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,4.0,135566.0,23.5354077869792,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,2.0,83269.0,18.1715917001492,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,122.0,432644.0,38.2289534623004,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,2.0,65428.0,35.3710558641249,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,400.0,555214.0,127.598355466296,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,9.0,264130.0,47.6883347111251,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,84.0,154177.0,18.4994081209057,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,1.0,85144.0,11.0659906486893,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,22.0,519830.0,102.375970000702,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,12,2013,168,1.0,158464.0,34.702084363108,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,67.0,116606.0,43.2931642327835,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,4.0,131332.0,32.7438739355001,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,12,2013,168,7.0,237077.0,33.4245984990344,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,1.0,276748.0,53.5057213781525,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,6.0,236101.0,47.221802068641,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,3.0,462479.0,61.0431037590947,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,359879.0,77.6861275900553,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,12,2013,168,1.0,346933.0,70.5463479652542,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,147238.0,44.945466660113,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,2.0,217532.0,56.5653167025065,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,76164.0,15.1144862006216,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,196723.0,65.9750384759924,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,157743.0,45.6300248154749,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,190935.0,33.1641676304521,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,0.0,232546.0,69.289288308812,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,4.0,192038.0,39.4752073900381,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,10.0,287639.0,59.4590042712827,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,2.0,229741.0,47.6164370009936,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,12.0,287735.0,60.7584859881213,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,12,2013,168,13.0,284426.0,79.0488941928109,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,12,2013,168,5.0,765848.0,85.729427736349,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,12,2013,168,15.0,225298.0,57.6903976934779,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,2.0,95181.0,23.551279838218,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,2.0,133896.0,36.5053810264311,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,3.0,215409.0,49.6279258060778,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,13.0,58571.0,19.8631514895488,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,104.0,204683.0,44.2233737717252,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,60.0,343281.0,49.3981152410436,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2013,168,2.0,141838.0,36.9847295340572,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,12,2013,168,1.0,112405.0,34.2150418895707,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,12,2013,168,580.0,1722164.0,1206.87366509549,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,24.0,203418.0,96.6923921090631,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,12,2013,168,29.0,169038.0,48.8996733891277,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,45.0,357602.0,86.8986163302164,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,12,2013,168,4.0,81880.0,64.5999740433947,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,69.0,198737.0,63.375460317772,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,59.0,123432.0,55.0707987722704,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,72.0,602872.0,84.1699457490606,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,3.0,282500.0,109.412273855255,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2013,168,8.0,158313.0,95.6066689899805,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2013,168,1.0,63992.0,50.5255029613236,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,12,2013,168,2.0,236231.0,113.497204237037,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2013,168,0.0,29641.0,16.344607770339,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,32.0,182054.0,110.98371116529,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,50.0,575629.0,293.522649033922,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2013,168,27.0,693577.0,181.859233197481,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,12,2013,168,9.0,178198.0,75.2571893485628,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2013,168,41.0,220920.0,132.118300441382,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,12,2013,168,5.0,166905.0,106.423924773746,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,12,2013,168,1.0,488441.0,273.640087674623,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,40.0,112574.0,79.3944649740174,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,12,2013,168,8.0,236012.0,268.700741782172,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,12,2013,168,681.0,11819151.0,2595.64499543145,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,4.0,154618.0,39.2544590989844,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,13.0,109046.0,38.756917382007,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,12,2013,168,17.0,147335.0,45.9309167110082,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,23.0,811709.0,77.8812958853247,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,1.0,233562.0,103.042864457741,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,1.0,48382.0,21.0750069346777,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,1.0,69070.0,34.3788262634038,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,1.0,83614.0,34.5361275459329,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,12,2013,168,43.0,142082.0,52.3095587843046,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,12,2013,168,15.0,223474.0,40.3031391707841,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,12,2013,168,29.0,100345.0,49.7714270992708,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,12,2013,168,9.0,408385.0,118.529278734016,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,12,2013,168,9.0,426962.0,89.9801411074149,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,12,2013,168,49.0,1108766.0,184.595555987075,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,12,2013,168,1.0,111931.0,36.3756284387322,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,15.0,189489.0,27.5766350196996,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,9.0,270673.0,50.4087136973172,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,3.0,273302.0,60.6997365112314,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,3.0,168787.0,43.5986654263505,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,12,2013,168,11.0,591960.0,69.7334023109487,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,12,2013,168,32.0,366479.0,90.7477844336955,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,12,2013,168,0.0,189379.0,32.0903723712849,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,12,2013,168,0.0,220973.0,50.7074028700527,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,12,2013,168,13.0,532186.0,84.7119287485333,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,12,2013,168,1.0,328108.0,103.457476005575,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,12,2013,168,2.0,256899.0,87.2195755648613,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2013,168,18.0,614840.0,264.454108390814,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,2.0,590064.0,156.134186939725,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2013,168,2.0,193909.0,109.955234305854,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2013,168,1.0,426014.0,78.4984726067062,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,12,2013,168,0.0,406296.0,173.884589093524,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,96.0,2822880.0,907.966921429638,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,2.0,189121.0,118.187357521609,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,3.0,121934.0,42.5288874049647,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,3.0,165486.0,45.0891744199577,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,12,2013,168,23.0,599146.0,34.250572323568,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,0.0,113609.0,49.38571851804,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,3.0,346116.0,70.8293965238087,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,9.0,276655.0,38.745439925565,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,4.0,304102.0,54.6408288059345,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,12,2013,168,0.0,250088.0,32.5089109455997,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,0.0,204817.0,54.9638802198635,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,0.0,277658.0,124.392131586264,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,0.0,137613.0,20.8945513677775,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,0.0,198190.0,47.8358075197976,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,49.0,1417110.0,333.903292076905,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,3.0,679963.0,845.529033611369,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,5.0,534652.0,170.350066904646,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,0.0,72166.0,70.9701403741221,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,33.0,1506997.0,375.087734608473,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,12,2013,168,18.0,422203.0,156.162752139773,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,4.0,27333.0,13.0440733807512,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,1.0,72619.0,16.4275483091948,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,22.0,305417.0,160.26512210206,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,23.0,251532.0,22.5460595141534,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,12,2013,168,6.0,235384.0,115.460074900975,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,5.0,1876915.0,2766.65327393863,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,12.0,488640.0,819.366608660568,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,12.0,1434359.0,1845.16048088155,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,1.0,1063302.0,724.500925704188,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,78.0,14505939.0,6147.03342967731,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,12,2013,168,1.0,1405959.0,682.893355661057,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,12,2013,168,46.0,1557125.0,1143.46940296535,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,136.0,282595.0,27.7802448913545,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,9.0,275238.0,26.8299389208082,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,4.0,151299.0,37.3608471336447,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,4.0,117164.0,24.1204869753335,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,83.0,224261.0,31.6936568338571,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,72.0,192370.0,37.6365755303226,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,92.0,84929.0,35.9117153677375,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,35982.0,27.6331062487993,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,37.0,580303.0,372.919755812714,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,5.0,305150.0,134.709120575017,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,38.0,769182.0,218.764091488504,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,47422.0,20.8317531791149,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,138951.0,22.5414587762179,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,7.0,72835.0,32.2513677331048,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,180025.0,39.7736665275608,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,127155.0,46.096340377126,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,80534.0,26.4975297187691,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,1.0,102330.0,32.3941687204962,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,167218.0,17.6784999272952,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,105033.0,18.4522431362458,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,455502.0,68.1939525472987,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,6.0,398350.0,45.5908379536487,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,14.0,456161.0,53.3409641192524,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,26.0,424020.0,76.3690152644654,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,6.0,98658.0,42.4562723351512,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,2.0,253675.0,46.871765044262,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,1.0,166665.0,42.6985960889438,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,1.0,75787.0,15.4033961198238,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,1.0,393616.0,24.2975892951455,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,94624.0,17.5039738118518,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,135093.0,22.2370594441258,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,101993.0,35.9334235720281,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,121681.0,22.255538519306,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,65779.0,25.9990962144466,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,29872.0,8.64960969633962,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,51750.0,22.5135437691036,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,1.0,3258115.0,382.293148113699,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,12,2013,168,0.0,281270.0,46.1464512492996,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,12,2013,168,0.0,94878.0,38.7708142158031,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,178659.0,41.9171973681056,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,1.0,425546.0,70.6579784631413,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,158148.0,32.6206547633742,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,339181.0,37.5472040231058,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,145602.0,46.2928702820573,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,251223.0,26.7175461246428,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,132137.0,69.2146833842789,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,908571.0,195.699157525232,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,126338.0,19.1831463528371,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,288367.0,18.3152122075399,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,215329.0,40.6640788406187,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,2.0,729835.0,154.247837957059,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,633350.0,412.413537836164,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,58091.0,38.1896841680389,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,100444.0,47.151721440127,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,1.0,946036.0,326.51898198745,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,12,2013,168,0.0,24738.0,10.5462337639743,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,392934.0,84.8551067631194,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,389413.0,184.248610772151,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,12,2013,168,0.0,190312.0,64.0489549670487,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,161909.0,46.8304437831163,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,147448.0,38.678634375029,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,178706.0,34.3140416526087,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,218731.0,38.5745776096775,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2013,168,0.0,62376.0,20.2682974543591,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,67604.0,30.4545829399475,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,201518.0,18.6113984920431,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,191123.0,37.5264216155519,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,165713.0,33.917727517353,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2013,168,0.0,344497.0,48.6747823598966,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,2.0,154354.0,18.3332968759449,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,43873.0,29.273839556541,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2013,168,0.0,73898.0,20.4742846755714,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2013,168,0.0,133937.0,36.9006755593445,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2013,168,0.0,163508.0,9.48884285348575,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,12,2013,168,0.0,818896.0,164.65564755908,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,114432.0,10.1992152576576,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,378275.0,32.2396658599953,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,64841.0,21.5909436915314,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,335618.0,60.3630351642786,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,321692.0,79.5068504535028,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,157451.0,20.7527218845134,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,214408.0,103.505289469533,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,12,2013,168,0.0,314032.0,120.455457208551,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,150885.0,30.9168826552699,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,1.0,3793589.0,677.160377204148,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,363729.0,41.3694712968754,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,136299.0,23.1671904184869,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,373791.0,12.0275183452759,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,189590.0,10.9624492871003,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,180078.0,12.6415428601923,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,120488.0,7.33831258428845,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,1.0,501555.0,48.5417656679663,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,54430.0,8.58919428127485,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,12,2013,168,0.0,270769.0,29.2346497580716,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,12,2013,168,17.0,144615.0,1.74167054943341,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,12,2013,168,27.0,108827.0,3.92246931359476,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2013,168,33.0,122435.0,2.93855388508245,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2013,168,549.0,928198.0,32.8575518508338,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2013,168,2.0,66525.0,4.13585485574706,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2013,168,1.0,79098.0,4.6024157911844,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,12,2013,168,40.0,165473.0,3.50178503370452,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,12,2013,168,9.0,93741.0,6.96008186241201,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,12,2013,168,8.0,108009.0,4.78376628128239,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,12,2013,168,24.0,534220.0,14.2868606253688,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,12,2013,168,31.0,236128.0,10.5030154816543,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,12,2013,168,80.0,148922.0,1.20086914883493,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,12,2013,168,64.0,101672.0,1.97799249827501,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,12,2013,168,38.0,147540.0,3.44993486622689,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,12,2013,168,29.0,96914.0,1.62608517908902,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,12,2013,168,12.0,77897.0,1.41840272590192,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,48.0,216083.0,3.96155683880782,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,12,2013,168,163.0,184603.0,3.68892564266542,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,7.0,34079.0,0.728743406027079,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,12,2013,168,24.0,119054.0,1.40159670437058,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,13.0,105035.0,1.73898280046168,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,19.0,66449.0,2.07723953493109,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,12,2013,168,39.0,70085.0,2.23483533873082,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,16.0,153881.0,6.89332545449158,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,12,2013,168,17.0,107853.0,5.7128523261504,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,12,2013,168,2.0,32717.0,4.8821585193684,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,16.0,30675.0,3.32144702958901,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,156.0,881902.0,31.9413850312956,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,12,2013,168,26.0,134262.0,2.51796368328904,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,45.0,91029.0,8.87810017086137,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,20.0,54596.0,2.01626761035109,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,26.0,290068.0,11.8882206681981,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,12,2013,168,1.0,36797.0,3.43460132674743,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,12,2013,168,9.0,79478.0,3.26005036795866,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,12,2013,168,23.0,89993.0,4.44466265838184,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,12,2013,168,10.0,57464.0,5.19865980574312,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,12,2013,168,48.0,239198.0,6.80360816264406,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,12,2013,168,13.0,66188.0,3.10762244299823,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,12,2013,168,80.0,242621.0,18.4375946251347,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,12,2013,168,190.0,575001.0,68.7179690616199,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,12,2013,168,96.0,59885.0,8.46855189464993,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,12,2013,168,2.0,114583.0,20.9848401972226,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,12,2013,168,1937.0,2286843.0,338.544318143191,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,12,2013,168,3.0,114333.0,6.57882747109397,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,12,2013,168,386.0,1144025.0,29.9823809953714,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,12,2013,168,53.0,485670.0,8.66380601459076,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,12,2013,168,22.0,119921.0,8.815501052686,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,12,2013,168,116.0,383739.0,18.1685388720041,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,12,2013,168,14.0,97659.0,10.2519091721639,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,12,2013,168,8.0,159001.0,10.4407835969378,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,12,2013,168,3.0,118446.0,7.36815389846761,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,12,2013,168,157.0,2789761.0,482.302788604389,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,1,2014,169,30.0,625834.0,9.539529223394,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,1,2014,169,47.0,81101.0,1.98990093489153,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,1,2014,169,26.0,195532.0,8.02709824464268,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,1,2014,169,55.0,316402.0,12.6205592516714,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,1,2014,169,7.0,75085.0,4.69735063362966,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,1,2014,169,20.0,247558.0,10.0831292484848,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,1,2014,169,9.0,152211.0,5.69778094199234,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,1,2014,169,12.0,54808.0,3.74037526587492,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,1,2014,169,93.0,141056.0,4.41621296413769,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,1,2014,169,0.0,77929.0,1.45665748726476,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,1,2014,169,13.0,55143.0,1.35982519835078,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,1,2014,169,109.0,452251.0,20.31606228876,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,1,2014,169,9.0,63722.0,4.01225242161955,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,1,2014,169,105.0,108516.0,0.326565507701272,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,1,2014,169,1.0,23966.0,0.329988871887433,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,1,2014,169,539.0,242875.0,1.13885430572531,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,1,2014,169,1.0,142338.0,1.26379042525399,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,1,2014,169,57.0,90982.0,2.28040415552171,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,1,2014,169,77.0,169227.0,1.50965496219438,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,1,2014,169,240.0,2285623.0,55.3465913924911,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,1,2014,169,0.0,61674.0,1.97871509796449,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,1,2014,169,58.0,168711.0,6.62875064509719,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,1,2014,169,5.0,266488.0,2.49048990291524,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,1,2014,169,4.0,52413.0,0.824795333223176,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,1,2014,169,9.0,75649.0,0.404714177886673,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,1,2014,169,63.0,185281.0,0.838282880053746,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,1,2014,169,17.0,353589.0,5.20744560079786,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,1,2014,169,2.0,46668.0,1.51843923556234,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,1,2014,169,35.0,46161.0,0.622529494593647,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,1,2014,169,30.0,50518.0,0.981814817927336,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,1,2014,169,67.0,196298.0,1.24588334548986,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,1,2014,169,6.0,503673.0,5.44715815866417,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,1,2014,169,1.0,71135.0,0.787184882668497,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,1,2014,169,0.0,142011.0,3.1479650714516,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,1,2014,169,0.0,217765.0,7.23798710961013,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,1,2014,169,2.0,165571.0,5.72510849625266,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,1,2014,169,34.0,2242436.0,716.171833276434,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,1,2014,169,3.0,319481.0,84.8663978981499,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,1,2014,169,3.0,258222.0,43.4998871993401,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,1,2014,169,8.0,401712.0,45.6292696294977,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,1,2014,169,5.0,466929.0,28.0076993469596,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,1,2014,169,12.0,314645.0,13.2744388935124,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,1,2014,169,14.0,455970.0,16.1074872466042,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,1,2014,169,8.0,244492.0,1.28932394394699,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,1,2014,169,191.0,290730.0,1.28553175662767,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,1,2014,169,11.0,356928.0,10.8658821694671,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,1,2014,169,7.0,322755.0,6.66724491617579,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,1,2014,169,18.0,193850.0,1.59895670139025,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,1,2014,169,156.0,292211.0,13.0000045642861,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,1,2014,169,14.0,309469.0,15.4070988992192,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,1,2014,169,12.0,188791.0,8.93570134217599,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,1,2014,169,6.0,149806.0,4.80149773184162,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,1,2014,169,10.0,33607.0,0.911085019182506,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,1,2014,169,1.0,27711.0,1.33468166055141,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,1,2014,169,16.0,611615.0,15.8441951679445,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,1,2014,169,2.0,77979.0,1.67314835530906,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,1,2014,169,25.0,209048.0,13.2531428739327,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,1,2014,169,43.0,302864.0,11.4525868764536,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,1,2014,169,95.0,148107.0,4.25932626827643,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,1,2014,169,211.0,123649.0,2.40267518536552,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,1,2014,169,34.0,146042.0,5.32630989134743,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,1,2014,169,162.0,366873.0,17.321922344032,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,1,2014,169,23.0,77087.0,1.4400686983928,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,1,2014,169,13.0,123210.0,2.61067302218141,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,1,2014,169,5.0,186768.0,19.7939020111641,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,1,2014,169,40.0,1381459.0,967.062692463776,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,1,2014,169,3.0,170773.0,26.5427947436085,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,1,2014,169,0.0,189098.0,17.5364338801036,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,1,2014,169,10.0,585881.0,34.0215623603829,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,1,2014,169,2.0,226672.0,32.1454021564983,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,1,2014,169,7.0,233474.0,10.8221100354883,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,1,2014,169,13.0,648120.0,18.0070857175698,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,1,2014,169,17.0,583526.0,19.967772316648,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,1,2014,169,4.0,415623.0,37.8361294780649,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,1,2014,169,10.0,323562.0,8.78275365142273,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,1,2014,169,1.0,194658.0,29.7678580535345,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,1,2014,169,2.0,141167.0,23.3998565779641,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,1,2014,169,1.0,236667.0,21.9325015055438,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,1,2014,169,0.0,271051.0,27.2790905704038,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,1,2014,169,0.0,90879.0,25.2442718756865,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,1,2014,169,6.0,431688.0,28.1380437911445,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,1,2014,169,1.0,215316.0,8.61432514728431,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,1,2014,169,10.0,116059.0,8.16045967763654,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,1,2014,169,1.0,138048.0,3.78279741667899,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,1,2014,169,0.0,70395.0,4.14681875844725,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2014,169,73.0,336764.0,27.0130290895015,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,1,2014,169,2.0,312365.0,32.1021082559257,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,1,2014,169,122.0,1029832.0,112.205590758581,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,1,2014,169,4.0,223752.0,9.18718548956863,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,1,2014,169,4.0,132640.0,15.9598083105168,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,1,2014,169,1.0,105085.0,7.82317165599302,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2014,169,6.0,45289.0,1.77813313864121,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,1,2014,169,5.0,41393.0,3.72439939744223,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,1,2014,169,1.0,122843.0,6.66203740855088,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,1,2014,169,3.0,90798.0,3.28748241960869,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,1,2014,169,22.0,138782.0,5.04346083514563,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,1,2014,169,3.0,84381.0,4.73071139215261,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,1,2014,169,12.0,203813.0,19.7891958599468,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,1,2014,169,0.0,59267.0,13.7427618489403,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,1,2014,169,6.0,267714.0,8.4896753577052,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,1,2014,169,4.0,377048.0,43.6244550977149,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,1,2014,169,3.0,309131.0,61.0492437973878,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,1,2014,169,3.0,58138.0,28.0636847445978,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,1,2014,169,0.0,25776.0,95.4783366516554,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,1,2014,169,3.0,400799.0,48.6317627189422,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,1,2014,169,30.0,139437.0,33.007827482507,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,1,2014,169,4.0,73586.0,12.2605705202806,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,1,2014,169,1.0,219283.0,59.0803671599041,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,1,2014,169,6.0,111666.0,77.903441655694,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,1,2014,169,5.0,106512.0,101.47935594711,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,1,2014,169,16.0,88787.0,29.3881567138877,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,1,2014,169,5.0,129858.0,24.4495413726655,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,1,2014,169,2.0,193466.0,71.9120909413157,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,1,2014,169,4.0,64700.0,49.8902896112879,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,1,2014,169,1.0,141358.0,55.600209930122,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,1,2014,169,237.0,3533255.0,1047.31189038051,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,1,2014,169,3.0,129680.0,326.606016335998,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,1,2014,169,42.0,245555.0,19.1574640560908,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,1,2014,169,16.0,278280.0,23.2719222716798,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,1,2014,169,382.0,149190.0,12.7311753076359,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,1,2014,169,8.0,222725.0,22.7686841333662,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,1,2014,169,8.0,114917.0,53.3694496763331,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,1,2014,169,197.0,324771.0,32.7081064153889,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,1,2014,169,7.0,63638.0,14.83138539883,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,1,2014,169,94.0,43503.0,21.1993319287925,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,1,2014,169,15.0,229208.0,48.2090768773727,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,1,2014,169,0.0,99214.0,27.9994120421074,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,1,2014,169,14.0,57534.0,35.5737934757597,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,1,2014,169,161.0,98157.0,22.0890221388817,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,1,2014,169,0.0,57579.0,44.6961753107774,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,1,2014,169,5.0,92732.0,34.8381299965249,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,1,2014,169,18.0,559490.0,122.810158314484,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,1,2014,169,37.0,103818.0,53.5232955569235,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,8.0,363615.0,87.0428715592092,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,2.0,76856.0,18.7826418968002,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,1.0,39759.0,13.9013318503442,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,0.0,150642.0,31.4720194086537,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2014,169,114.0,66280.0,66.8420445930176,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2014,169,216.0,118721.0,44.6621631923266,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2014,169,2.0,67467.0,41.3523756479744,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,1.0,57338.0,30.0936741759115,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,4.0,53139.0,13.0304778553774,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,5.0,63859.0,21.2104232571565,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,6.0,103723.0,33.8308833371146,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,57.0,124256.0,32.9411389931165,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,7.0,66742.0,34.9136527172991,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,1,2014,169,8.0,141752.0,36.0809520142795,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2014,169,3.0,245725.0,70.1626286665824,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2014,169,0.0,89882.0,35.2555219626963,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,1,2014,169,8.0,314915.0,151.780197448887,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2014,169,107.0,1125134.0,2570.75726785021,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,1,2014,169,24.0,138705.0,99.9537826766286,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,1,2014,169,12.0,121116.0,39.7296691901271,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,1,2014,169,4.0,174671.0,51.4996916786321,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,1,2014,169,4.0,187634.0,39.0524070071827,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,1,2014,169,7.0,132146.0,51.8492161294252,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,1,2014,169,2.0,71388.0,21.6762467846046,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,1,2014,169,5.0,85726.0,28.1368382909189,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,1,2014,169,3.0,120427.0,46.3587208445471,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2014,169,1.0,40618.0,23.2069983871282,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,1,2014,169,47.0,77582.0,29.7205168907857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2014,169,56.0,126540.0,18.1306657341385,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,1,2014,169,9.0,66005.0,15.6735854829223,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,1,2014,169,12.0,125728.0,32.1768312966693,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,1,2014,169,0.0,96005.0,72.6159143779252,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,1,2014,169,3.0,56419.0,210.641598724935,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,1,2014,169,1.0,116437.0,98.688668650546,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,1,2014,169,9.0,169750.0,131.587573387166,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,1,2014,169,38.0,525030.0,249.216754637981,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,1,2014,169,4.0,110989.0,65.7719030756962,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,1,2014,169,0.0,54604.0,46.1643618237079,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,1,2014,169,2.0,149210.0,75.0727270457688,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,1,2014,169,4.0,137929.0,123.188925367485,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,1,2014,169,147.0,1110891.0,890.003816253648,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,1,2014,169,6.0,87040.0,100.524951635322,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,1,2014,169,3.0,324218.0,28.0947766959906,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,1,2014,169,20.0,168956.0,19.285243052063,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,1,2014,169,12.0,326876.0,37.0339768602847,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,1,2014,169,2.0,226038.0,25.6943502743291,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,1,2014,169,13.0,485792.0,32.4521141185628,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,1,2014,169,3.0,143029.0,15.0303428257047,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,1,2014,169,2.0,190105.0,35.0049461889129,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,1,2014,169,27.0,906609.0,115.305760488469,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2014,169,9.0,300460.0,167.373542147788,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,1,2014,169,23.0,259022.0,147.994054816685,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,1,2014,169,22.0,461152.0,90.0723020000553,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2014,169,15.0,222853.0,87.0504672527879,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2014,169,13.0,557917.0,189.900911011815,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2014,169,4.0,226008.0,240.793502704008,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2014,169,7.0,588547.0,130.046481357898,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2014,169,8.0,180423.0,335.016522603131,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,1,2014,169,159.0,3418795.0,2732.70359547861,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,1,2014,169,42.0,288043.0,298.251193287206,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,1,2014,169,0.0,2884.0,221.944520934108,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,1,2014,169,5.0,93456.0,35.584655023023,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,1,2014,169,4.0,85317.0,62.478764210451,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,1,2014,169,66.0,179392.0,58.536835355151,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,1,2014,169,12.0,96699.0,53.5545415764616,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,1,2014,169,32.0,181915.0,76.063412595563,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,1,2014,169,238.0,437452.0,180.342596780398,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,1,2014,169,0.0,39837.0,42.5727706061729,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2014,169,4.0,153191.0,83.1354460314318,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,1,2014,169,4.0,318124.0,80.6622908569907,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,1,2014,169,2.0,71486.0,71.021769331193,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,1,2014,169,208.0,1229071.0,686.305396290842,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,1,2014,169,4.0,304664.0,102.551747268574,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,1,2014,169,39.0,131126.0,76.6186186757523,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,1,2014,169,2.0,167528.0,30.7632371064288,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,1,2014,169,0.0,72766.0,38.9653656279017,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,2.0,66315.0,53.4434288801962,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,1.0,170038.0,150.296111397271,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,1,2014,169,0.0,114584.0,56.8828219099752,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,1,2014,169,4.0,121262.0,80.4259605016061,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,2.0,94719.0,89.7986803082668,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,0.0,50315.0,65.7164732280944,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,0.0,58127.0,40.6266413145466,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,0.0,96485.0,130.247192829513,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,1,2014,169,26.0,912647.0,1046.12360092635,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,1,2014,169,4.0,163026.0,88.6765359732957,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,1,2014,169,1.0,131762.0,65.0976877135633,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,1,2014,169,5.0,326787.0,6.18274968936838,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,1,2014,169,0.0,122358.0,5.40881394739614,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,1,2014,169,14.0,189796.0,4.5201504595642,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,1,2014,169,10.0,494867.0,9.04451387127559,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,1,2014,169,0.0,182289.0,14.6305533056246,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,1,2014,169,7.0,185881.0,5.708634063159,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,1,2014,169,3.0,183427.0,12.7050366106517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,1,2014,169,7.0,308568.0,18.5610622965584,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,1,2014,169,17.0,402131.0,22.0517150750318,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,1,2014,169,11.0,348317.0,18.5114519949094,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,1,2014,169,11.0,264253.0,16.0480042168473,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,1,2014,169,182.0,1075697.0,84.4008343524228,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,1,2014,169,1.0,103472.0,12.907880841444,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,1,2014,169,36.0,317665.0,16.9959613103447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,1,2014,169,3.0,332500.0,38.4301854256371,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,1,2014,169,70.0,447707.0,42.0444761224087,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,1,2014,169,1.0,334674.0,58.2319958597269,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,0.0,125840.0,28.7540522932658,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,0.0,230951.0,84.027549115157,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,13.0,582505.0,102.174781852748,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,195.0,3792317.0,1312.01315783345,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,1,2014,169,13.0,198620.0,12.3515608099359,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,1,2014,169,3.0,270898.0,13.0579312244425,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,1,2014,169,30.0,536988.0,31.2168854662666,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2014,169,1.0,103581.0,20.1367106784614,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,1,2014,169,6.0,403473.0,17.2119918510122,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,1,2014,169,5.0,244234.0,15.9206263089112,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,1,2014,169,31.0,666427.0,35.4200812330891,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,1,2014,169,2.0,207490.0,18.402392485938,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,4.0,286795.0,49.8493520661152,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,138.0,1057086.0,49.731542589021,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,1,2014,169,43.0,798777.0,28.8218005268733,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,270.0,156877.0,5.7241322341751,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,902.0,230798.0,6.59247561554705,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,52.0,287864.0,8.66751636642748,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,1,2014,169,19.0,258038.0,17.1593283519335,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,2.0,220704.0,12.3748316822476,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,45.0,173146.0,7.52113356751028,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,1,2014,169,47.0,640028.0,28.6494134239979,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,0.0,44606.0,4.92263752303527,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,7.0,72452.0,9.15425315409963,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,1,2014,169,1.0,85536.0,11.577462347131,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,58.0,206785.0,17.2110394578759,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2014,169,31.0,162675.0,15.8401459876795,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,1,2014,169,2.0,85033.0,16.8385359466099,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,10.0,187400.0,12.1240017764275,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,97.0,276681.0,23.8145394281883,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,27.0,122104.0,14.3953718575714,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,39.0,150977.0,17.291866824192,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,252.0,882384.0,46.9660739653761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,1,2014,169,6.0,208163.0,17.4042652614602,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,57.0,267542.0,24.9477401671504,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,233.0,192936.0,11.4259916289826,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,28.0,373951.0,40.0743180644698,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,1,2014,169,19.0,220293.0,15.6575667574341,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,403.0,102388.0,9.67496402611994,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,1,2014,169,247.0,157538.0,11.4944570174594,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,17.0,175416.0,23.4248734527768,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,54.0,420806.0,49.2572357918242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,2.0,86060.0,12.6226236448655,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,3.0,132284.0,74.7212173465252,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,466.0,5079662.0,871.550478191054,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,26.0,399170.0,49.5615381851486,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,6.0,64345.0,26.6162667598861,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,2.0,185065.0,58.7163633426657,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,0.0,263295.0,88.8436006468983,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,3.0,135878.0,23.5895736340909,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,21.0,83120.0,18.1390757919081,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,95.0,434348.0,38.3795209882565,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,0.0,65577.0,35.4516068105661,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,129.0,559505.0,128.584505929552,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,5.0,265282.0,47.8963268422242,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,18.0,154384.0,18.5242456614015,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,5.0,85531.0,11.1162882431298,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,175.0,526918.0,103.771889580882,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,1,2014,169,11.0,159114.0,34.8444280805203,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,560.0,117153.0,43.4962529317812,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,3.0,131912.0,32.8884803290873,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,1,2014,169,237.0,238443.0,33.6171857240697,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,2.0,277879.0,53.7243859064552,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,6.0,237500.0,47.5016115615869,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,10.0,465344.0,61.4212582099342,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,3.0,362471.0,78.2456557723428,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,1,2014,169,2.0,350481.0,71.2678084275934,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,2.0,148216.0,45.2440082485181,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,2.0,218614.0,56.8466715039707,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,1.0,76246.0,15.1307588211306,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,0.0,197455.0,66.2205294870304,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,9.0,158962.0,45.9826426828292,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,1.0,191926.0,33.3362978848412,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,3.0,233915.0,69.6971948550212,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,9.0,191963.0,39.459790438423,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,21.0,289574.0,59.8589958345441,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,1.0,230383.0,47.7494988077875,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,19.0,289018.0,61.0294058884558,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,1,2014,169,10.0,286690.0,79.6781147860496,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,1,2014,169,19.0,771143.0,86.32215282,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,1,2014,169,15.0,226150.0,57.9085630515141,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,10.0,95603.0,23.6556981579639,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,14.0,134971.0,36.7984688304238,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,21.0,217125.0,50.0232738216353,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,19.0,59014.0,20.0133858394809,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,611.0,207605.0,44.8546948788078,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,129.0,349310.0,50.265687978213,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2014,169,3.0,142777.0,37.2295769024103,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,1,2014,169,11.0,113196.0,34.455814970258,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,1,2014,169,1706.0,1746455.0,1223.89653179044,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,47.0,206201.0,98.0152589509331,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,1,2014,169,86.0,169852.0,49.1351490463098,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,106.0,360232.0,87.5377161141898,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,1,2014,169,3.0,82708.0,65.2532322078785,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,126.0,199546.0,63.6334432167645,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,21.0,123562.0,55.1287999700181,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,21.0,606552.0,84.6837287749044,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,20.0,288604.0,111.776353570697,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2014,169,0.0,158889.0,95.9545206593837,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2014,169,2.0,64211.0,50.6984165309655,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,1,2014,169,1.0,236781.0,113.76145178427,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2014,169,0.0,29634.0,16.3407478380023,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,10.0,187921.0,114.560350148266,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,169.0,586326.0,298.977224423132,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2014,169,62.0,696691.0,182.675739010357,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,1,2014,169,3.0,178851.0,75.5329665438434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2014,169,24.0,224905.0,134.501477280323,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,1,2014,169,31.0,167634.0,106.888758308751,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,1,2014,169,6.0,490311.0,274.687720784766,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,43.0,113251.0,79.8719291556883,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,1,2014,169,5.0,239472.0,272.639967612072,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,1,2014,169,992.0,11868032.0,2606.37992241746,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,12.0,154932.0,39.3341775027737,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,11.0,109461.0,38.9044158754275,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,1,2014,169,71.0,148510.0,46.2972168239171,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,39.0,819766.0,78.6543433702584,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,10.0,235304.0,103.811399878252,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,3.0,48586.0,21.1638685240017,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,7.0,69637.0,34.6610442233191,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,0.0,84260.0,34.802952938746,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,1,2014,169,3.0,142901.0,52.6110855691496,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,1,2014,169,12.0,225308.0,40.6338978149182,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,1,2014,169,10.0,100912.0,50.052660834537,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,1,2014,169,15.0,411607.0,119.464428987039,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,1,2014,169,32.0,429062.0,90.4227057766959,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,1,2014,169,112.0,1123155.0,186.991143022661,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,1,2014,169,1.0,112698.0,36.6248901000459,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,20.0,190243.0,27.6863658368175,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,70.0,272723.0,50.7904948985434,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,47.0,275866.0,61.2691949287139,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,5.0,169992.0,43.9099239464898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,1,2014,169,8.0,596251.0,70.2388858390862,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,1,2014,169,204.0,369591.0,91.5183800344193,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,1,2014,169,0.0,191163.0,32.392672121048,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,1,2014,169,0.0,223312.0,51.2441409118635,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,1,2014,169,181.0,536967.0,85.4729554033997,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,1,2014,169,3.0,331319.0,104.469953468647,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,1,2014,169,19.0,259149.0,87.9834712788225,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2014,169,24.0,620863.0,267.044712604655,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,9.0,595583.0,157.594544761453,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2014,169,58.0,195455.0,110.831886716195,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2014,169,81.0,427435.0,78.7603098457973,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,1,2014,169,37.0,410102.0,175.513462491466,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,917.0,2858848.0,919.535870244317,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,5.0,190666.0,119.152874134628,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,7.0,122671.0,42.7859427793267,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,6.0,166171.0,45.2758130750564,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,1,2014,169,50.0,601915.0,34.4088640166845,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,16.0,113792.0,49.4652684347614,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,12.0,348022.0,71.2194415658593,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,74.0,278220.0,38.9646176504697,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,1.0,305865.0,54.9576033788898,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,1,2014,169,0.0,250874.0,32.6110829970506,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,0.0,207195.0,55.6020308966278,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,1.0,281671.0,126.189975062972,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,2.0,137152.0,20.8245551597118,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,1.0,199246.0,48.0906872450154,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,49.0,1434155.0,337.919481090779,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,18.0,688773.0,856.484204387008,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,15.0,541502.0,172.532604252859,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,0.0,72563.0,71.3605617045066,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,216.0,1522740.0,379.006127416117,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,1,2014,169,21.0,424770.0,157.112223803269,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,4.0,27418.0,13.0846377621716,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,0.0,72661.0,16.4370493630373,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,48.0,310240.0,162.795952684176,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,9.0,251755.0,22.56604810913,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,1,2014,169,14.0,238570.0,117.022865059331,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,51.0,1892513.0,2789.64539546086,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,260.0,495465.0,830.810978962034,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,21.0,1449211.0,1864.26610469125,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,14.0,1078149.0,734.61720992441,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,281.0,14597964.0,6186.02992286304,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,1,2014,169,9.0,1421902.0,690.637086999811,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,1,2014,169,111.0,1570532.0,1153.31478743066,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,842.0,283984.0,27.9167892752045,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,11.0,276155.0,26.919327210181,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,23.0,152865.0,37.7475455692674,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,116297.0,23.9419981715404,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,4.0,224566.0,31.7367609194285,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,33.0,193449.0,37.8476784309683,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,47.0,84973.0,35.9303205023344,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,2.0,36091.0,27.7168150082101,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,350.0,588178.0,377.980462162716,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,5.0,308397.0,136.142515674172,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,65.0,776988.0,220.984206491402,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,47359.0,20.8040782508056,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,1.0,138183.0,22.4168692422085,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,13.0,72749.0,32.2132868979974,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,179693.0,39.700316396817,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,1.0,127552.0,46.2402611598693,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,80870.0,26.608081411042,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,102573.0,32.4710941871148,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,1.0,168444.0,17.8081142087175,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,105662.0,18.5627461299021,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,1.0,459835.0,68.8426530939207,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,23.0,401577.0,45.9601655150305,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,23.0,459734.0,53.758771132123,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,87.0,425301.0,76.5997324677902,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,98899.0,42.5599837587841,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,7.0,255135.0,47.1415305984736,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,167576.0,42.9319889490946,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,1.0,75156.0,15.2751479644461,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,395230.0,24.397220176823,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,95186.0,17.6079351037255,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,136147.0,22.4105537084778,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,102586.0,36.1423449703418,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,122250.0,22.3596090103234,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,66335.0,26.2188547619349,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,29885.0,8.65337392123425,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,52049.0,22.6436220219918,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,9.0,3294011.0,386.505029782912,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,1,2014,169,0.0,283981.0,46.5912303915361,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,1,2014,169,0.0,95791.0,39.1439012684289,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,1.0,179000.0,41.9972032133332,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,430084.0,71.4114714022495,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,159189.0,32.8353783236385,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,341594.0,37.8143221792164,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,146019.0,46.425451750084,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,252359.0,26.8383596345427,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,133339.0,69.8443030171441,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,1.0,925643.0,199.376334121525,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,126895.0,19.2677211642045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,1.0,288227.0,18.3063203103774,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,217647.0,41.1018244984379,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,3.0,743398.0,157.114326171808,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,4.0,650754.0,423.746363623645,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,58555.0,38.4947230459024,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,102749.0,48.2337643488074,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,1.0,963534.0,332.558317855025,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,1,2014,169,0.0,24874.0,10.604212896964,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,396845.0,85.6996972606344,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,393988.0,186.41324676089,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,1,2014,169,0.0,192455.0,64.7701754391913,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,161865.0,46.8177172544708,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,147231.0,38.621710824629,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,178344.0,34.2445326093855,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,2.0,218925.0,38.6087907210164,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2014,169,0.0,62343.0,20.2575745189995,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,67463.0,30.3910645653759,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,5.0,201089.0,18.5717777636065,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,191605.0,37.6210608542553,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,165976.0,33.9715577077247,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2014,169,0.0,346534.0,48.9625948275439,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,154223.0,18.3177374353684,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,1.0,43982.0,29.3465687638362,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2014,169,0.0,73954.0,20.4898001149856,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2014,169,0.0,134776.0,37.1318265243078,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2014,169,0.0,163922.0,9.51286847266856,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,1,2014,169,0.0,826612.0,166.207105835303,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,114550.0,10.2097324853597,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,379534.0,32.3469680589716,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,64744.0,21.5586443510203,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,337294.0,60.6644744402868,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,1.0,323731.0,80.0107935670235,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,157401.0,20.7461316685464,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,216118.0,104.330790593525,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,1,2014,169,0.0,316544.0,121.419002670503,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,151755.0,31.0951488043906,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,7.0,3810077.0,680.103505808576,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,1.0,367376.0,41.7842703968088,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,136860.0,23.2625454381479,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,373335.0,12.0128455779662,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,1.0,189297.0,10.9455074777163,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,180372.0,12.662181770003,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,120644.0,7.3478137525637,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,502736.0,48.6560658449237,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,54329.0,8.57325622096971,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,1,2014,169,0.0,271733.0,29.3387318441552,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,1,2014,169,51.0,145838.0,1.75639974821609,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,1,2014,169,29.0,109410.0,3.94348247769765,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2014,169,29.0,123553.0,2.96538692500994,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2014,169,217.0,941361.0,33.3235127288065,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2014,169,5.0,67727.0,4.21058311634996,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2014,169,3.0,79569.0,4.62982151367609,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,1,2014,169,6.0,168170.0,3.5588596877925,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,1,2014,169,5.0,95032.0,7.05593603171225,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,1,2014,169,72.0,108378.0,4.8001094541457,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,1,2014,169,47.0,542454.0,14.5070658037396,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,1,2014,169,25.0,238165.0,10.593621604334,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,1,2014,169,51.0,152295.0,1.22806816334602,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,1,2014,169,80.0,102328.0,1.99075474430998,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,1,2014,169,24.0,148564.0,3.47387910713116,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,1,2014,169,25.0,99190.0,1.6642733651881,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,1,2014,169,4.0,78503.0,1.42943719516128,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,28.0,223705.0,4.1012947461184,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,1,2014,169,336.0,187978.0,3.75636833885127,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,2.0,34407.0,0.735757339451677,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,1,2014,169,52.0,121056.0,1.42516581252444,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,7.0,106676.0,1.7661515611182,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,9.0,66734.0,2.0861488227677,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,1,2014,169,108.0,70719.0,2.25505201283733,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,13.0,156519.0,7.01149853985591,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,1,2014,169,33.0,107828.0,5.71152810421727,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,1,2014,169,7.0,32657.0,4.87320508503266,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,7.0,30560.0,3.30899498693529,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,195.0,890277.0,32.2447170337597,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,1,2014,169,26.0,134727.0,2.52668434224488,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,13.0,93250.0,9.09471532075298,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,5.0,54544.0,2.01434721479577,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,35.0,294225.0,12.0585922132072,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,1,2014,169,3.0,37615.0,3.51095276532339,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,1,2014,169,18.0,79749.0,3.27116632016828,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,1,2014,169,129.0,89792.0,4.43473547299703,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,1,2014,169,65.0,57659.0,5.21630108832212,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,1,2014,169,173.0,239814.0,6.82112930675141,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,1,2014,169,161.0,66803.0,3.136497583544,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,1,2014,169,284.0,244394.0,18.5723309227774,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,1,2014,169,679.0,581770.0,69.5269275374802,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,1,2014,169,685.0,59662.0,8.43701666758961,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,1,2014,169,49.0,115318.0,21.1194488001128,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,1,2014,169,4306.0,2324180.0,344.071688936251,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,1,2014,169,12.0,115712.0,6.65817641744051,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,1,2014,169,1752.0,1164835.0,30.5277653606726,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,1,2014,169,244.0,494619.0,8.82344609947261,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,1,2014,169,163.0,121037.0,8.89753922093675,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,1,2014,169,86.0,387992.0,18.3699017666347,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,1,2014,169,634.0,98328.0,10.3221385134041,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,1,2014,169,66.0,161563.0,10.6090170519183,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,1,2014,169,12.0,119995.0,7.46451232668575,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,1,2014,169,786.0,2852372.0,493.127178183751,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,2,2014,170,17.0,625834.0,9.539529223394,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,2,2014,170,45.0,81101.0,1.98990093489153,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,2,2014,170,62.0,195532.0,8.02709824464268,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,2,2014,170,48.0,316402.0,12.6205592516714,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,2,2014,170,18.0,75085.0,4.69735063362966,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,2,2014,170,29.0,247558.0,10.0831292484848,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,2,2014,170,25.0,152211.0,5.69778094199234,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,2,2014,170,8.0,54808.0,3.74037526587492,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,2,2014,170,33.0,141056.0,4.41621296413769,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,2,2014,170,4.0,77929.0,1.45665748726476,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,2,2014,170,1.0,55143.0,1.35982519835078,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,2,2014,170,106.0,452251.0,20.31606228876,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,2,2014,170,10.0,63722.0,4.01225242161955,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,2,2014,170,22.0,108516.0,0.326565507701272,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,2,2014,170,2.0,23966.0,0.329988871887433,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,2,2014,170,239.0,242875.0,1.13885430572531,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,2,2014,170,0.0,142338.0,1.26379042525399,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,2,2014,170,126.0,90982.0,2.28040415552171,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,2,2014,170,82.0,169227.0,1.50965496219438,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,2,2014,170,325.0,2285623.0,55.3465913924911,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,2,2014,170,0.0,61674.0,1.97871509796449,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,2,2014,170,137.0,168711.0,6.62875064509719,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,2,2014,170,4.0,266488.0,2.49048990291524,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,2,2014,170,2.0,52413.0,0.824795333223176,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,2,2014,170,3.0,75649.0,0.404714177886673,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,2,2014,170,29.0,185281.0,0.838282880053746,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,2,2014,170,26.0,353589.0,5.20744560079786,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,2,2014,170,1.0,46668.0,1.51843923556234,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,2,2014,170,5.0,46161.0,0.622529494593647,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,2,2014,170,18.0,50518.0,0.981814817927336,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,2,2014,170,41.0,196298.0,1.24588334548986,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,2,2014,170,1.0,503673.0,5.44715815866417,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,2,2014,170,0.0,71135.0,0.787184882668497,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,2,2014,170,0.0,142011.0,3.1479650714516,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,2,2014,170,1.0,217765.0,7.23798710961013,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,2,2014,170,1.0,165571.0,5.72510849625266,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,2,2014,170,25.0,2242436.0,716.171833276434,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,2,2014,170,3.0,319481.0,84.8663978981499,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,2,2014,170,7.0,258222.0,43.4998871993401,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,2,2014,170,7.0,401712.0,45.6292696294977,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,2,2014,170,0.0,466929.0,28.0076993469596,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,2,2014,170,16.0,314645.0,13.2744388935124,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,2,2014,170,12.0,455970.0,16.1074872466042,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,2,2014,170,16.0,244492.0,1.28932394394699,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,2,2014,170,285.0,290730.0,1.28553175662767,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,2,2014,170,20.0,356928.0,10.8658821694671,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,2,2014,170,8.0,322755.0,6.66724491617579,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,2,2014,170,23.0,193850.0,1.59895670139025,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,2,2014,170,101.0,292211.0,13.0000045642861,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,2,2014,170,37.0,309469.0,15.4070988992192,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,2,2014,170,16.0,188791.0,8.93570134217599,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,2,2014,170,11.0,149806.0,4.80149773184162,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,2,2014,170,9.0,33607.0,0.911085019182506,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,2,2014,170,0.0,27711.0,1.33468166055141,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,2,2014,170,15.0,611615.0,15.8441951679445,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,2,2014,170,4.0,77979.0,1.67314835530906,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,2,2014,170,36.0,209048.0,13.2531428739327,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,2,2014,170,53.0,302864.0,11.4525868764536,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,2,2014,170,46.0,148107.0,4.25932626827643,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,2,2014,170,106.0,123649.0,2.40267518536552,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,2,2014,170,29.0,146042.0,5.32630989134743,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,2,2014,170,206.0,366873.0,17.321922344032,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,2,2014,170,8.0,77087.0,1.4400686983928,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,2,2014,170,16.0,123210.0,2.61067302218141,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,2,2014,170,15.0,186768.0,19.7939020111641,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,2,2014,170,66.0,1381459.0,967.062692463776,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,2,2014,170,6.0,170773.0,26.5427947436085,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,2,2014,170,1.0,189098.0,17.5364338801036,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,2,2014,170,4.0,585881.0,34.0215623603829,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,2,2014,170,2.0,226672.0,32.1454021564983,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,2,2014,170,15.0,233474.0,10.8221100354883,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,2,2014,170,23.0,648120.0,18.0070857175698,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,2,2014,170,45.0,583526.0,19.967772316648,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,2,2014,170,22.0,415623.0,37.8361294780649,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,2,2014,170,14.0,323562.0,8.78275365142273,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,2,2014,170,12.0,194658.0,29.7678580535345,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,2,2014,170,7.0,141167.0,23.3998565779641,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,2,2014,170,2.0,236667.0,21.9325015055438,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,2,2014,170,2.0,271051.0,27.2790905704038,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,2,2014,170,1.0,90879.0,25.2442718756865,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,2,2014,170,10.0,431688.0,28.1380437911445,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,2,2014,170,3.0,215316.0,8.61432514728431,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,2,2014,170,13.0,116059.0,8.16045967763654,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,2,2014,170,1.0,138048.0,3.78279741667899,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,2,2014,170,1.0,70395.0,4.14681875844725,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2014,170,72.0,336764.0,27.0130290895015,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,2,2014,170,4.0,312365.0,32.1021082559257,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,2,2014,170,171.0,1029832.0,112.205590758581,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,2,2014,170,6.0,223752.0,9.18718548956863,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,2,2014,170,5.0,132640.0,15.9598083105168,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,2,2014,170,5.0,105085.0,7.82317165599302,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2014,170,4.0,45289.0,1.77813313864121,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,2,2014,170,2.0,41393.0,3.72439939744223,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,2,2014,170,9.0,122843.0,6.66203740855088,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,2,2014,170,6.0,90798.0,3.28748241960869,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,2,2014,170,13.0,138782.0,5.04346083514563,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,2,2014,170,0.0,84381.0,4.73071139215261,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,2,2014,170,17.0,203813.0,19.7891958599468,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,2,2014,170,1.0,59267.0,13.7427618489403,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,2,2014,170,2.0,267714.0,8.4896753577052,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,2,2014,170,4.0,377048.0,43.6244550977149,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,2,2014,170,3.0,309131.0,61.0492437973878,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,2,2014,170,0.0,58138.0,28.0636847445978,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,2,2014,170,0.0,25776.0,95.4783366516554,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,2,2014,170,8.0,400799.0,48.6317627189422,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,2,2014,170,120.0,139437.0,33.007827482507,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,2,2014,170,4.0,73586.0,12.2605705202806,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,2,2014,170,5.0,219283.0,59.0803671599041,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,2,2014,170,9.0,111666.0,77.903441655694,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,2,2014,170,21.0,106512.0,101.47935594711,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,2,2014,170,17.0,88787.0,29.3881567138877,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,2,2014,170,6.0,129858.0,24.4495413726655,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,2,2014,170,4.0,193466.0,71.9120909413157,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,2,2014,170,4.0,64700.0,49.8902896112879,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,2,2014,170,0.0,141358.0,55.600209930122,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,2,2014,170,297.0,3533255.0,1047.31189038051,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,2,2014,170,5.0,129680.0,326.606016335998,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,2,2014,170,43.0,245555.0,19.1574640560908,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,2,2014,170,28.0,278280.0,23.2719222716798,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,2,2014,170,261.0,149190.0,12.7311753076359,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,2,2014,170,16.0,222725.0,22.7686841333662,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,2,2014,170,5.0,114917.0,53.3694496763331,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,2,2014,170,113.0,324771.0,32.7081064153889,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,2,2014,170,5.0,63638.0,14.83138539883,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,2,2014,170,143.0,43503.0,21.1993319287925,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,2,2014,170,77.0,229208.0,48.2090768773727,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,2,2014,170,7.0,99214.0,27.9994120421074,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,2,2014,170,19.0,57534.0,35.5737934757597,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,2,2014,170,185.0,98157.0,22.0890221388817,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,2,2014,170,0.0,57579.0,44.6961753107774,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,2,2014,170,3.0,92732.0,34.8381299965249,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,2,2014,170,20.0,559490.0,122.810158314484,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,2,2014,170,46.0,103818.0,53.5232955569235,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,7.0,363615.0,87.0428715592092,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,2.0,76856.0,18.7826418968002,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,2.0,39759.0,13.9013318503442,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,2.0,150642.0,31.4720194086537,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2014,170,179.0,66280.0,66.8420445930176,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2014,170,352.0,118721.0,44.6621631923266,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2014,170,1.0,67467.0,41.3523756479744,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,3.0,57338.0,30.0936741759115,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,2.0,53139.0,13.0304778553774,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,6.0,63859.0,21.2104232571565,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,13.0,103723.0,33.8308833371146,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,217.0,124256.0,32.9411389931165,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,6.0,66742.0,34.9136527172991,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,2,2014,170,11.0,141752.0,36.0809520142795,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2014,170,5.0,245725.0,70.1626286665824,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2014,170,1.0,89882.0,35.2555219626963,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,2,2014,170,5.0,314915.0,151.780197448887,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2014,170,139.0,1125134.0,2570.75726785021,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,2,2014,170,11.0,138705.0,99.9537826766286,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,2,2014,170,5.0,121116.0,39.7296691901271,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,2,2014,170,23.0,174671.0,51.4996916786321,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,2,2014,170,6.0,187634.0,39.0524070071827,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,2,2014,170,7.0,132146.0,51.8492161294252,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,2,2014,170,4.0,71388.0,21.6762467846046,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,2,2014,170,3.0,85726.0,28.1368382909189,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,2,2014,170,10.0,120427.0,46.3587208445471,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2014,170,2.0,40618.0,23.2069983871282,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,2,2014,170,22.0,77582.0,29.7205168907857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2014,170,85.0,126540.0,18.1306657341385,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,2,2014,170,4.0,66005.0,15.6735854829223,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,2,2014,170,15.0,125728.0,32.1768312966693,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,2,2014,170,0.0,96005.0,72.6159143779252,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,2,2014,170,4.0,56419.0,210.641598724935,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,2,2014,170,2.0,116437.0,98.688668650546,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,2,2014,170,12.0,169750.0,131.587573387166,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,2,2014,170,35.0,525030.0,249.216754637981,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,2,2014,170,3.0,110989.0,65.7719030756962,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,2,2014,170,2.0,54604.0,46.1643618237079,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,2,2014,170,2.0,149210.0,75.0727270457688,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,2,2014,170,2.0,137929.0,123.188925367485,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,2,2014,170,174.0,1110891.0,890.003816253648,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,2,2014,170,18.0,87040.0,100.524951635322,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,2,2014,170,0.0,324218.0,28.0947766959906,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,2,2014,170,83.0,168956.0,19.285243052063,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,2,2014,170,33.0,326876.0,37.0339768602847,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,2,2014,170,0.0,226038.0,25.6943502743291,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,2,2014,170,28.0,485792.0,32.4521141185628,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,2,2014,170,2.0,143029.0,15.0303428257047,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,2,2014,170,1.0,190105.0,35.0049461889129,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,2,2014,170,22.0,906609.0,115.305760488469,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2014,170,15.0,300460.0,167.373542147788,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,2,2014,170,38.0,259022.0,147.994054816685,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,2,2014,170,10.0,461152.0,90.0723020000553,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2014,170,37.0,222853.0,87.0504672527879,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2014,170,15.0,557917.0,189.900911011815,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2014,170,2.0,226008.0,240.793502704008,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2014,170,3.0,588547.0,130.046481357898,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2014,170,5.0,180423.0,335.016522603131,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,2,2014,170,175.0,3418795.0,2732.70359547861,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,2,2014,170,30.0,288043.0,298.251193287206,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,2,2014,170,1.0,2884.0,221.944520934108,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,2,2014,170,1.0,93456.0,35.584655023023,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,2,2014,170,2.0,85317.0,62.478764210451,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,2,2014,170,76.0,179392.0,58.536835355151,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,2,2014,170,21.0,96699.0,53.5545415764616,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,2,2014,170,33.0,181915.0,76.063412595563,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,2,2014,170,280.0,437452.0,180.342596780398,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,2,2014,170,0.0,39837.0,42.5727706061729,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2014,170,5.0,153191.0,83.1354460314318,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,2,2014,170,5.0,318124.0,80.6622908569907,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,2,2014,170,17.0,71486.0,71.021769331193,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,2,2014,170,203.0,1229071.0,686.305396290842,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,2,2014,170,5.0,304664.0,102.551747268574,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,2,2014,170,21.0,131126.0,76.6186186757523,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,2,2014,170,0.0,167528.0,30.7632371064288,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,2,2014,170,0.0,72766.0,38.9653656279017,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,0.0,66315.0,53.4434288801962,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,3.0,170038.0,150.296111397271,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,2,2014,170,0.0,114584.0,56.8828219099752,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,2,2014,170,0.0,121262.0,80.4259605016061,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,0.0,94719.0,89.7986803082668,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,3.0,50315.0,65.7164732280944,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,0.0,58127.0,40.6266413145466,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,0.0,96485.0,130.247192829513,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,2,2014,170,35.0,912647.0,1046.12360092635,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,2,2014,170,6.0,163026.0,88.6765359732957,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,2,2014,170,1.0,131762.0,65.0976877135633,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,2,2014,170,10.0,326787.0,6.18274968936838,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,2,2014,170,1.0,122358.0,5.40881394739614,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,2,2014,170,13.0,189796.0,4.5201504595642,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,2,2014,170,38.0,494867.0,9.04451387127559,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,2,2014,170,1.0,182289.0,14.6305533056246,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,2,2014,170,5.0,185881.0,5.708634063159,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,2,2014,170,8.0,183427.0,12.7050366106517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,2,2014,170,7.0,308568.0,18.5610622965584,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,2,2014,170,6.0,402131.0,22.0517150750318,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,2,2014,170,13.0,348317.0,18.5114519949094,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,2,2014,170,9.0,264253.0,16.0480042168473,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,2,2014,170,157.0,1075697.0,84.4008343524228,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,2,2014,170,1.0,103472.0,12.907880841444,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,2,2014,170,53.0,317665.0,16.9959613103447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,2,2014,170,8.0,332500.0,38.4301854256371,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,2,2014,170,68.0,447707.0,42.0444761224087,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,2,2014,170,3.0,334674.0,58.2319958597269,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,0.0,125840.0,28.7540522932658,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,3.0,230951.0,84.027549115157,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,20.0,582505.0,102.174781852748,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,277.0,3792317.0,1312.01315783345,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,2,2014,170,5.0,198620.0,12.3515608099359,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,2,2014,170,14.0,270898.0,13.0579312244425,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,2,2014,170,35.0,536988.0,31.2168854662666,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2014,170,1.0,103581.0,20.1367106784614,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,2,2014,170,4.0,403473.0,17.2119918510122,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,2,2014,170,23.0,244234.0,15.9206263089112,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,2,2014,170,22.0,666427.0,35.4200812330891,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,2,2014,170,0.0,207490.0,18.402392485938,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,9.0,286795.0,49.8493520661152,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,169.0,1057086.0,49.731542589021,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,2,2014,170,50.0,798777.0,28.8218005268733,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,574.0,156877.0,5.7241322341751,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,1638.0,230798.0,6.59247561554705,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,50.0,287864.0,8.66751636642748,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,2,2014,170,12.0,258038.0,17.1593283519335,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,0.0,220704.0,12.3748316822476,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,84.0,173146.0,7.52113356751028,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,2,2014,170,20.0,640028.0,28.6494134239979,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,0.0,44606.0,4.92263752303527,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,8.0,72452.0,9.15425315409963,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,2,2014,170,2.0,85536.0,11.577462347131,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,38.0,206785.0,17.2110394578759,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2014,170,11.0,162675.0,15.8401459876795,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,2,2014,170,4.0,85033.0,16.8385359466099,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,13.0,187400.0,12.1240017764275,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,37.0,276681.0,23.8145394281883,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,21.0,122104.0,14.3953718575714,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,70.0,150977.0,17.291866824192,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,528.0,882384.0,46.9660739653761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,2,2014,170,9.0,208163.0,17.4042652614602,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,67.0,267542.0,24.9477401671504,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,239.0,192936.0,11.4259916289826,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,41.0,373951.0,40.0743180644698,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,2,2014,170,40.0,220293.0,15.6575667574341,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,609.0,102388.0,9.67496402611994,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,2,2014,170,181.0,157538.0,11.4944570174594,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,31.0,175416.0,23.4248734527768,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,102.0,420806.0,49.2572357918242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,1.0,86060.0,12.6226236448655,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,12.0,132284.0,74.7212173465252,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,669.0,5079662.0,871.550478191054,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,36.0,399170.0,49.5615381851486,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,1.0,64345.0,26.6162667598861,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,1.0,185065.0,58.7163633426657,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,0.0,263295.0,88.8436006468983,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,5.0,135878.0,23.5895736340909,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,37.0,83120.0,18.1390757919081,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,90.0,434348.0,38.3795209882565,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,1.0,65577.0,35.4516068105661,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,93.0,559505.0,128.584505929552,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,6.0,265282.0,47.8963268422242,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,9.0,154384.0,18.5242456614015,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,6.0,85531.0,11.1162882431298,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,526.0,526918.0,103.771889580882,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,2,2014,170,35.0,159114.0,34.8444280805203,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,1380.0,117153.0,43.4962529317812,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,5.0,131912.0,32.8884803290873,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,2,2014,170,1054.0,238443.0,33.6171857240697,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,6.0,277879.0,53.7243859064552,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,7.0,237500.0,47.5016115615869,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,10.0,465344.0,61.4212582099342,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,3.0,362471.0,78.2456557723428,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,2,2014,170,4.0,350481.0,71.2678084275934,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,1.0,148216.0,45.2440082485181,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,3.0,218614.0,56.8466715039707,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,0.0,76246.0,15.1307588211306,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,2.0,197455.0,66.2205294870304,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,50.0,158962.0,45.9826426828292,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,32.0,191926.0,33.3362978848412,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,5.0,233915.0,69.6971948550212,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,14.0,191963.0,39.459790438423,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,8.0,289574.0,59.8589958345441,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,1.0,230383.0,47.7494988077875,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,16.0,289018.0,61.0294058884558,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,2,2014,170,15.0,286690.0,79.6781147860496,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,2,2014,170,20.0,771143.0,86.32215282,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,2,2014,170,1.0,226150.0,57.9085630515141,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,4.0,95603.0,23.6556981579639,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,22.0,134971.0,36.7984688304238,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,35.0,217125.0,50.0232738216353,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,40.0,59014.0,20.0133858394809,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,381.0,207605.0,44.8546948788078,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,84.0,349310.0,50.265687978213,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2014,170,7.0,142777.0,37.2295769024103,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,2,2014,170,4.0,113196.0,34.455814970258,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,2,2014,170,1232.0,1746455.0,1223.89653179044,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,24.0,206201.0,98.0152589509331,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,2,2014,170,30.0,169852.0,49.1351490463098,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,182.0,360232.0,87.5377161141898,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,2,2014,170,7.0,82708.0,65.2532322078785,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,82.0,199546.0,63.6334432167645,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,10.0,123562.0,55.1287999700181,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,18.0,606552.0,84.6837287749044,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,6.0,288604.0,111.776353570697,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2014,170,1.0,158889.0,95.9545206593837,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2014,170,1.0,64211.0,50.6984165309655,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,2,2014,170,1.0,236781.0,113.76145178427,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2014,170,0.0,29634.0,16.3407478380023,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,15.0,187921.0,114.560350148266,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,74.0,586326.0,298.977224423132,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2014,170,19.0,696691.0,182.675739010357,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,2,2014,170,5.0,178851.0,75.5329665438434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2014,170,10.0,224905.0,134.501477280323,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,2,2014,170,15.0,167634.0,106.888758308751,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,2,2014,170,4.0,490311.0,274.687720784766,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,27.0,113251.0,79.8719291556883,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,2,2014,170,6.0,239472.0,272.639967612072,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,2,2014,170,620.0,11868032.0,2606.37992241746,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,21.0,154932.0,39.3341775027737,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,15.0,109461.0,38.9044158754275,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,2,2014,170,298.0,148510.0,46.2972168239171,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,62.0,819766.0,78.6543433702584,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,15.0,235304.0,103.811399878252,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,1.0,48586.0,21.1638685240017,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,10.0,69637.0,34.6610442233191,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,1.0,84260.0,34.802952938746,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,2,2014,170,5.0,142901.0,52.6110855691496,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,2,2014,170,25.0,225308.0,40.6338978149182,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,2,2014,170,3.0,100912.0,50.052660834537,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,2,2014,170,48.0,411607.0,119.464428987039,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,2,2014,170,64.0,429062.0,90.4227057766959,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,2,2014,170,234.0,1123155.0,186.991143022661,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,2,2014,170,1.0,112698.0,36.6248901000459,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,91.0,190243.0,27.6863658368175,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,237.0,272723.0,50.7904948985434,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,189.0,275866.0,61.2691949287139,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,9.0,169992.0,43.9099239464898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,2,2014,170,19.0,596251.0,70.2388858390862,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,2,2014,170,755.0,369591.0,91.5183800344193,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,2,2014,170,1.0,191163.0,32.392672121048,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,2,2014,170,0.0,223312.0,51.2441409118635,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,2,2014,170,545.0,536967.0,85.4729554033997,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,2,2014,170,21.0,331319.0,104.469953468647,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,2,2014,170,19.0,259149.0,87.9834712788225,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2014,170,19.0,620863.0,267.044712604655,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,48.0,595583.0,157.594544761453,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2014,170,6.0,195455.0,110.831886716195,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2014,170,296.0,427435.0,78.7603098457973,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,2,2014,170,27.0,410102.0,175.513462491466,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,4629.0,2858848.0,919.535870244317,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,5.0,190666.0,119.152874134628,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,6.0,122671.0,42.7859427793267,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,13.0,166171.0,45.2758130750564,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,2,2014,170,56.0,601915.0,34.4088640166845,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,18.0,113792.0,49.4652684347614,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,18.0,348022.0,71.2194415658593,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,200.0,278220.0,38.9646176504697,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,4.0,305865.0,54.9576033788898,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,2,2014,170,3.0,250874.0,32.6110829970506,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,1.0,207195.0,55.6020308966278,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,2.0,281671.0,126.189975062972,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,0.0,137152.0,20.8245551597118,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,2.0,199246.0,48.0906872450154,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,28.0,1434155.0,337.919481090779,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,62.0,688773.0,856.484204387008,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,26.0,541502.0,172.532604252859,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,0.0,72563.0,71.3605617045066,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,769.0,1522740.0,379.006127416117,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,2,2014,170,18.0,424770.0,157.112223803269,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,2.0,27418.0,13.0846377621716,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,2.0,72661.0,16.4370493630373,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,119.0,310240.0,162.795952684176,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,15.0,251755.0,22.56604810913,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,2,2014,170,22.0,238570.0,117.022865059331,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,259.0,1892513.0,2789.64539546086,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,1028.0,495465.0,830.810978962034,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,80.0,1449211.0,1864.26610469125,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,43.0,1078149.0,734.61720992441,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,933.0,14597964.0,6186.02992286304,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,2,2014,170,13.0,1421902.0,690.637086999811,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,2,2014,170,237.0,1570532.0,1153.31478743066,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,880.0,283984.0,27.9167892752045,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,25.0,276155.0,26.919327210181,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,159.0,152865.0,37.7475455692674,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,4.0,116297.0,23.9419981715404,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,5.0,224566.0,31.7367609194285,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,100.0,193449.0,37.8476784309683,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,48.0,84973.0,35.9303205023344,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,5.0,36091.0,27.7168150082101,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,1317.0,588178.0,377.980462162716,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,6.0,308397.0,136.142515674172,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,176.0,776988.0,220.984206491402,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,2.0,47359.0,20.8040782508056,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,0.0,138183.0,22.4168692422085,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,14.0,72749.0,32.2132868979974,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,3.0,179693.0,39.700316396817,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,5.0,127552.0,46.2402611598693,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,0.0,80870.0,26.608081411042,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,0.0,102573.0,32.4710941871148,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,1.0,168444.0,17.8081142087175,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,105662.0,18.5627461299021,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,459835.0,68.8426530939207,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,118.0,401577.0,45.9601655150305,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,21.0,459734.0,53.758771132123,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,59.0,425301.0,76.5997324677902,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,1.0,98899.0,42.5599837587841,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,6.0,255135.0,47.1415305984736,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,0.0,167576.0,42.9319889490946,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,75156.0,15.2751479644461,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,1.0,395230.0,24.397220176823,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,95186.0,17.6079351037255,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,136147.0,22.4105537084778,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,102586.0,36.1423449703418,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,122250.0,22.3596090103234,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,66335.0,26.2188547619349,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,0.0,29885.0,8.65337392123425,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,52049.0,22.6436220219918,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,7.0,3294011.0,386.505029782912,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,2,2014,170,0.0,283981.0,46.5912303915361,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,2,2014,170,0.0,95791.0,39.1439012684289,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,1.0,179000.0,41.9972032133332,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,430084.0,71.4114714022495,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,159189.0,32.8353783236385,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,341594.0,37.8143221792164,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,146019.0,46.425451750084,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,252359.0,26.8383596345427,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,133339.0,69.8443030171441,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,925643.0,199.376334121525,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,126895.0,19.2677211642045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,1.0,288227.0,18.3063203103774,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,217647.0,41.1018244984379,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,743398.0,157.114326171808,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,3.0,650754.0,423.746363623645,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,58555.0,38.4947230459024,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,102749.0,48.2337643488074,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,1.0,963534.0,332.558317855025,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,2,2014,170,0.0,24874.0,10.604212896964,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,396845.0,85.6996972606344,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,393988.0,186.41324676089,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,2,2014,170,0.0,192455.0,64.7701754391913,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,161865.0,46.8177172544708,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,147231.0,38.621710824629,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,178344.0,34.2445326093855,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,1.0,218925.0,38.6087907210164,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2014,170,2.0,62343.0,20.2575745189995,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,3.0,67463.0,30.3910645653759,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,21.0,201089.0,18.5717777636065,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,2.0,191605.0,37.6210608542553,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,165976.0,33.9715577077247,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2014,170,1.0,346534.0,48.9625948275439,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,154223.0,18.3177374353684,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,43982.0,29.3465687638362,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2014,170,0.0,73954.0,20.4898001149856,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2014,170,0.0,134776.0,37.1318265243078,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2014,170,0.0,163922.0,9.51286847266856,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,2,2014,170,0.0,826612.0,166.207105835303,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,114550.0,10.2097324853597,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,379534.0,32.3469680589716,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,64744.0,21.5586443510203,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,337294.0,60.6644744402868,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,323731.0,80.0107935670235,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,157401.0,20.7461316685464,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,1.0,216118.0,104.330790593525,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,2,2014,170,0.0,316544.0,121.419002670503,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,151755.0,31.0951488043906,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,1.0,3810077.0,680.103505808576,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,367376.0,41.7842703968088,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,136860.0,23.2625454381479,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,373335.0,12.0128455779662,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,189297.0,10.9455074777163,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,1.0,180372.0,12.662181770003,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,120644.0,7.3478137525637,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,502736.0,48.6560658449237,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,54329.0,8.57325622096971,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,2,2014,170,0.0,271733.0,29.3387318441552,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,2,2014,170,72.0,145838.0,1.75639974821609,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,2,2014,170,33.0,109410.0,3.94348247769765,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2014,170,16.0,123553.0,2.96538692500994,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2014,170,260.0,941361.0,33.3235127288065,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2014,170,1.0,67727.0,4.21058311634996,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2014,170,1.0,79569.0,4.62982151367609,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,2,2014,170,12.0,168170.0,3.5588596877925,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,2,2014,170,0.0,95032.0,7.05593603171225,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,2,2014,170,128.0,108378.0,4.8001094541457,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,2,2014,170,21.0,542454.0,14.5070658037396,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,2,2014,170,51.0,238165.0,10.593621604334,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,2,2014,170,48.0,152295.0,1.22806816334602,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,2,2014,170,118.0,102328.0,1.99075474430998,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,2,2014,170,40.0,148564.0,3.47387910713116,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,2,2014,170,46.0,99190.0,1.6642733651881,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,2,2014,170,4.0,78503.0,1.42943719516128,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,50.0,223705.0,4.1012947461184,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,2,2014,170,399.0,187978.0,3.75636833885127,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,1.0,34407.0,0.735757339451677,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,2,2014,170,78.0,121056.0,1.42516581252444,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,11.0,106676.0,1.7661515611182,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,10.0,66734.0,2.0861488227677,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,2,2014,170,28.0,70719.0,2.25505201283733,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,13.0,156519.0,7.01149853985591,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,2,2014,170,35.0,107828.0,5.71152810421727,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,2,2014,170,5.0,32657.0,4.87320508503266,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,11.0,30560.0,3.30899498693529,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,222.0,890277.0,32.2447170337597,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,2,2014,170,22.0,134727.0,2.52668434224488,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,8.0,93250.0,9.09471532075298,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,11.0,54544.0,2.01434721479577,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,30.0,294225.0,12.0585922132072,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,2,2014,170,1.0,37615.0,3.51095276532339,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,2,2014,170,14.0,79749.0,3.27116632016828,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,2,2014,170,67.0,89792.0,4.43473547299703,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,2,2014,170,61.0,57659.0,5.21630108832212,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,2,2014,170,336.0,239814.0,6.82112930675141,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,2,2014,170,185.0,66803.0,3.136497583544,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,2,2014,170,366.0,244394.0,18.5723309227774,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,2,2014,170,795.0,581770.0,69.5269275374802,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,2,2014,170,722.0,59662.0,8.43701666758961,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,2,2014,170,81.0,115318.0,21.1194488001128,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,2,2014,170,4709.0,2324180.0,344.071688936251,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,2,2014,170,26.0,115712.0,6.65817641744051,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,2,2014,170,2709.0,1164835.0,30.5277653606726,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,2,2014,170,333.0,494619.0,8.82344609947261,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,2,2014,170,318.0,121037.0,8.89753922093675,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,2,2014,170,234.0,387992.0,18.3699017666347,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,2,2014,170,656.0,98328.0,10.3221385134041,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,2,2014,170,229.0,161563.0,10.6090170519183,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,2,2014,170,13.0,119995.0,7.46451232668575,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,2,2014,170,1012.0,2852372.0,493.127178183751,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,3,2014,171,74.0,625834.0,9.539529223394,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,3,2014,171,26.0,81101.0,1.98990093489153,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,3,2014,171,28.0,195532.0,8.02709824464268,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,3,2014,171,56.0,316402.0,12.6205592516714,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,3,2014,171,9.0,75085.0,4.69735063362966,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,3,2014,171,35.0,247558.0,10.0831292484848,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,3,2014,171,15.0,152211.0,5.69778094199234,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,3,2014,171,8.0,54808.0,3.74037526587492,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,3,2014,171,104.0,141056.0,4.41621296413769,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,3,2014,171,1.0,77929.0,1.45665748726476,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,3,2014,171,7.0,55143.0,1.35982519835078,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,3,2014,171,110.0,452251.0,20.31606228876,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,3,2014,171,10.0,63722.0,4.01225242161955,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,3,2014,171,65.0,108516.0,0.326565507701272,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,3,2014,171,1.0,23966.0,0.329988871887433,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,3,2014,171,64.0,242875.0,1.13885430572531,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,3,2014,171,3.0,142338.0,1.26379042525399,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,3,2014,171,109.0,90982.0,2.28040415552171,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,3,2014,171,97.0,169227.0,1.50965496219438,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,3,2014,171,628.0,2285623.0,55.3465913924911,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,3,2014,171,3.0,61674.0,1.97871509796449,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,3,2014,171,146.0,168711.0,6.62875064509719,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,3,2014,171,0.0,266488.0,2.49048990291524,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,3,2014,171,7.0,52413.0,0.824795333223176,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,3,2014,171,5.0,75649.0,0.404714177886673,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,3,2014,171,26.0,185281.0,0.838282880053746,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,3,2014,171,14.0,353589.0,5.20744560079786,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,3,2014,171,8.0,46668.0,1.51843923556234,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,3,2014,171,5.0,46161.0,0.622529494593647,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,3,2014,171,39.0,50518.0,0.981814817927336,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,3,2014,171,43.0,196298.0,1.24588334548986,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,3,2014,171,3.0,503673.0,5.44715815866417,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,3,2014,171,1.0,71135.0,0.787184882668497,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,3,2014,171,1.0,142011.0,3.1479650714516,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,3,2014,171,4.0,217765.0,7.23798710961013,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,3,2014,171,12.0,165571.0,5.72510849625266,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,3,2014,171,44.0,2242436.0,716.171833276434,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,3,2014,171,4.0,319481.0,84.8663978981499,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,3,2014,171,4.0,258222.0,43.4998871993401,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,3,2014,171,22.0,401712.0,45.6292696294977,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,3,2014,171,2.0,466929.0,28.0076993469596,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,3,2014,171,18.0,314645.0,13.2744388935124,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,3,2014,171,18.0,455970.0,16.1074872466042,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,3,2014,171,36.0,244492.0,1.28932394394699,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,3,2014,171,210.0,290730.0,1.28553175662767,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,3,2014,171,15.0,356928.0,10.8658821694671,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,3,2014,171,7.0,322755.0,6.66724491617579,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,3,2014,171,109.0,193850.0,1.59895670139025,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,3,2014,171,125.0,292211.0,13.0000045642861,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,3,2014,171,35.0,309469.0,15.4070988992192,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,3,2014,171,9.0,188791.0,8.93570134217599,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,3,2014,171,11.0,149806.0,4.80149773184162,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,3,2014,171,5.0,33607.0,0.911085019182506,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,3,2014,171,0.0,27711.0,1.33468166055141,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,3,2014,171,24.0,611615.0,15.8441951679445,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,3,2014,171,73.0,77979.0,1.67314835530906,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,3,2014,171,38.0,209048.0,13.2531428739327,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,3,2014,171,79.0,302864.0,11.4525868764536,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,3,2014,171,61.0,148107.0,4.25932626827643,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,3,2014,171,112.0,123649.0,2.40267518536552,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,3,2014,171,33.0,146042.0,5.32630989134743,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,3,2014,171,170.0,366873.0,17.321922344032,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,3,2014,171,11.0,77087.0,1.4400686983928,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,3,2014,171,8.0,123210.0,2.61067302218141,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,3,2014,171,7.0,186768.0,19.7939020111641,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,3,2014,171,88.0,1381459.0,967.062692463776,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,3,2014,171,3.0,170773.0,26.5427947436085,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,3,2014,171,1.0,189098.0,17.5364338801036,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,3,2014,171,6.0,585881.0,34.0215623603829,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,3,2014,171,0.0,226672.0,32.1454021564983,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,3,2014,171,30.0,233474.0,10.8221100354883,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,3,2014,171,31.0,648120.0,18.0070857175698,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,3,2014,171,54.0,583526.0,19.967772316648,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,3,2014,171,6.0,415623.0,37.8361294780649,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,3,2014,171,35.0,323562.0,8.78275365142273,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,3,2014,171,14.0,194658.0,29.7678580535345,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,3,2014,171,27.0,141167.0,23.3998565779641,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,3,2014,171,0.0,236667.0,21.9325015055438,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,3,2014,171,1.0,271051.0,27.2790905704038,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,3,2014,171,0.0,90879.0,25.2442718756865,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,3,2014,171,12.0,431688.0,28.1380437911445,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,3,2014,171,10.0,215316.0,8.61432514728431,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,3,2014,171,18.0,116059.0,8.16045967763654,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,3,2014,171,11.0,138048.0,3.78279741667899,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,3,2014,171,0.0,70395.0,4.14681875844725,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2014,171,101.0,336764.0,27.0130290895015,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,3,2014,171,4.0,312365.0,32.1021082559257,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,3,2014,171,235.0,1029832.0,112.205590758581,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,3,2014,171,11.0,223752.0,9.18718548956863,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,3,2014,171,6.0,132640.0,15.9598083105168,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,3,2014,171,2.0,105085.0,7.82317165599302,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2014,171,2.0,45289.0,1.77813313864121,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,3,2014,171,5.0,41393.0,3.72439939744223,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,3,2014,171,4.0,122843.0,6.66203740855088,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,3,2014,171,16.0,90798.0,3.28748241960869,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,3,2014,171,8.0,138782.0,5.04346083514563,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,3,2014,171,0.0,84381.0,4.73071139215261,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,3,2014,171,53.0,203813.0,19.7891958599468,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,3,2014,171,0.0,59267.0,13.7427618489403,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,3,2014,171,13.0,267714.0,8.4896753577052,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,3,2014,171,10.0,377048.0,43.6244550977149,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,3,2014,171,0.0,309131.0,61.0492437973878,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,3,2014,171,0.0,58138.0,28.0636847445978,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,3,2014,171,0.0,25776.0,95.4783366516554,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,3,2014,171,33.0,400799.0,48.6317627189422,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,3,2014,171,93.0,139437.0,33.007827482507,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,3,2014,171,5.0,73586.0,12.2605705202806,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,3,2014,171,8.0,219283.0,59.0803671599041,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,3,2014,171,9.0,111666.0,77.903441655694,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,3,2014,171,21.0,106512.0,101.47935594711,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,3,2014,171,78.0,88787.0,29.3881567138877,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,3,2014,171,19.0,129858.0,24.4495413726655,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,3,2014,171,11.0,193466.0,71.9120909413157,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,3,2014,171,9.0,64700.0,49.8902896112879,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,3,2014,171,3.0,141358.0,55.600209930122,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,3,2014,171,352.0,3533255.0,1047.31189038051,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,3,2014,171,6.0,129680.0,326.606016335998,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,3,2014,171,27.0,245555.0,19.1574640560908,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,3,2014,171,26.0,278280.0,23.2719222716798,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,3,2014,171,328.0,149190.0,12.7311753076359,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,3,2014,171,10.0,222725.0,22.7686841333662,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,3,2014,171,12.0,114917.0,53.3694496763331,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,3,2014,171,46.0,324771.0,32.7081064153889,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,3,2014,171,11.0,63638.0,14.83138539883,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,3,2014,171,92.0,43503.0,21.1993319287925,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,3,2014,171,96.0,229208.0,48.2090768773727,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,3,2014,171,1.0,99214.0,27.9994120421074,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,3,2014,171,20.0,57534.0,35.5737934757597,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,3,2014,171,122.0,98157.0,22.0890221388817,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,3,2014,171,3.0,57579.0,44.6961753107774,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,3,2014,171,9.0,92732.0,34.8381299965249,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,3,2014,171,39.0,559490.0,122.810158314484,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,3,2014,171,167.0,103818.0,53.5232955569235,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,20.0,363615.0,87.0428715592092,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,3.0,76856.0,18.7826418968002,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,1.0,39759.0,13.9013318503442,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,2.0,150642.0,31.4720194086537,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2014,171,46.0,66280.0,66.8420445930176,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2014,171,225.0,118721.0,44.6621631923266,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2014,171,1.0,67467.0,41.3523756479744,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,1.0,57338.0,30.0936741759115,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,17.0,53139.0,13.0304778553774,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,14.0,63859.0,21.2104232571565,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,103.0,103723.0,33.8308833371146,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,345.0,124256.0,32.9411389931165,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,11.0,66742.0,34.9136527172991,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,3,2014,171,9.0,141752.0,36.0809520142795,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2014,171,10.0,245725.0,70.1626286665824,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2014,171,4.0,89882.0,35.2555219626963,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,3,2014,171,6.0,314915.0,151.780197448887,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2014,171,227.0,1125134.0,2570.75726785021,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,3,2014,171,15.0,138705.0,99.9537826766286,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,3,2014,171,13.0,121116.0,39.7296691901271,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,3,2014,171,40.0,174671.0,51.4996916786321,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,3,2014,171,34.0,187634.0,39.0524070071827,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,3,2014,171,10.0,132146.0,51.8492161294252,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,3,2014,171,6.0,71388.0,21.6762467846046,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,3,2014,171,3.0,85726.0,28.1368382909189,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,3,2014,171,29.0,120427.0,46.3587208445471,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2014,171,4.0,40618.0,23.2069983871282,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,3,2014,171,18.0,77582.0,29.7205168907857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2014,171,80.0,126540.0,18.1306657341385,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,3,2014,171,2.0,66005.0,15.6735854829223,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,3,2014,171,7.0,125728.0,32.1768312966693,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,3,2014,171,3.0,96005.0,72.6159143779252,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,3,2014,171,7.0,56419.0,210.641598724935,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,3,2014,171,2.0,116437.0,98.688668650546,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,3,2014,171,17.0,169750.0,131.587573387166,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,3,2014,171,23.0,525030.0,249.216754637981,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,3,2014,171,1.0,110989.0,65.7719030756962,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,3,2014,171,1.0,54604.0,46.1643618237079,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,3,2014,171,5.0,149210.0,75.0727270457688,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,3,2014,171,5.0,137929.0,123.188925367485,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,3,2014,171,193.0,1110891.0,890.003816253648,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,3,2014,171,14.0,87040.0,100.524951635322,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,3,2014,171,1.0,324218.0,28.0947766959906,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,3,2014,171,312.0,168956.0,19.285243052063,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,3,2014,171,44.0,326876.0,37.0339768602847,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,3,2014,171,4.0,226038.0,25.6943502743291,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,3,2014,171,85.0,485792.0,32.4521141185628,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,3,2014,171,2.0,143029.0,15.0303428257047,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,3,2014,171,6.0,190105.0,35.0049461889129,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,3,2014,171,50.0,906609.0,115.305760488469,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2014,171,21.0,300460.0,167.373542147788,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,3,2014,171,28.0,259022.0,147.994054816685,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,3,2014,171,20.0,461152.0,90.0723020000553,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2014,171,47.0,222853.0,87.0504672527879,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2014,171,20.0,557917.0,189.900911011815,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2014,171,1.0,226008.0,240.793502704008,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2014,171,9.0,588547.0,130.046481357898,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2014,171,13.0,180423.0,335.016522603131,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,3,2014,171,209.0,3418795.0,2732.70359547861,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,3,2014,171,52.0,288043.0,298.251193287206,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,3,2014,171,1.0,2884.0,221.944520934108,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,3,2014,171,10.0,93456.0,35.584655023023,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,3,2014,171,5.0,85317.0,62.478764210451,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,3,2014,171,80.0,179392.0,58.536835355151,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,3,2014,171,16.0,96699.0,53.5545415764616,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,3,2014,171,12.0,181915.0,76.063412595563,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,3,2014,171,346.0,437452.0,180.342596780398,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,3,2014,171,1.0,39837.0,42.5727706061729,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2014,171,8.0,153191.0,83.1354460314318,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,3,2014,171,43.0,318124.0,80.6622908569907,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,3,2014,171,24.0,71486.0,71.021769331193,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,3,2014,171,295.0,1229071.0,686.305396290842,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,3,2014,171,14.0,304664.0,102.551747268574,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,3,2014,171,32.0,131126.0,76.6186186757523,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,3,2014,171,2.0,167528.0,30.7632371064288,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,3,2014,171,2.0,72766.0,38.9653656279017,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,0.0,66315.0,53.4434288801962,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,1.0,170038.0,150.296111397271,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,3,2014,171,1.0,114584.0,56.8828219099752,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,3,2014,171,1.0,121262.0,80.4259605016061,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,0.0,94719.0,89.7986803082668,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,2.0,50315.0,65.7164732280944,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,1.0,58127.0,40.6266413145466,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,1.0,96485.0,130.247192829513,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,3,2014,171,86.0,912647.0,1046.12360092635,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,3,2014,171,21.0,163026.0,88.6765359732957,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,3,2014,171,6.0,131762.0,65.0976877135633,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,3,2014,171,15.0,326787.0,6.18274968936838,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,3,2014,171,1.0,122358.0,5.40881394739614,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,3,2014,171,11.0,189796.0,4.5201504595642,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,3,2014,171,148.0,494867.0,9.04451387127559,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,3,2014,171,0.0,182289.0,14.6305533056246,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,3,2014,171,7.0,185881.0,5.708634063159,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,3,2014,171,12.0,183427.0,12.7050366106517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,3,2014,171,12.0,308568.0,18.5610622965584,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,3,2014,171,5.0,402131.0,22.0517150750318,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,3,2014,171,52.0,348317.0,18.5114519949094,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,3,2014,171,27.0,264253.0,16.0480042168473,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,3,2014,171,140.0,1075697.0,84.4008343524228,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,3,2014,171,0.0,103472.0,12.907880841444,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,3,2014,171,179.0,317665.0,16.9959613103447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,3,2014,171,13.0,332500.0,38.4301854256371,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,3,2014,171,40.0,447707.0,42.0444761224087,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,3,2014,171,7.0,334674.0,58.2319958597269,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,2.0,125840.0,28.7540522932658,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,10.0,230951.0,84.027549115157,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,26.0,582505.0,102.174781852748,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,529.0,3792317.0,1312.01315783345,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,3,2014,171,9.0,198620.0,12.3515608099359,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,3,2014,171,16.0,270898.0,13.0579312244425,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,3,2014,171,58.0,536988.0,31.2168854662666,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2014,171,0.0,103581.0,20.1367106784614,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,3,2014,171,9.0,403473.0,17.2119918510122,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,3,2014,171,24.0,244234.0,15.9206263089112,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,3,2014,171,38.0,666427.0,35.4200812330891,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,3,2014,171,1.0,207490.0,18.402392485938,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,7.0,286795.0,49.8493520661152,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,184.0,1057086.0,49.731542589021,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,3,2014,171,59.0,798777.0,28.8218005268733,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,945.0,156877.0,5.7241322341751,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,1384.0,230798.0,6.59247561554705,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,99.0,287864.0,8.66751636642748,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,3,2014,171,9.0,258038.0,17.1593283519335,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,6.0,220704.0,12.3748316822476,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,47.0,173146.0,7.52113356751028,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,3,2014,171,15.0,640028.0,28.6494134239979,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,0.0,44606.0,4.92263752303527,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,17.0,72452.0,9.15425315409963,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,3,2014,171,1.0,85536.0,11.577462347131,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,15.0,206785.0,17.2110394578759,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2014,171,26.0,162675.0,15.8401459876795,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,3,2014,171,3.0,85033.0,16.8385359466099,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,9.0,187400.0,12.1240017764275,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,24.0,276681.0,23.8145394281883,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,13.0,122104.0,14.3953718575714,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,151.0,150977.0,17.291866824192,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,1069.0,882384.0,46.9660739653761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,3,2014,171,38.0,208163.0,17.4042652614602,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,247.0,267542.0,24.9477401671504,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,274.0,192936.0,11.4259916289826,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,60.0,373951.0,40.0743180644698,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,3,2014,171,98.0,220293.0,15.6575667574341,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,124.0,102388.0,9.67496402611994,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,3,2014,171,85.0,157538.0,11.4944570174594,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,58.0,175416.0,23.4248734527768,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,77.0,420806.0,49.2572357918242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,1.0,86060.0,12.6226236448655,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,46.0,132284.0,74.7212173465252,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,1254.0,5079662.0,871.550478191054,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,47.0,399170.0,49.5615381851486,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,6.0,64345.0,26.6162667598861,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,3.0,185065.0,58.7163633426657,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,7.0,263295.0,88.8436006468983,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,1.0,135878.0,23.5895736340909,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,45.0,83120.0,18.1390757919081,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,141.0,434348.0,38.3795209882565,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,0.0,65577.0,35.4516068105661,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,128.0,559505.0,128.584505929552,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,4.0,265282.0,47.8963268422242,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,8.0,154384.0,18.5242456614015,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,36.0,85531.0,11.1162882431298,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,1232.0,526918.0,103.771889580882,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,3,2014,171,109.0,159114.0,34.8444280805203,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,1089.0,117153.0,43.4962529317812,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,18.0,131912.0,32.8884803290873,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,3,2014,171,1411.0,238443.0,33.6171857240697,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,15.0,277879.0,53.7243859064552,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,31.0,237500.0,47.5016115615869,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,78.0,465344.0,61.4212582099342,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,5.0,362471.0,78.2456557723428,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,3,2014,171,6.0,350481.0,71.2678084275934,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,0.0,148216.0,45.2440082485181,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,1.0,218614.0,56.8466715039707,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,2.0,76246.0,15.1307588211306,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,4.0,197455.0,66.2205294870304,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,297.0,158962.0,45.9826426828292,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,183.0,191926.0,33.3362978848412,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,1.0,233915.0,69.6971948550212,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,27.0,191963.0,39.459790438423,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,13.0,289574.0,59.8589958345441,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,3.0,230383.0,47.7494988077875,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,9.0,289018.0,61.0294058884558,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,3,2014,171,21.0,286690.0,79.6781147860496,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,3,2014,171,138.0,771143.0,86.32215282,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,3,2014,171,13.0,226150.0,57.9085630515141,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,6.0,95603.0,23.6556981579639,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,22.0,134971.0,36.7984688304238,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,67.0,217125.0,50.0232738216353,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,35.0,59014.0,20.0133858394809,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,445.0,207605.0,44.8546948788078,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,97.0,349310.0,50.265687978213,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2014,171,7.0,142777.0,37.2295769024103,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,3,2014,171,6.0,113196.0,34.455814970258,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,3,2014,171,1341.0,1746455.0,1223.89653179044,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,37.0,206201.0,98.0152589509331,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,3,2014,171,39.0,169852.0,49.1351490463098,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,213.0,360232.0,87.5377161141898,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,3,2014,171,10.0,82708.0,65.2532322078785,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,10.0,199546.0,63.6334432167645,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,3.0,123562.0,55.1287999700181,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,25.0,606552.0,84.6837287749044,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,17.0,288604.0,111.776353570697,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2014,171,2.0,158889.0,95.9545206593837,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2014,171,3.0,64211.0,50.6984165309655,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,3,2014,171,1.0,236781.0,113.76145178427,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2014,171,0.0,29634.0,16.3407478380023,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,23.0,187921.0,114.560350148266,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,78.0,586326.0,298.977224423132,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2014,171,57.0,696691.0,182.675739010357,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,3,2014,171,6.0,178851.0,75.5329665438434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2014,171,13.0,224905.0,134.501477280323,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,3,2014,171,9.0,167634.0,106.888758308751,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,3,2014,171,3.0,490311.0,274.687720784766,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,4.0,113251.0,79.8719291556883,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,3,2014,171,3.0,239472.0,272.639967612072,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,3,2014,171,587.0,11868032.0,2606.37992241746,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,60.0,154932.0,39.3341775027737,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,32.0,109461.0,38.9044158754275,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,3,2014,171,595.0,148510.0,46.2972168239171,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,111.0,819766.0,78.6543433702584,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,18.0,235304.0,103.811399878252,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,12.0,48586.0,21.1638685240017,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,38.0,69637.0,34.6610442233191,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,4.0,84260.0,34.802952938746,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,3,2014,171,13.0,142901.0,52.6110855691496,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,3,2014,171,45.0,225308.0,40.6338978149182,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,3,2014,171,7.0,100912.0,50.052660834537,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,3,2014,171,48.0,411607.0,119.464428987039,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,3,2014,171,79.0,429062.0,90.4227057766959,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,3,2014,171,327.0,1123155.0,186.991143022661,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,3,2014,171,4.0,112698.0,36.6248901000459,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,113.0,190243.0,27.6863658368175,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,723.0,272723.0,50.7904948985434,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,739.0,275866.0,61.2691949287139,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,67.0,169992.0,43.9099239464898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,3,2014,171,48.0,596251.0,70.2388858390862,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,3,2014,171,1693.0,369591.0,91.5183800344193,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,3,2014,171,3.0,191163.0,32.392672121048,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,3,2014,171,6.0,223312.0,51.2441409118635,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,3,2014,171,399.0,536967.0,85.4729554033997,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,3,2014,171,193.0,331319.0,104.469953468647,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,3,2014,171,77.0,259149.0,87.9834712788225,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2014,171,76.0,620863.0,267.044712604655,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,219.0,595583.0,157.594544761453,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2014,171,16.0,195455.0,110.831886716195,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2014,171,889.0,427435.0,78.7603098457973,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,3,2014,171,257.0,410102.0,175.513462491466,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,13321.0,2858848.0,919.535870244317,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,28.0,190666.0,119.152874134628,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,23.0,122671.0,42.7859427793267,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,4.0,166171.0,45.2758130750564,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,3,2014,171,226.0,601915.0,34.4088640166845,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,32.0,113792.0,49.4652684347614,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,65.0,348022.0,71.2194415658593,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,313.0,278220.0,38.9646176504697,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,29.0,305865.0,54.9576033788898,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,3,2014,171,16.0,250874.0,32.6110829970506,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,0.0,207195.0,55.6020308966278,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,11.0,281671.0,126.189975062972,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,1.0,137152.0,20.8245551597118,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,2.0,199246.0,48.0906872450154,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,103.0,1434155.0,337.919481090779,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,411.0,688773.0,856.484204387008,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,223.0,541502.0,172.532604252859,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,0.0,72563.0,71.3605617045066,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,2403.0,1522740.0,379.006127416117,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,3,2014,171,46.0,424770.0,157.112223803269,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,1.0,27418.0,13.0846377621716,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,19.0,72661.0,16.4370493630373,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,1013.0,310240.0,162.795952684176,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,8.0,251755.0,22.56604810913,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,3,2014,171,59.0,238570.0,117.022865059331,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,2393.0,1892513.0,2789.64539546086,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,2472.0,495465.0,830.810978962034,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,613.0,1449211.0,1864.26610469125,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,255.0,1078149.0,734.61720992441,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,5505.0,14597964.0,6186.02992286304,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,3,2014,171,53.0,1421902.0,690.637086999811,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,3,2014,171,326.0,1570532.0,1153.31478743066,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,619.0,283984.0,27.9167892752045,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,38.0,276155.0,26.919327210181,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,287.0,152865.0,37.7475455692674,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,11.0,116297.0,23.9419981715404,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,42.0,224566.0,31.7367609194285,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,210.0,193449.0,37.8476784309683,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,40.0,84973.0,35.9303205023344,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,14.0,36091.0,27.7168150082101,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,2763.0,588178.0,377.980462162716,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,24.0,308397.0,136.142515674172,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,390.0,776988.0,220.984206491402,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,1.0,47359.0,20.8040782508056,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,8.0,138183.0,22.4168692422085,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,30.0,72749.0,32.2132868979974,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,3.0,179693.0,39.700316396817,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,14.0,127552.0,46.2402611598693,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,0.0,80870.0,26.608081411042,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,1.0,102573.0,32.4710941871148,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,2.0,168444.0,17.8081142087175,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,105662.0,18.5627461299021,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,459835.0,68.8426530939207,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,310.0,401577.0,45.9601655150305,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,20.0,459734.0,53.758771132123,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,147.0,425301.0,76.5997324677902,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,2.0,98899.0,42.5599837587841,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,1.0,255135.0,47.1415305984736,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,4.0,167576.0,42.9319889490946,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,75156.0,15.2751479644461,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,395230.0,24.397220176823,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,95186.0,17.6079351037255,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,136147.0,22.4105537084778,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,102586.0,36.1423449703418,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,122250.0,22.3596090103234,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,66335.0,26.2188547619349,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,0.0,29885.0,8.65337392123425,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,52049.0,22.6436220219918,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,7.0,3294011.0,386.505029782912,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,3,2014,171,0.0,283981.0,46.5912303915361,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,3,2014,171,0.0,95791.0,39.1439012684289,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,179000.0,41.9972032133332,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,1.0,430084.0,71.4114714022495,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,159189.0,32.8353783236385,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,341594.0,37.8143221792164,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,146019.0,46.425451750084,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,252359.0,26.8383596345427,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,133339.0,69.8443030171441,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,2.0,925643.0,199.376334121525,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,126895.0,19.2677211642045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,288227.0,18.3063203103774,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,217647.0,41.1018244984379,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,743398.0,157.114326171808,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,650754.0,423.746363623645,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,58555.0,38.4947230459024,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,102749.0,48.2337643488074,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,4.0,963534.0,332.558317855025,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,3,2014,171,0.0,24874.0,10.604212896964,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,396845.0,85.6996972606344,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,1.0,393988.0,186.41324676089,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,3,2014,171,0.0,192455.0,64.7701754391913,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,161865.0,46.8177172544708,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,2.0,147231.0,38.621710824629,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,1.0,178344.0,34.2445326093855,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,218925.0,38.6087907210164,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2014,171,0.0,62343.0,20.2575745189995,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,1.0,67463.0,30.3910645653759,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,13.0,201089.0,18.5717777636065,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,2.0,191605.0,37.6210608542553,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,165976.0,33.9715577077247,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2014,171,0.0,346534.0,48.9625948275439,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,154223.0,18.3177374353684,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,43982.0,29.3465687638362,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2014,171,0.0,73954.0,20.4898001149856,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2014,171,1.0,134776.0,37.1318265243078,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2014,171,0.0,163922.0,9.51286847266856,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,3,2014,171,2.0,826612.0,166.207105835303,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,114550.0,10.2097324853597,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,379534.0,32.3469680589716,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,64744.0,21.5586443510203,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,337294.0,60.6644744402868,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,1.0,323731.0,80.0107935670235,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,157401.0,20.7461316685464,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,216118.0,104.330790593525,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,3,2014,171,0.0,316544.0,121.419002670503,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,151755.0,31.0951488043906,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,6.0,3810077.0,680.103505808576,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,367376.0,41.7842703968088,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,136860.0,23.2625454381479,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,1.0,373335.0,12.0128455779662,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,189297.0,10.9455074777163,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,180372.0,12.662181770003,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,1.0,120644.0,7.3478137525637,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,3.0,502736.0,48.6560658449237,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,54329.0,8.57325622096971,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,3,2014,171,0.0,271733.0,29.3387318441552,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,3,2014,171,85.0,145838.0,1.75639974821609,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,3,2014,171,19.0,109410.0,3.94348247769765,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2014,171,17.0,123553.0,2.96538692500994,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2014,171,190.0,941361.0,33.3235127288065,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2014,171,7.0,67727.0,4.21058311634996,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2014,171,3.0,79569.0,4.62982151367609,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,3,2014,171,10.0,168170.0,3.5588596877925,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,3,2014,171,3.0,95032.0,7.05593603171225,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,3,2014,171,29.0,108378.0,4.8001094541457,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,3,2014,171,64.0,542454.0,14.5070658037396,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,3,2014,171,52.0,238165.0,10.593621604334,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,3,2014,171,55.0,152295.0,1.22806816334602,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,3,2014,171,185.0,102328.0,1.99075474430998,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,3,2014,171,49.0,148564.0,3.47387910713116,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,3,2014,171,39.0,99190.0,1.6642733651881,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,3,2014,171,6.0,78503.0,1.42943719516128,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,55.0,223705.0,4.1012947461184,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,3,2014,171,282.0,187978.0,3.75636833885127,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,0.0,34407.0,0.735757339451677,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,3,2014,171,31.0,121056.0,1.42516581252444,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,7.0,106676.0,1.7661515611182,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,6.0,66734.0,2.0861488227677,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,3,2014,171,9.0,70719.0,2.25505201283733,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,1.0,156519.0,7.01149853985591,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,3,2014,171,57.0,107828.0,5.71152810421727,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,3,2014,171,0.0,32657.0,4.87320508503266,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,11.0,30560.0,3.30899498693529,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,275.0,890277.0,32.2447170337597,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,3,2014,171,21.0,134727.0,2.52668434224488,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,15.0,93250.0,9.09471532075298,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,17.0,54544.0,2.01434721479577,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,26.0,294225.0,12.0585922132072,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,3,2014,171,0.0,37615.0,3.51095276532339,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,3,2014,171,24.0,79749.0,3.27116632016828,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,3,2014,171,155.0,89792.0,4.43473547299703,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,3,2014,171,117.0,57659.0,5.21630108832212,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,3,2014,171,232.0,239814.0,6.82112930675141,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,3,2014,171,143.0,66803.0,3.136497583544,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,3,2014,171,465.0,244394.0,18.5723309227774,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,3,2014,171,724.0,581770.0,69.5269275374802,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,3,2014,171,389.0,59662.0,8.43701666758961,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,3,2014,171,121.0,115318.0,21.1194488001128,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,3,2014,171,5591.0,2324180.0,344.071688936251,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,3,2014,171,51.0,115712.0,6.65817641744051,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,3,2014,171,3041.0,1164835.0,30.5277653606726,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,3,2014,171,831.0,494619.0,8.82344609947261,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,3,2014,171,395.0,121037.0,8.89753922093675,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,3,2014,171,407.0,387992.0,18.3699017666347,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,3,2014,171,621.0,98328.0,10.3221385134041,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,3,2014,171,566.0,161563.0,10.6090170519183,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,3,2014,171,30.0,119995.0,7.46451232668575,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,3,2014,171,1404.0,2852372.0,493.127178183751,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,4,2014,172,47.0,625834.0,9.539529223394,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,4,2014,172,16.0,81101.0,1.98990093489153,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,4,2014,172,18.0,195532.0,8.02709824464268,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,4,2014,172,40.0,316402.0,12.6205592516714,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,4,2014,172,8.0,75085.0,4.69735063362966,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,4,2014,172,19.0,247558.0,10.0831292484848,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,4,2014,172,21.0,152211.0,5.69778094199234,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,4,2014,172,4.0,54808.0,3.74037526587492,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,4,2014,172,255.0,141056.0,4.41621296413769,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,4,2014,172,1.0,77929.0,1.45665748726476,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,4,2014,172,4.0,55143.0,1.35982519835078,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,4,2014,172,91.0,452251.0,20.31606228876,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,4,2014,172,16.0,63722.0,4.01225242161955,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,4,2014,172,25.0,108516.0,0.326565507701272,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,4,2014,172,0.0,23966.0,0.329988871887433,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,4,2014,172,19.0,242875.0,1.13885430572531,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,4,2014,172,1.0,142338.0,1.26379042525399,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,4,2014,172,78.0,90982.0,2.28040415552171,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,4,2014,172,101.0,169227.0,1.50965496219438,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,4,2014,172,558.0,2285623.0,55.3465913924911,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,4,2014,172,1.0,61674.0,1.97871509796449,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,4,2014,172,85.0,168711.0,6.62875064509719,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,4,2014,172,1.0,266488.0,2.49048990291524,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,4,2014,172,2.0,52413.0,0.824795333223176,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,4,2014,172,1.0,75649.0,0.404714177886673,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,4,2014,172,12.0,185281.0,0.838282880053746,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,4,2014,172,22.0,353589.0,5.20744560079786,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,4,2014,172,7.0,46668.0,1.51843923556234,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,4,2014,172,4.0,46161.0,0.622529494593647,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,4,2014,172,37.0,50518.0,0.981814817927336,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,4,2014,172,29.0,196298.0,1.24588334548986,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,4,2014,172,7.0,503673.0,5.44715815866417,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,4,2014,172,42.0,71135.0,0.787184882668497,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,4,2014,172,0.0,142011.0,3.1479650714516,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,4,2014,172,0.0,217765.0,7.23798710961013,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,4,2014,172,3.0,165571.0,5.72510849625266,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,4,2014,172,50.0,2242436.0,716.171833276434,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,4,2014,172,8.0,319481.0,84.8663978981499,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,4,2014,172,5.0,258222.0,43.4998871993401,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,4,2014,172,9.0,401712.0,45.6292696294977,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,4,2014,172,4.0,466929.0,28.0076993469596,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,4,2014,172,9.0,314645.0,13.2744388935124,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,4,2014,172,14.0,455970.0,16.1074872466042,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,4,2014,172,16.0,244492.0,1.28932394394699,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,4,2014,172,177.0,290730.0,1.28553175662767,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,4,2014,172,10.0,356928.0,10.8658821694671,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,4,2014,172,15.0,322755.0,6.66724491617579,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,4,2014,172,25.0,193850.0,1.59895670139025,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,4,2014,172,85.0,292211.0,13.0000045642861,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,4,2014,172,28.0,309469.0,15.4070988992192,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,4,2014,172,24.0,188791.0,8.93570134217599,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,4,2014,172,11.0,149806.0,4.80149773184162,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,4,2014,172,2.0,33607.0,0.911085019182506,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,4,2014,172,0.0,27711.0,1.33468166055141,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,4,2014,172,33.0,611615.0,15.8441951679445,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,4,2014,172,229.0,77979.0,1.67314835530906,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,4,2014,172,21.0,209048.0,13.2531428739327,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,4,2014,172,53.0,302864.0,11.4525868764536,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,4,2014,172,28.0,148107.0,4.25932626827643,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,4,2014,172,100.0,123649.0,2.40267518536552,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,4,2014,172,25.0,146042.0,5.32630989134743,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,4,2014,172,138.0,366873.0,17.321922344032,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,4,2014,172,8.0,77087.0,1.4400686983928,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,4,2014,172,15.0,123210.0,2.61067302218141,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,4,2014,172,5.0,186768.0,19.7939020111641,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,4,2014,172,151.0,1381459.0,967.062692463776,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,4,2014,172,15.0,170773.0,26.5427947436085,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,4,2014,172,5.0,189098.0,17.5364338801036,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,4,2014,172,2.0,585881.0,34.0215623603829,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,4,2014,172,9.0,226672.0,32.1454021564983,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,4,2014,172,15.0,233474.0,10.8221100354883,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,4,2014,172,34.0,648120.0,18.0070857175698,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,4,2014,172,52.0,583526.0,19.967772316648,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,4,2014,172,6.0,415623.0,37.8361294780649,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,4,2014,172,28.0,323562.0,8.78275365142273,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,4,2014,172,12.0,194658.0,29.7678580535345,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,4,2014,172,4.0,141167.0,23.3998565779641,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,4,2014,172,0.0,236667.0,21.9325015055438,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,4,2014,172,0.0,271051.0,27.2790905704038,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,4,2014,172,5.0,90879.0,25.2442718756865,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,4,2014,172,24.0,431688.0,28.1380437911445,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,4,2014,172,1.0,215316.0,8.61432514728431,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,4,2014,172,23.0,116059.0,8.16045967763654,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,4,2014,172,5.0,138048.0,3.78279741667899,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,4,2014,172,0.0,70395.0,4.14681875844725,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2014,172,144.0,336764.0,27.0130290895015,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,4,2014,172,32.0,312365.0,32.1021082559257,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,4,2014,172,402.0,1029832.0,112.205590758581,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,4,2014,172,39.0,223752.0,9.18718548956863,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,4,2014,172,11.0,132640.0,15.9598083105168,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,4,2014,172,12.0,105085.0,7.82317165599302,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2014,172,8.0,45289.0,1.77813313864121,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,4,2014,172,8.0,41393.0,3.72439939744223,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,4,2014,172,13.0,122843.0,6.66203740855088,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,4,2014,172,24.0,90798.0,3.28748241960869,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,4,2014,172,47.0,138782.0,5.04346083514563,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,4,2014,172,1.0,84381.0,4.73071139215261,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,4,2014,172,138.0,203813.0,19.7891958599468,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,4,2014,172,9.0,59267.0,13.7427618489403,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,4,2014,172,39.0,267714.0,8.4896753577052,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,4,2014,172,10.0,377048.0,43.6244550977149,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,4,2014,172,13.0,309131.0,61.0492437973878,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,4,2014,172,0.0,58138.0,28.0636847445978,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,4,2014,172,0.0,25776.0,95.4783366516554,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,4,2014,172,39.0,400799.0,48.6317627189422,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,4,2014,172,44.0,139437.0,33.007827482507,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,4,2014,172,53.0,73586.0,12.2605705202806,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,4,2014,172,21.0,219283.0,59.0803671599041,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,4,2014,172,14.0,111666.0,77.903441655694,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,4,2014,172,31.0,106512.0,101.47935594711,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,4,2014,172,122.0,88787.0,29.3881567138877,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,4,2014,172,103.0,129858.0,24.4495413726655,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,4,2014,172,15.0,193466.0,71.9120909413157,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,4,2014,172,6.0,64700.0,49.8902896112879,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,4,2014,172,6.0,141358.0,55.600209930122,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,4,2014,172,528.0,3533255.0,1047.31189038051,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,4,2014,172,6.0,129680.0,326.606016335998,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,4,2014,172,40.0,245555.0,19.1574640560908,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,4,2014,172,44.0,278280.0,23.2719222716798,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,4,2014,172,246.0,149190.0,12.7311753076359,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,4,2014,172,5.0,222725.0,22.7686841333662,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,4,2014,172,22.0,114917.0,53.3694496763331,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,4,2014,172,39.0,324771.0,32.7081064153889,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,4,2014,172,55.0,63638.0,14.83138539883,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,4,2014,172,60.0,43503.0,21.1993319287925,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,4,2014,172,182.0,229208.0,48.2090768773727,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,4,2014,172,4.0,99214.0,27.9994120421074,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,4,2014,172,73.0,57534.0,35.5737934757597,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,4,2014,172,172.0,98157.0,22.0890221388817,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,4,2014,172,5.0,57579.0,44.6961753107774,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,4,2014,172,39.0,92732.0,34.8381299965249,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,4,2014,172,148.0,559490.0,122.810158314484,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,4,2014,172,181.0,103818.0,53.5232955569235,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,17.0,363615.0,87.0428715592092,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,9.0,76856.0,18.7826418968002,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,2.0,39759.0,13.9013318503442,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,3.0,150642.0,31.4720194086537,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2014,172,24.0,66280.0,66.8420445930176,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2014,172,147.0,118721.0,44.6621631923266,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2014,172,31.0,67467.0,41.3523756479744,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,1.0,57338.0,30.0936741759115,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,36.0,53139.0,13.0304778553774,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,42.0,63859.0,21.2104232571565,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,343.0,103723.0,33.8308833371146,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,228.0,124256.0,32.9411389931165,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,11.0,66742.0,34.9136527172991,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,4,2014,172,12.0,141752.0,36.0809520142795,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2014,172,10.0,245725.0,70.1626286665824,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2014,172,7.0,89882.0,35.2555219626963,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,4,2014,172,7.0,314915.0,151.780197448887,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2014,172,383.0,1125134.0,2570.75726785021,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,4,2014,172,49.0,138705.0,99.9537826766286,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,4,2014,172,18.0,121116.0,39.7296691901271,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,4,2014,172,46.0,174671.0,51.4996916786321,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,4,2014,172,76.0,187634.0,39.0524070071827,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,4,2014,172,19.0,132146.0,51.8492161294252,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,4,2014,172,19.0,71388.0,21.6762467846046,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,4,2014,172,5.0,85726.0,28.1368382909189,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,4,2014,172,31.0,120427.0,46.3587208445471,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2014,172,11.0,40618.0,23.2069983871282,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,4,2014,172,31.0,77582.0,29.7205168907857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2014,172,58.0,126540.0,18.1306657341385,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,4,2014,172,0.0,66005.0,15.6735854829223,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,4,2014,172,32.0,125728.0,32.1768312966693,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,4,2014,172,9.0,96005.0,72.6159143779252,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,4,2014,172,12.0,56419.0,210.641598724935,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,4,2014,172,10.0,116437.0,98.688668650546,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,4,2014,172,19.0,169750.0,131.587573387166,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,4,2014,172,18.0,525030.0,249.216754637981,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,4,2014,172,2.0,110989.0,65.7719030756962,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,4,2014,172,1.0,54604.0,46.1643618237079,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,4,2014,172,14.0,149210.0,75.0727270457688,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,4,2014,172,2.0,137929.0,123.188925367485,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,4,2014,172,289.0,1110891.0,890.003816253648,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,4,2014,172,12.0,87040.0,100.524951635322,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,4,2014,172,4.0,324218.0,28.0947766959906,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,4,2014,172,481.0,168956.0,19.285243052063,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,4,2014,172,69.0,326876.0,37.0339768602847,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,4,2014,172,11.0,226038.0,25.6943502743291,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,4,2014,172,316.0,485792.0,32.4521141185628,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,4,2014,172,15.0,143029.0,15.0303428257047,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,4,2014,172,12.0,190105.0,35.0049461889129,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,4,2014,172,94.0,906609.0,115.305760488469,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2014,172,3.0,300460.0,167.373542147788,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,4,2014,172,42.0,259022.0,147.994054816685,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,4,2014,172,51.0,461152.0,90.0723020000553,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2014,172,45.0,222853.0,87.0504672527879,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2014,172,11.0,557917.0,189.900911011815,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2014,172,6.0,226008.0,240.793502704008,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2014,172,45.0,588547.0,130.046481357898,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2014,172,15.0,180423.0,335.016522603131,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,4,2014,172,269.0,3418795.0,2732.70359547861,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,4,2014,172,61.0,288043.0,298.251193287206,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,4,2014,172,0.0,2884.0,221.944520934108,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,4,2014,172,8.0,93456.0,35.584655023023,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,4,2014,172,9.0,85317.0,62.478764210451,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,4,2014,172,46.0,179392.0,58.536835355151,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,4,2014,172,13.0,96699.0,53.5545415764616,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,4,2014,172,35.0,181915.0,76.063412595563,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,4,2014,172,348.0,437452.0,180.342596780398,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,4,2014,172,2.0,39837.0,42.5727706061729,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2014,172,37.0,153191.0,83.1354460314318,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,4,2014,172,60.0,318124.0,80.6622908569907,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,4,2014,172,19.0,71486.0,71.021769331193,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,4,2014,172,440.0,1229071.0,686.305396290842,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,4,2014,172,16.0,304664.0,102.551747268574,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,4,2014,172,45.0,131126.0,76.6186186757523,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,4,2014,172,8.0,167528.0,30.7632371064288,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,4,2014,172,2.0,72766.0,38.9653656279017,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,1.0,66315.0,53.4434288801962,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,4.0,170038.0,150.296111397271,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,4,2014,172,3.0,114584.0,56.8828219099752,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,4,2014,172,0.0,121262.0,80.4259605016061,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,7.0,94719.0,89.7986803082668,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,0.0,50315.0,65.7164732280944,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,0.0,58127.0,40.6266413145466,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,6.0,96485.0,130.247192829513,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,4,2014,172,155.0,912647.0,1046.12360092635,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,4,2014,172,80.0,163026.0,88.6765359732957,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,4,2014,172,7.0,131762.0,65.0976877135633,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,4,2014,172,45.0,326787.0,6.18274968936838,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,4,2014,172,4.0,122358.0,5.40881394739614,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,4,2014,172,21.0,189796.0,4.5201504595642,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,4,2014,172,343.0,494867.0,9.04451387127559,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,4,2014,172,2.0,182289.0,14.6305533056246,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,4,2014,172,47.0,185881.0,5.708634063159,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,4,2014,172,10.0,183427.0,12.7050366106517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,4,2014,172,14.0,308568.0,18.5610622965584,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,4,2014,172,16.0,402131.0,22.0517150750318,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,4,2014,172,87.0,348317.0,18.5114519949094,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,4,2014,172,63.0,264253.0,16.0480042168473,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,4,2014,172,183.0,1075697.0,84.4008343524228,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,4,2014,172,4.0,103472.0,12.907880841444,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,4,2014,172,93.0,317665.0,16.9959613103447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,4,2014,172,4.0,332500.0,38.4301854256371,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,4,2014,172,50.0,447707.0,42.0444761224087,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,4,2014,172,10.0,334674.0,58.2319958597269,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,0.0,125840.0,28.7540522932658,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,26.0,230951.0,84.027549115157,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,96.0,582505.0,102.174781852748,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,927.0,3792317.0,1312.01315783345,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,4,2014,172,22.0,198620.0,12.3515608099359,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,4,2014,172,95.0,270898.0,13.0579312244425,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,4,2014,172,55.0,536988.0,31.2168854662666,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2014,172,2.0,103581.0,20.1367106784614,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,4,2014,172,14.0,403473.0,17.2119918510122,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,4,2014,172,32.0,244234.0,15.9206263089112,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,4,2014,172,56.0,666427.0,35.4200812330891,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,4,2014,172,0.0,207490.0,18.402392485938,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,8.0,286795.0,49.8493520661152,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,420.0,1057086.0,49.731542589021,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,4,2014,172,91.0,798777.0,28.8218005268733,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,643.0,156877.0,5.7241322341751,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,1008.0,230798.0,6.59247561554705,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,121.0,287864.0,8.66751636642748,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,4,2014,172,8.0,258038.0,17.1593283519335,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,10.0,220704.0,12.3748316822476,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,53.0,173146.0,7.52113356751028,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,4,2014,172,16.0,640028.0,28.6494134239979,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,0.0,44606.0,4.92263752303527,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,26.0,72452.0,9.15425315409963,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,4,2014,172,1.0,85536.0,11.577462347131,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,7.0,206785.0,17.2110394578759,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2014,172,17.0,162675.0,15.8401459876795,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,4,2014,172,9.0,85033.0,16.8385359466099,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,16.0,187400.0,12.1240017764275,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,76.0,276681.0,23.8145394281883,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,6.0,122104.0,14.3953718575714,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,324.0,150977.0,17.291866824192,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,1328.0,882384.0,46.9660739653761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,4,2014,172,205.0,208163.0,17.4042652614602,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,603.0,267542.0,24.9477401671504,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,555.0,192936.0,11.4259916289826,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,52.0,373951.0,40.0743180644698,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,4,2014,172,176.0,220293.0,15.6575667574341,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,32.0,102388.0,9.67496402611994,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,4,2014,172,127.0,157538.0,11.4944570174594,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,237.0,175416.0,23.4248734527768,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,90.0,420806.0,49.2572357918242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,5.0,86060.0,12.6226236448655,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,61.0,132284.0,74.7212173465252,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,1497.0,5079662.0,871.550478191054,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,55.0,399170.0,49.5615381851486,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,21.0,64345.0,26.6162667598861,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,14.0,185065.0,58.7163633426657,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,3.0,263295.0,88.8436006468983,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,4.0,135878.0,23.5895736340909,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,36.0,83120.0,18.1390757919081,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,122.0,434348.0,38.3795209882565,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,0.0,65577.0,35.4516068105661,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,104.0,559505.0,128.584505929552,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,6.0,265282.0,47.8963268422242,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,10.0,154384.0,18.5242456614015,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,107.0,85531.0,11.1162882431298,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,1831.0,526918.0,103.771889580882,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,4,2014,172,191.0,159114.0,34.8444280805203,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,1116.0,117153.0,43.4962529317812,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,51.0,131912.0,32.8884803290873,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,4,2014,172,1667.0,238443.0,33.6171857240697,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,40.0,277879.0,53.7243859064552,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,154.0,237500.0,47.5016115615869,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,734.0,465344.0,61.4212582099342,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,23.0,362471.0,78.2456557723428,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,4,2014,172,20.0,350481.0,71.2678084275934,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,12.0,148216.0,45.2440082485181,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,17.0,218614.0,56.8466715039707,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,3.0,76246.0,15.1307588211306,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,8.0,197455.0,66.2205294870304,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,871.0,158962.0,45.9826426828292,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,384.0,191926.0,33.3362978848412,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,5.0,233915.0,69.6971948550212,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,29.0,191963.0,39.459790438423,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,10.0,289574.0,59.8589958345441,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,7.0,230383.0,47.7494988077875,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,17.0,289018.0,61.0294058884558,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,4,2014,172,24.0,286690.0,79.6781147860496,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,4,2014,172,302.0,771143.0,86.32215282,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,4,2014,172,6.0,226150.0,57.9085630515141,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,10.0,95603.0,23.6556981579639,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,11.0,134971.0,36.7984688304238,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,39.0,217125.0,50.0232738216353,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,27.0,59014.0,20.0133858394809,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,631.0,207605.0,44.8546948788078,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,150.0,349310.0,50.265687978213,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2014,172,11.0,142777.0,37.2295769024103,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,4,2014,172,3.0,113196.0,34.455814970258,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,4,2014,172,1184.0,1746455.0,1223.89653179044,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,41.0,206201.0,98.0152589509331,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,4,2014,172,33.0,169852.0,49.1351490463098,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,376.0,360232.0,87.5377161141898,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,4,2014,172,6.0,82708.0,65.2532322078785,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,3.0,199546.0,63.6334432167645,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,1.0,123562.0,55.1287999700181,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,27.0,606552.0,84.6837287749044,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,6.0,288604.0,111.776353570697,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2014,172,3.0,158889.0,95.9545206593837,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2014,172,0.0,64211.0,50.6984165309655,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,4,2014,172,1.0,236781.0,113.76145178427,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2014,172,0.0,29634.0,16.3407478380023,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,13.0,187921.0,114.560350148266,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,41.0,586326.0,298.977224423132,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2014,172,151.0,696691.0,182.675739010357,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,4,2014,172,6.0,178851.0,75.5329665438434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2014,172,9.0,224905.0,134.501477280323,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,4,2014,172,20.0,167634.0,106.888758308751,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,4,2014,172,6.0,490311.0,274.687720784766,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,0.0,113251.0,79.8719291556883,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,4,2014,172,4.0,239472.0,272.639967612072,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,4,2014,172,476.0,11868032.0,2606.37992241746,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,150.0,154932.0,39.3341775027737,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,90.0,109461.0,38.9044158754275,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,4,2014,172,1274.0,148510.0,46.2972168239171,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,383.0,819766.0,78.6543433702584,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,47.0,235304.0,103.811399878252,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,50.0,48586.0,21.1638685240017,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,99.0,69637.0,34.6610442233191,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,8.0,84260.0,34.802952938746,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,4,2014,172,32.0,142901.0,52.6110855691496,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,4,2014,172,107.0,225308.0,40.6338978149182,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,4,2014,172,5.0,100912.0,50.052660834537,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,4,2014,172,126.0,411607.0,119.464428987039,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,4,2014,172,187.0,429062.0,90.4227057766959,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,4,2014,172,656.0,1123155.0,186.991143022661,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,4,2014,172,12.0,112698.0,36.6248901000459,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,126.0,190243.0,27.6863658368175,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,567.0,272723.0,50.7904948985434,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,2527.0,275866.0,61.2691949287139,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,319.0,169992.0,43.9099239464898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,4,2014,172,176.0,596251.0,70.2388858390862,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,4,2014,172,2129.0,369591.0,91.5183800344193,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,4,2014,172,24.0,191163.0,32.392672121048,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,4,2014,172,9.0,223312.0,51.2441409118635,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,4,2014,172,757.0,536967.0,85.4729554033997,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,4,2014,172,264.0,331319.0,104.469953468647,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,4,2014,172,333.0,259149.0,87.9834712788225,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2014,172,320.0,620863.0,267.044712604655,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,932.0,595583.0,157.594544761453,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2014,172,83.0,195455.0,110.831886716195,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2014,172,1325.0,427435.0,78.7603098457973,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,4,2014,172,849.0,410102.0,175.513462491466,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,29301.0,2858848.0,919.535870244317,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,179.0,190666.0,119.152874134628,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,69.0,122671.0,42.7859427793267,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,53.0,166171.0,45.2758130750564,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,4,2014,172,357.0,601915.0,34.4088640166845,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,346.0,113792.0,49.4652684347614,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,290.0,348022.0,71.2194415658593,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,397.0,278220.0,38.9646176504697,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,81.0,305865.0,54.9576033788898,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,4,2014,172,63.0,250874.0,32.6110829970506,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,2.0,207195.0,55.6020308966278,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,56.0,281671.0,126.189975062972,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,9.0,137152.0,20.8245551597118,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,10.0,199246.0,48.0906872450154,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,396.0,1434155.0,337.919481090779,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,1063.0,688773.0,856.484204387008,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,829.0,541502.0,172.532604252859,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,7.0,72563.0,71.3605617045066,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,5887.0,1522740.0,379.006127416117,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,4,2014,172,113.0,424770.0,157.112223803269,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,1.0,27418.0,13.0846377621716,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,50.0,72661.0,16.4370493630373,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,3558.0,310240.0,162.795952684176,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,23.0,251755.0,22.56604810913,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,4,2014,172,125.0,238570.0,117.022865059331,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,6696.0,1892513.0,2789.64539546086,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,3457.0,495465.0,830.810978962034,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,2549.0,1449211.0,1864.26610469125,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,1115.0,1078149.0,734.61720992441,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,16709.0,14597964.0,6186.02992286304,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,4,2014,172,201.0,1421902.0,690.637086999811,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,4,2014,172,1618.0,1570532.0,1153.31478743066,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,787.0,283984.0,27.9167892752045,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,139.0,276155.0,26.919327210181,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,437.0,152865.0,37.7475455692674,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,73.0,116297.0,23.9419981715404,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,129.0,224566.0,31.7367609194285,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,530.0,193449.0,37.8476784309683,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,62.0,84973.0,35.9303205023344,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,63.0,36091.0,27.7168150082101,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,1863.0,588178.0,377.980462162716,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,62.0,308397.0,136.142515674172,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,1339.0,776988.0,220.984206491402,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,5.0,47359.0,20.8040782508056,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,11.0,138183.0,22.4168692422085,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,66.0,72749.0,32.2132868979974,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,12.0,179693.0,39.700316396817,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,83.0,127552.0,46.2402611598693,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,0.0,80870.0,26.608081411042,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,2.0,102573.0,32.4710941871148,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,1.0,168444.0,17.8081142087175,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,1.0,105662.0,18.5627461299021,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,2.0,459835.0,68.8426530939207,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,397.0,401577.0,45.9601655150305,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,35.0,459734.0,53.758771132123,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,196.0,425301.0,76.5997324677902,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,2.0,98899.0,42.5599837587841,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,4.0,255135.0,47.1415305984736,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,1.0,167576.0,42.9319889490946,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,0.0,75156.0,15.2751479644461,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,2.0,395230.0,24.397220176823,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,0.0,95186.0,17.6079351037255,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,0.0,136147.0,22.4105537084778,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,0.0,102586.0,36.1423449703418,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,2.0,122250.0,22.3596090103234,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,0.0,66335.0,26.2188547619349,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,0.0,29885.0,8.65337392123425,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,1.0,52049.0,22.6436220219918,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,22.0,3294011.0,386.505029782912,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,4,2014,172,2.0,283981.0,46.5912303915361,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,4,2014,172,0.0,95791.0,39.1439012684289,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,0.0,179000.0,41.9972032133332,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,1.0,430084.0,71.4114714022495,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,1.0,159189.0,32.8353783236385,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,341594.0,37.8143221792164,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,1.0,146019.0,46.425451750084,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,252359.0,26.8383596345427,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,133339.0,69.8443030171441,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,4.0,925643.0,199.376334121525,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,126895.0,19.2677211642045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,288227.0,18.3063203103774,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,2.0,217647.0,41.1018244984379,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,1.0,743398.0,157.114326171808,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,6.0,650754.0,423.746363623645,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,58555.0,38.4947230459024,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,0.0,102749.0,48.2337643488074,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,6.0,963534.0,332.558317855025,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,4,2014,172,0.0,24874.0,10.604212896964,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,1.0,396845.0,85.6996972606344,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,1.0,393988.0,186.41324676089,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,4,2014,172,0.0,192455.0,64.7701754391913,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,2.0,161865.0,46.8177172544708,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,1.0,147231.0,38.621710824629,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,1.0,178344.0,34.2445326093855,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,1.0,218925.0,38.6087907210164,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2014,172,0.0,62343.0,20.2575745189995,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,4.0,67463.0,30.3910645653759,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,6.0,201089.0,18.5717777636065,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,2.0,191605.0,37.6210608542553,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,1.0,165976.0,33.9715577077247,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2014,172,0.0,346534.0,48.9625948275439,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,0.0,154223.0,18.3177374353684,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,0.0,43982.0,29.3465687638362,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2014,172,0.0,73954.0,20.4898001149856,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2014,172,0.0,134776.0,37.1318265243078,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2014,172,0.0,163922.0,9.51286847266856,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,4,2014,172,1.0,826612.0,166.207105835303,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,114550.0,10.2097324853597,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,2.0,379534.0,32.3469680589716,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,0.0,64744.0,21.5586443510203,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,0.0,337294.0,60.6644744402868,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,0.0,323731.0,80.0107935670235,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,157401.0,20.7461316685464,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,1.0,216118.0,104.330790593525,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,4,2014,172,0.0,316544.0,121.419002670503,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,151755.0,31.0951488043906,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,9.0,3810077.0,680.103505808576,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,367376.0,41.7842703968088,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,136860.0,23.2625454381479,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,373335.0,12.0128455779662,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,189297.0,10.9455074777163,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,180372.0,12.662181770003,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,120644.0,7.3478137525637,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,502736.0,48.6560658449237,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,54329.0,8.57325622096971,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,4,2014,172,0.0,271733.0,29.3387318441552,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,4,2014,172,48.0,145838.0,1.75639974821609,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,4,2014,172,7.0,109410.0,3.94348247769765,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2014,172,12.0,123553.0,2.96538692500994,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2014,172,227.0,941361.0,33.3235127288065,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2014,172,23.0,67727.0,4.21058311634996,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2014,172,6.0,79569.0,4.62982151367609,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,4,2014,172,24.0,168170.0,3.5588596877925,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,4,2014,172,5.0,95032.0,7.05593603171225,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,4,2014,172,19.0,108378.0,4.8001094541457,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,4,2014,172,64.0,542454.0,14.5070658037396,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,4,2014,172,43.0,238165.0,10.593621604334,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,4,2014,172,82.0,152295.0,1.22806816334602,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,4,2014,172,157.0,102328.0,1.99075474430998,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,4,2014,172,23.0,148564.0,3.47387910713116,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,4,2014,172,37.0,99190.0,1.6642733651881,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,4,2014,172,7.0,78503.0,1.42943719516128,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,44.0,223705.0,4.1012947461184,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,4,2014,172,211.0,187978.0,3.75636833885127,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,3.0,34407.0,0.735757339451677,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,4,2014,172,12.0,121056.0,1.42516581252444,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,6.0,106676.0,1.7661515611182,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,10.0,66734.0,2.0861488227677,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,4,2014,172,13.0,70719.0,2.25505201283733,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,3.0,156519.0,7.01149853985591,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,4,2014,172,86.0,107828.0,5.71152810421727,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,4,2014,172,3.0,32657.0,4.87320508503266,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,15.0,30560.0,3.30899498693529,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,178.0,890277.0,32.2447170337597,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,4,2014,172,15.0,134727.0,2.52668434224488,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,16.0,93250.0,9.09471532075298,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,7.0,54544.0,2.01434721479577,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,29.0,294225.0,12.0585922132072,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,4,2014,172,4.0,37615.0,3.51095276532339,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,4,2014,172,66.0,79749.0,3.27116632016828,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,4,2014,172,279.0,89792.0,4.43473547299703,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,4,2014,172,84.0,57659.0,5.21630108832212,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,4,2014,172,210.0,239814.0,6.82112930675141,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,4,2014,172,139.0,66803.0,3.136497583544,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,4,2014,172,637.0,244394.0,18.5723309227774,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,4,2014,172,1038.0,581770.0,69.5269275374802,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,4,2014,172,237.0,59662.0,8.43701666758961,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,4,2014,172,190.0,115318.0,21.1194488001128,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,4,2014,172,6026.0,2324180.0,344.071688936251,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,4,2014,172,201.0,115712.0,6.65817641744051,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,4,2014,172,3668.0,1164835.0,30.5277653606726,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,4,2014,172,1368.0,494619.0,8.82344609947261,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,4,2014,172,466.0,121037.0,8.89753922093675,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,4,2014,172,616.0,387992.0,18.3699017666347,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,4,2014,172,268.0,98328.0,10.3221385134041,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,4,2014,172,738.0,161563.0,10.6090170519183,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,4,2014,172,50.0,119995.0,7.46451232668575,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,4,2014,172,2275.0,2852372.0,493.127178183751,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,5,2014,173,52.0,625834.0,9.539529223394,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,5,2014,173,14.0,81101.0,1.98990093489153,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,5,2014,173,16.0,195532.0,8.02709824464268,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,5,2014,173,59.0,316402.0,12.6205592516714,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,5,2014,173,12.0,75085.0,4.69735063362966,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,5,2014,173,11.0,247558.0,10.0831292484848,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,5,2014,173,9.0,152211.0,5.69778094199234,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,5,2014,173,4.0,54808.0,3.74037526587492,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,5,2014,173,369.0,141056.0,4.41621296413769,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,5,2014,173,1.0,77929.0,1.45665748726476,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,5,2014,173,2.0,55143.0,1.35982519835078,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,5,2014,173,50.0,452251.0,20.31606228876,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,5,2014,173,9.0,63722.0,4.01225242161955,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,5,2014,173,37.0,108516.0,0.326565507701272,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,5,2014,173,0.0,23966.0,0.329988871887433,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,5,2014,173,39.0,242875.0,1.13885430572531,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,5,2014,173,3.0,142338.0,1.26379042525399,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,5,2014,173,70.0,90982.0,2.28040415552171,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,5,2014,173,80.0,169227.0,1.50965496219438,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,5,2014,173,310.0,2285623.0,55.3465913924911,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,5,2014,173,1.0,61674.0,1.97871509796449,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,5,2014,173,22.0,168711.0,6.62875064509719,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,5,2014,173,1.0,266488.0,2.49048990291524,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,5,2014,173,1.0,52413.0,0.824795333223176,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,5,2014,173,2.0,75649.0,0.404714177886673,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,5,2014,173,6.0,185281.0,0.838282880053746,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,5,2014,173,24.0,353589.0,5.20744560079786,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,5,2014,173,23.0,46668.0,1.51843923556234,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,5,2014,173,16.0,46161.0,0.622529494593647,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,5,2014,173,41.0,50518.0,0.981814817927336,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,5,2014,173,34.0,196298.0,1.24588334548986,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,5,2014,173,8.0,503673.0,5.44715815866417,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,5,2014,173,73.0,71135.0,0.787184882668497,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,5,2014,173,1.0,142011.0,3.1479650714516,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,5,2014,173,1.0,217765.0,7.23798710961013,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,5,2014,173,2.0,165571.0,5.72510849625266,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,5,2014,173,61.0,2242436.0,716.171833276434,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,5,2014,173,1.0,319481.0,84.8663978981499,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,5,2014,173,4.0,258222.0,43.4998871993401,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,5,2014,173,7.0,401712.0,45.6292696294977,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,5,2014,173,5.0,466929.0,28.0076993469596,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,5,2014,173,16.0,314645.0,13.2744388935124,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,5,2014,173,7.0,455970.0,16.1074872466042,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,5,2014,173,23.0,244492.0,1.28932394394699,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,5,2014,173,126.0,290730.0,1.28553175662767,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,5,2014,173,15.0,356928.0,10.8658821694671,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,5,2014,173,5.0,322755.0,6.66724491617579,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,5,2014,173,26.0,193850.0,1.59895670139025,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,5,2014,173,43.0,292211.0,13.0000045642861,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,5,2014,173,19.0,309469.0,15.4070988992192,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,5,2014,173,16.0,188791.0,8.93570134217599,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,5,2014,173,3.0,149806.0,4.80149773184162,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,5,2014,173,10.0,33607.0,0.911085019182506,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,5,2014,173,0.0,27711.0,1.33468166055141,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,5,2014,173,36.0,611615.0,15.8441951679445,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,5,2014,173,441.0,77979.0,1.67314835530906,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,5,2014,173,21.0,209048.0,13.2531428739327,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,5,2014,173,72.0,302864.0,11.4525868764536,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,5,2014,173,31.0,148107.0,4.25932626827643,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,5,2014,173,108.0,123649.0,2.40267518536552,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,5,2014,173,24.0,146042.0,5.32630989134743,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,5,2014,173,147.0,366873.0,17.321922344032,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,5,2014,173,4.0,77087.0,1.4400686983928,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,5,2014,173,17.0,123210.0,2.61067302218141,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,5,2014,173,13.0,186768.0,19.7939020111641,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,5,2014,173,111.0,1381459.0,967.062692463776,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,5,2014,173,11.0,170773.0,26.5427947436085,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,5,2014,173,3.0,189098.0,17.5364338801036,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,5,2014,173,14.0,585881.0,34.0215623603829,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,5,2014,173,9.0,226672.0,32.1454021564983,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,5,2014,173,8.0,233474.0,10.8221100354883,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,5,2014,173,58.0,648120.0,18.0070857175698,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,5,2014,173,40.0,583526.0,19.967772316648,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,5,2014,173,4.0,415623.0,37.8361294780649,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,5,2014,173,25.0,323562.0,8.78275365142273,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,5,2014,173,1.0,194658.0,29.7678580535345,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,5,2014,173,1.0,141167.0,23.3998565779641,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,5,2014,173,1.0,236667.0,21.9325015055438,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,5,2014,173,1.0,271051.0,27.2790905704038,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,5,2014,173,5.0,90879.0,25.2442718756865,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,5,2014,173,19.0,431688.0,28.1380437911445,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,5,2014,173,5.0,215316.0,8.61432514728431,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,5,2014,173,12.0,116059.0,8.16045967763654,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,5,2014,173,4.0,138048.0,3.78279741667899,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,5,2014,173,0.0,70395.0,4.14681875844725,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2014,173,261.0,336764.0,27.0130290895015,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,5,2014,173,101.0,312365.0,32.1021082559257,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,5,2014,173,829.0,1029832.0,112.205590758581,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,5,2014,173,74.0,223752.0,9.18718548956863,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,5,2014,173,21.0,132640.0,15.9598083105168,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,5,2014,173,49.0,105085.0,7.82317165599302,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2014,173,8.0,45289.0,1.77813313864121,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,5,2014,173,3.0,41393.0,3.72439939744223,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,5,2014,173,8.0,122843.0,6.66203740855088,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,5,2014,173,80.0,90798.0,3.28748241960869,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,5,2014,173,47.0,138782.0,5.04346083514563,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,5,2014,173,5.0,84381.0,4.73071139215261,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,5,2014,173,363.0,203813.0,19.7891958599468,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,5,2014,173,11.0,59267.0,13.7427618489403,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,5,2014,173,145.0,267714.0,8.4896753577052,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,5,2014,173,53.0,377048.0,43.6244550977149,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,5,2014,173,12.0,309131.0,61.0492437973878,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,5,2014,173,3.0,58138.0,28.0636847445978,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,5,2014,173,1.0,25776.0,95.4783366516554,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,5,2014,173,45.0,400799.0,48.6317627189422,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,5,2014,173,77.0,139437.0,33.007827482507,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,5,2014,173,88.0,73586.0,12.2605705202806,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,5,2014,173,51.0,219283.0,59.0803671599041,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,5,2014,173,9.0,111666.0,77.903441655694,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,5,2014,173,45.0,106512.0,101.47935594711,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,5,2014,173,51.0,88787.0,29.3881567138877,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,5,2014,173,153.0,129858.0,24.4495413726655,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,5,2014,173,30.0,193466.0,71.9120909413157,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,5,2014,173,27.0,64700.0,49.8902896112879,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,5,2014,173,62.0,141358.0,55.600209930122,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,5,2014,173,1117.0,3533255.0,1047.31189038051,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,5,2014,173,15.0,129680.0,326.606016335998,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,5,2014,173,32.0,245555.0,19.1574640560908,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,5,2014,173,72.0,278280.0,23.2719222716798,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,5,2014,173,445.0,149190.0,12.7311753076359,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,5,2014,173,15.0,222725.0,22.7686841333662,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,5,2014,173,60.0,114917.0,53.3694496763331,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,5,2014,173,142.0,324771.0,32.7081064153889,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,5,2014,173,92.0,63638.0,14.83138539883,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,5,2014,173,32.0,43503.0,21.1993319287925,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,5,2014,173,95.0,229208.0,48.2090768773727,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,5,2014,173,5.0,99214.0,27.9994120421074,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,5,2014,173,9.0,57534.0,35.5737934757597,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,5,2014,173,168.0,98157.0,22.0890221388817,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,5,2014,173,22.0,57579.0,44.6961753107774,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,5,2014,173,108.0,92732.0,34.8381299965249,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,5,2014,173,358.0,559490.0,122.810158314484,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,5,2014,173,118.0,103818.0,53.5232955569235,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,31.0,363615.0,87.0428715592092,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,10.0,76856.0,18.7826418968002,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,4.0,39759.0,13.9013318503442,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,21.0,150642.0,31.4720194086537,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2014,173,94.0,66280.0,66.8420445930176,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2014,173,179.0,118721.0,44.6621631923266,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2014,173,56.0,67467.0,41.3523756479744,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,2.0,57338.0,30.0936741759115,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,59.0,53139.0,13.0304778553774,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,18.0,63859.0,21.2104232571565,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,477.0,103723.0,33.8308833371146,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,483.0,124256.0,32.9411389931165,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,45.0,66742.0,34.9136527172991,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,5,2014,173,28.0,141752.0,36.0809520142795,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2014,173,19.0,245725.0,70.1626286665824,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2014,173,2.0,89882.0,35.2555219626963,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,5,2014,173,27.0,314915.0,151.780197448887,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2014,173,641.0,1125134.0,2570.75726785021,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,5,2014,173,93.0,138705.0,99.9537826766286,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,5,2014,173,22.0,121116.0,39.7296691901271,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,5,2014,173,66.0,174671.0,51.4996916786321,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,5,2014,173,130.0,187634.0,39.0524070071827,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,5,2014,173,22.0,132146.0,51.8492161294252,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,5,2014,173,8.0,71388.0,21.6762467846046,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,5,2014,173,18.0,85726.0,28.1368382909189,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,5,2014,173,35.0,120427.0,46.3587208445471,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2014,173,42.0,40618.0,23.2069983871282,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,5,2014,173,70.0,77582.0,29.7205168907857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2014,173,51.0,126540.0,18.1306657341385,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,5,2014,173,11.0,66005.0,15.6735854829223,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,5,2014,173,86.0,125728.0,32.1768312966693,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,5,2014,173,4.0,96005.0,72.6159143779252,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,5,2014,173,37.0,56419.0,210.641598724935,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,5,2014,173,12.0,116437.0,98.688668650546,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,5,2014,173,15.0,169750.0,131.587573387166,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,5,2014,173,32.0,525030.0,249.216754637981,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,5,2014,173,1.0,110989.0,65.7719030756962,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,5,2014,173,5.0,54604.0,46.1643618237079,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,5,2014,173,8.0,149210.0,75.0727270457688,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,5,2014,173,2.0,137929.0,123.188925367485,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,5,2014,173,402.0,1110891.0,890.003816253648,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,5,2014,173,17.0,87040.0,100.524951635322,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,5,2014,173,4.0,324218.0,28.0947766959906,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,5,2014,173,723.0,168956.0,19.285243052063,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,5,2014,173,93.0,326876.0,37.0339768602847,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,5,2014,173,12.0,226038.0,25.6943502743291,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,5,2014,173,309.0,485792.0,32.4521141185628,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,5,2014,173,19.0,143029.0,15.0303428257047,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,5,2014,173,21.0,190105.0,35.0049461889129,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,5,2014,173,214.0,906609.0,115.305760488469,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2014,173,13.0,300460.0,167.373542147788,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,5,2014,173,72.0,259022.0,147.994054816685,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,5,2014,173,71.0,461152.0,90.0723020000553,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2014,173,20.0,222853.0,87.0504672527879,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2014,173,31.0,557917.0,189.900911011815,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2014,173,2.0,226008.0,240.793502704008,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2014,173,23.0,588547.0,130.046481357898,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2014,173,6.0,180423.0,335.016522603131,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,5,2014,173,366.0,3418795.0,2732.70359547861,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,5,2014,173,64.0,288043.0,298.251193287206,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,5,2014,173,1.0,2884.0,221.944520934108,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,5,2014,173,10.0,93456.0,35.584655023023,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,5,2014,173,26.0,85317.0,62.478764210451,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,5,2014,173,58.0,179392.0,58.536835355151,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,5,2014,173,27.0,96699.0,53.5545415764616,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,5,2014,173,64.0,181915.0,76.063412595563,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,5,2014,173,530.0,437452.0,180.342596780398,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,5,2014,173,3.0,39837.0,42.5727706061729,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2014,173,23.0,153191.0,83.1354460314318,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,5,2014,173,55.0,318124.0,80.6622908569907,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,5,2014,173,13.0,71486.0,71.021769331193,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,5,2014,173,931.0,1229071.0,686.305396290842,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,5,2014,173,9.0,304664.0,102.551747268574,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,5,2014,173,146.0,131126.0,76.6186186757523,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,5,2014,173,3.0,167528.0,30.7632371064288,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,5,2014,173,6.0,72766.0,38.9653656279017,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,5.0,66315.0,53.4434288801962,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,3.0,170038.0,150.296111397271,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,5,2014,173,4.0,114584.0,56.8828219099752,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,5,2014,173,9.0,121262.0,80.4259605016061,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,17.0,94719.0,89.7986803082668,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,3.0,50315.0,65.7164732280944,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,4.0,58127.0,40.6266413145466,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,13.0,96485.0,130.247192829513,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,5,2014,173,258.0,912647.0,1046.12360092635,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,5,2014,173,258.0,163026.0,88.6765359732957,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,5,2014,173,11.0,131762.0,65.0976877135633,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,5,2014,173,28.0,326787.0,6.18274968936838,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,5,2014,173,1.0,122358.0,5.40881394739614,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,5,2014,173,33.0,189796.0,4.5201504595642,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,5,2014,173,268.0,494867.0,9.04451387127559,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,5,2014,173,1.0,182289.0,14.6305533056246,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,5,2014,173,27.0,185881.0,5.708634063159,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,5,2014,173,26.0,183427.0,12.7050366106517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,5,2014,173,29.0,308568.0,18.5610622965584,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,5,2014,173,13.0,402131.0,22.0517150750318,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,5,2014,173,62.0,348317.0,18.5114519949094,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,5,2014,173,54.0,264253.0,16.0480042168473,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,5,2014,173,113.0,1075697.0,84.4008343524228,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,5,2014,173,4.0,103472.0,12.907880841444,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,5,2014,173,70.0,317665.0,16.9959613103447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,5,2014,173,10.0,332500.0,38.4301854256371,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,5,2014,173,49.0,447707.0,42.0444761224087,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,5,2014,173,45.0,334674.0,58.2319958597269,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,7.0,125840.0,28.7540522932658,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,19.0,230951.0,84.027549115157,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,67.0,582505.0,102.174781852748,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,669.0,3792317.0,1312.01315783345,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,5,2014,173,62.0,198620.0,12.3515608099359,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,5,2014,173,333.0,270898.0,13.0579312244425,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,5,2014,173,49.0,536988.0,31.2168854662666,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2014,173,3.0,103581.0,20.1367106784614,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,5,2014,173,11.0,403473.0,17.2119918510122,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,5,2014,173,21.0,244234.0,15.9206263089112,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,5,2014,173,42.0,666427.0,35.4200812330891,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,5,2014,173,0.0,207490.0,18.402392485938,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,9.0,286795.0,49.8493520661152,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,308.0,1057086.0,49.731542589021,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,5,2014,173,70.0,798777.0,28.8218005268733,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,347.0,156877.0,5.7241322341751,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,618.0,230798.0,6.59247561554705,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,41.0,287864.0,8.66751636642748,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,5,2014,173,8.0,258038.0,17.1593283519335,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,15.0,220704.0,12.3748316822476,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,46.0,173146.0,7.52113356751028,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,5,2014,173,50.0,640028.0,28.6494134239979,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,0.0,44606.0,4.92263752303527,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,23.0,72452.0,9.15425315409963,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,5,2014,173,1.0,85536.0,11.577462347131,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,2.0,206785.0,17.2110394578759,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2014,173,17.0,162675.0,15.8401459876795,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,5,2014,173,3.0,85033.0,16.8385359466099,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,20.0,187400.0,12.1240017764275,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,75.0,276681.0,23.8145394281883,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,13.0,122104.0,14.3953718575714,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,190.0,150977.0,17.291866824192,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,1053.0,882384.0,46.9660739653761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,5,2014,173,268.0,208163.0,17.4042652614602,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,571.0,267542.0,24.9477401671504,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,607.0,192936.0,11.4259916289826,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,43.0,373951.0,40.0743180644698,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,5,2014,173,151.0,220293.0,15.6575667574341,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,37.0,102388.0,9.67496402611994,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,5,2014,173,76.0,157538.0,11.4944570174594,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,349.0,175416.0,23.4248734527768,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,56.0,420806.0,49.2572357918242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,2.0,86060.0,12.6226236448655,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,64.0,132284.0,74.7212173465252,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,1030.0,5079662.0,871.550478191054,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,36.0,399170.0,49.5615381851486,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,10.0,64345.0,26.6162667598861,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,13.0,185065.0,58.7163633426657,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,4.0,263295.0,88.8436006468983,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,4.0,135878.0,23.5895736340909,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,11.0,83120.0,18.1390757919081,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,127.0,434348.0,38.3795209882565,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,0.0,65577.0,35.4516068105661,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,81.0,559505.0,128.584505929552,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,5.0,265282.0,47.8963268422242,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,4.0,154384.0,18.5242456614015,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,107.0,85531.0,11.1162882431298,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,1280.0,526918.0,103.771889580882,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,5,2014,173,167.0,159114.0,34.8444280805203,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,257.0,117153.0,43.4962529317812,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,62.0,131912.0,32.8884803290873,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,5,2014,173,599.0,238443.0,33.6171857240697,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,34.0,277879.0,53.7243859064552,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,123.0,237500.0,47.5016115615869,81.92,81.93,0.3419
+VARGINHA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,283.0,465344.0,61.4212582099342,85.75,86.03,0.3165
+POÇOS DE CALDAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,27.0,362471.0,78.2456557723428,83.15,83.03,0.4231
+POUSO ALEGRE,Minas Gerais,Southeast,Atlantic Rainforest,CFB,5,2014,173,31.0,350481.0,71.2678084275934,77.24,76.18,0.4321
+SANTA RITA DO SAPUCAÍ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,9.0,148216.0,45.2440082485181,73.51,74.06,0.4423
+SÃO LOURENÇO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,18.0,218614.0,56.8466715039707,82.11,83.79,0.3765
+ANDRELÂNDIA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,0.0,76246.0,15.1307588211306,76.82,76.98,0.3223
+ITAJUBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,4.0,197455.0,66.2205294870304,73.62,78.1,0.4835
+LAVRAS,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,359.0,158962.0,45.9826426828292,88.77,89.05,0.3589
+SÃO JOÃO DEL REI,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,99.0,191926.0,33.3362978848412,84.69,85.7,0.4889
+BARBACENA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,3.0,233915.0,69.6971948550212,81.7,81.7,0.5165
+PONTE NOVA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,1.0,191963.0,39.459790438423,70.91,70.63,0.4414
+MANHUAÇU,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,6.0,289574.0,59.8589958345441,62.36,61.59,0.4278
+VIÇOSA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,7.0,230383.0,47.7494988077875,63.07,64.0,0.4016
+MURIAÉ,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,23.0,289018.0,61.0294058884558,74.88,75.91,0.454
+UBÁ,Minas Gerais,Southeast,Atlantic Rainforest,CWA,5,2014,173,19.0,286690.0,79.6781147860496,83.97,82.08,0.3338
+JUIZ DE FORA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,5,2014,173,227.0,771143.0,86.32215282,94.06,91.51,0.3466
+CATAGUASES,Minas Gerais,Southeast,Atlantic Rainforest,AW,5,2014,173,22.0,226150.0,57.9085630515141,89.55,88.59,0.3741
+BARRA DE SÃO FRANCISCO,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,2.0,95603.0,23.6556981579639,63.89,64.3,0.3929
+NOVA VENÉCIA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,20.0,134971.0,36.7984688304238,61.75,60.14,0.3929
+COLATINA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,11.0,217125.0,50.0232738216353,74.29,75.42,0.4864
+MONTANHA,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,48.0,59014.0,20.0133858394809,76.34,75.44,0.2837
+SÃO MATEUS,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,430.0,207605.0,44.8546948788078,77.61,79.86,0.4583
+LINHARES,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,166.0,349310.0,50.265687978213,81.85,82.29,0.237
+AFONSO CLÁUDIO,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2014,173,8.0,142777.0,37.2295769024103,44.37,43.15,0.5488
+SANTA TERESA,Espírito Santo,Southeast,Atlantic Rainforest,CFB,5,2014,173,5.0,113196.0,34.455814970258,42.0,39.67,0.7857
+VITÓRIA,Espírito Santo,Southeast,Atlantic Rainforest,AM,5,2014,173,1261.0,1746455.0,1223.89653179044,98.81,97.59,0.5413
+GUARAPARI,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,42.0,206201.0,98.0152589509331,84.16,81.65,0.2183
+ALEGRE,Espírito Santo,Southeast,Atlantic Rainforest,CWB,5,2014,173,30.0,169852.0,49.1351490463098,59.66,57.22,0.3201
+CACHOEIRO DE ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,459.0,360232.0,87.5377161141898,79.73,81.25,0.7663
+ITAPEMIRIM,Espírito Santo,Southeast,Atlantic Rainforest,AW,5,2014,173,4.0,82708.0,65.2532322078785,66.8,75.94,0.2037
+ITAPERUNA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,3.0,199546.0,63.6334432167645,85.04,83.42,0.6111
+SANTO ANTÔNIO DE PÁDUA,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,1.0,123562.0,55.1287999700181,78.76,79.47,0.6839
+CAMPOS DOS GOYTACAZES,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,28.0,606552.0,84.6837287749044,85.72,69.97,0.419
+MACAÉ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,4.0,288604.0,111.776353570697,93.63,71.97,0.5675
+TRÊS RIOS,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2014,173,1.0,158889.0,95.9545206593837,91.46,86.84,0.6286
+CANTAGALO-CORDEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2014,173,0.0,64211.0,50.6984165309655,82.49,86.14,0.6984
+NOVA FRIBURGO,Rio De Janeiro,Southeast,Atlantic Rainforest,CWB,5,2014,173,4.0,236781.0,113.76145178427,80.51,68.75,0.5238
+SANTA MARIA MADALENA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2014,173,0.0,29634.0,16.3407478380023,51.91,44.94,0.4947
+BACIA DE SÃO JOÃO,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,7.0,187921.0,114.560350148266,89.02,64.24,0.3492
+LAGOS,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,52.0,586326.0,298.977224423132,88.77,72.74,0.6859
+VALE DO PARAÍBA FLUMINENSE,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2014,173,133.0,696691.0,182.675739010357,96.75,93.59,0.4656
+BARRA DO PIRAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,CWA,5,2014,173,4.0,178851.0,75.5329665438434,91.42,77.98,0.9603
+BAÍA DA ILHA GRANDE,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2014,173,13.0,224905.0,134.501477280323,92.39,85.19,0.873
+VASSOURAS,Rio De Janeiro,Southeast,Atlantic Rainforest,CFA,5,2014,173,21.0,167634.0,106.888758308751,80.86,63.3,0.3929
+SERRANA,Rio De Janeiro,Southeast,Atlantic Rainforest,CFB,5,2014,173,2.0,490311.0,274.687720784766,90.94,60.72,0.582
+MACACU-CACERIBU,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,1.0,113251.0,79.8719291556883,80.58,63.76,0.4802
+ITAGUAÍ,Rio De Janeiro,Southeast,Atlantic Rainforest,AW,5,2014,173,3.0,239472.0,272.639967612072,89.63,81.19,0.4947
+RIO DE JANEIRO,Rio De Janeiro,Southeast,Atlantic Rainforest,AM,5,2014,173,486.0,11868032.0,2606.37992241746,99.71,86.81,0.5347
+JALES,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,272.0,154932.0,39.3341775027737,87.18,87.31,0.5086
+FERNANDÓPOLIS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,129.0,109461.0,38.9044158754275,90.39,90.36,0.4127
+VOTUPORANGA,São Paulo,Southeast,Cerrado,AW,5,2014,173,780.0,148510.0,46.2972168239171,92.3,92.25,0.4559
+SÃO JOSÉ DO RIO PRETO,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,451.0,819766.0,78.6543433702584,92.53,89.21,0.5449
+CATANDUVA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,88.0,235304.0,103.811399878252,96.55,94.98,0.7991
+AURIFLAMA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,105.0,48586.0,21.1638685240017,86.76,87.21,0.4462
+NHANDEARA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,70.0,69637.0,34.6610442233191,87.48,86.95,0.2716
+NOVO HORIZONTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,12.0,84260.0,34.802952938746,89.73,88.79,0.6839
+BARRETOS,São Paulo,Southeast,Cerrado,AW,5,2014,173,44.0,142901.0,52.6110855691496,95.39,94.93,0.873
+SÃO JOAQUIM DA BARRA,São Paulo,Southeast,Cerrado,AW,5,2014,173,95.0,225308.0,40.6338978149182,96.12,94.72,0.5044
+ITUVERAVA,São Paulo,Southeast,Cerrado,CWA,5,2014,173,2.0,100912.0,50.052660834537,94.19,93.41,0.646
+FRANCA,São Paulo,Southeast,Cerrado,CWA,5,2014,173,105.0,411607.0,119.464428987039,95.0,95.31,0.4603
+JABOTICABAL,São Paulo,Southeast,Cerrado,CWA,5,2014,173,296.0,429062.0,90.4227057766959,95.26,93.94,0.5444
+RIBEIRÃO PRETO,São Paulo,Southeast,Cerrado,CWA,5,2014,173,638.0,1123155.0,186.991143022661,98.36,97.68,0.4965
+BATATAIS,São Paulo,Southeast,Cerrado,CWA,5,2014,173,4.0,112698.0,36.6248901000459,86.68,90.42,0.7712
+ANDRADINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,174.0,190243.0,27.6863658368175,88.37,88.73,0.5317
+ARAÇATUBA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,330.0,272723.0,50.7904948985434,95.76,95.39,0.5488
+BIRIGUI,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,1944.0,275866.0,61.2691949287139,94.04,93.34,0.3395
+LINS,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,282.0,169992.0,43.9099239464898,92.23,91.67,0.6329
+BAURU,São Paulo,Southeast,Cerrado,CFA,5,2014,173,180.0,596251.0,70.2388858390862,96.06,95.49,0.5612
+JAÚ,São Paulo,Southeast,Cerrado,CFA,5,2014,173,411.0,369591.0,91.5183800344193,95.87,95.87,0.4656
+AVARÉ,São Paulo,Southeast,Cerrado,CFA,5,2014,173,23.0,191163.0,32.392672121048,89.33,87.77,0.5347
+BOTUCATU,São Paulo,Southeast,Cerrado,CFA,5,2014,173,19.0,223312.0,51.2441409118635,92.36,91.57,0.3991
+ARARAQUARA,São Paulo,Southeast,Cerrado,CWA,5,2014,173,755.0,536967.0,85.4729554033997,95.28,95.65,0.3958
+SÃO CARLOS,São Paulo,Southeast,Cerrado,CWA,5,2014,173,149.0,331319.0,104.469953468647,94.98,95.61,0.422
+RIO CLARO,São Paulo,Southeast,Cerrado,CWA,5,2014,173,286.0,259149.0,87.9834712788225,94.66,95.51,0.5966
+LIMEIRA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2014,173,279.0,620863.0,267.044712604655,96.22,96.14,0.502
+PIRACICABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,845.0,595583.0,157.594544761453,95.41,95.85,0.5966
+PIRASSUNUNGA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2014,173,150.0,195455.0,110.831886716195,94.08,94.77,0.502
+SÃO JOÃO DA BOA VISTA,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2014,173,803.0,427435.0,78.7603098457973,88.56,87.72,0.5612
+MOJI MIRIM,São Paulo,Southeast,Cerrado,CWA,5,2014,173,1114.0,410102.0,175.513462491466,92.38,92.75,0.3617
+CAMPINAS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,14678.0,2858848.0,919.535870244317,98.15,96.78,0.4747
+AMPARO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,90.0,190666.0,119.152874134628,75.62,73.94,0.6766
+DRACENA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,81.0,122671.0,42.7859427793267,91.0,92.05,0.6548
+ADAMANTINA,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,137.0,166171.0,45.2758130750564,90.26,90.99,0.5986
+PRESIDENTE PRUDENTE,São Paulo,Southeast,Atlantic Rainforest,AW,5,2014,173,428.0,601915.0,34.4088640166845,90.41,90.32,0.5907
+TUPÃ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,341.0,113792.0,49.4652684347614,91.58,91.09,0.3243
+MARÍLIA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,417.0,348022.0,71.2194415658593,92.98,94.43,0.4231
+ASSIS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,302.0,278220.0,38.9646176504697,93.43,93.08,0.493
+OURINHOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,112.0,305865.0,54.9576033788898,90.14,90.87,0.4753
+ITAPEVA,São Paulo,Southeast,Cerrado,CFA,5,2014,173,56.0,250874.0,32.6110829970506,81.99,84.24,0.3565
+ITAPETININGA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,15.0,207195.0,55.6020308966278,88.23,89.91,0.7857
+TATUÍ,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,29.0,281671.0,126.189975062972,89.62,89.44,0.4947
+CAPÃO BONITO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,14.0,137152.0,20.8245551597118,62.0,73.19,0.5937
+PIEDADE,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,3.0,199246.0,48.0906872450154,51.22,56.52,0.3492
+SOROCABA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,415.0,1434155.0,337.919481090779,93.62,92.51,0.5238
+JUNDIAÍ,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,515.0,688773.0,856.484204387008,96.33,92.22,0.6286
+BRAGANÇA PAULISTA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,577.0,541502.0,172.532604252859,89.73,78.35,0.4444
+CAMPOS DO JORDÃO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,2.0,72563.0,71.3605617045066,84.38,79.29,0.6111
+SÃO JOSÉ DOS CAMPOS,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,4244.0,1522740.0,379.006127416117,96.79,95.99,0.4147
+GUARATINGUETÁ,São Paulo,Southeast,Atlantic Rainforest,CWA,5,2014,173,165.0,424770.0,157.112223803269,94.5,95.23,0.5556
+BANANAL,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,6.0,27418.0,13.0846377621716,69.36,72.19,0.646
+PARAIBUNA/PARAITINGA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,25.0,72661.0,16.4370493630373,48.53,57.16,0.5862
+CARAGUATATUBA,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,2827.0,310240.0,162.795952684176,97.52,80.49,0.2619
+REGISTRO,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,55.0,251755.0,22.56604810913,71.97,72.9,0.5238
+ITANHAÉM,São Paulo,Southeast,Atlantic Rainforest,CFA,5,2014,173,215.0,238570.0,117.022865059331,95.18,90.36,0.646
+OSASCO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,2630.0,1892513.0,2789.64539546086,99.93,97.44,0.4802
+FRANCO DA ROCHA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,1529.0,495465.0,830.810978962034,96.62,91.07,0.6984
+GUARULHOS,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,2125.0,1449211.0,1864.26610469125,98.97,96.21,0.5238
+ITAPECERICA DA SERRA,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,818.0,1078149.0,734.61720992441,98.91,92.31,0.4864
+SÃO PAULO,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,9366.0,14597964.0,6186.02992286304,99.18,98.81,0.5917
+MOGI DAS CRUZES,São Paulo,Southeast,Atlantic Rainforest,CFB,5,2014,173,191.0,1421902.0,690.637086999811,95.29,92.28,0.502
+SANTOS,São Paulo,Southeast,Atlantic Rainforest,AF,5,2014,173,2485.0,1570532.0,1153.31478743066,99.88,96.59,0.6548
+PARANAVAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,575.0,283984.0,27.9167892752045,85.75,86.92,0.2017
+UMUARAMA,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,218.0,276155.0,26.919327210181,80.18,86.3,0.1413
+CIANORTE,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,252.0,152865.0,37.7475455692674,85.2,89.31,0.2619
+GOIOERÊ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,53.0,116297.0,23.9419981715404,77.21,81.2,0.1984
+CAMPO MOURÃO,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,111.0,224566.0,31.7367609194285,81.99,84.98,0.1746
+ASTORGA,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,520.0,193449.0,37.8476784309683,88.08,88.5,0.1627
+PORECATU,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,76.0,84973.0,35.9303205023344,87.5,88.48,0.1964
+FLORAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,63.0,36091.0,27.7168150082101,90.05,88.12,0.1995
+MARINGÁ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,510.0,588178.0,377.980462162716,97.12,93.66,0.1746
+APUCARANA,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,72.0,308397.0,136.142515674172,92.61,92.11,0.291
+LONDRINA,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,965.0,776988.0,220.984206491402,96.03,94.77,0.422
+FAXINAL,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,68.0,47359.0,20.8040782508056,72.7,79.56,0.1746
+IVAIPORÃ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,6.0,138183.0,22.4168692422085,60.04,69.11,0.2037
+ASSAÍ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,127.0,72749.0,32.2132868979974,80.11,82.17,0.1637
+CORNÉLIO PROCÓPIO,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,32.0,179693.0,39.700316396817,84.27,87.84,0.2058
+JACAREZINHO,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,155.0,127552.0,46.2402611598693,85.87,86.29,0.2037
+IBAITI,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,0.0,80870.0,26.608081411042,71.73,76.0,0.131
+WENCESLAU BRAZ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,1.0,102573.0,32.4710941871148,71.66,74.95,0.1921
+TELÊMACO BORBA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,168444.0,17.8081142087175,72.59,80.08,0.3347
+JAGUARIAÍVA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,1.0,105662.0,18.5627461299021,80.77,82.61,0.1746
+PONTA GROSSA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,1.0,459835.0,68.8426530939207,90.08,91.22,0.2183
+TOLEDO,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,237.0,401577.0,45.9601655150305,81.02,89.7,0.1621
+CASCAVEL,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,38.0,459734.0,53.758771132123,85.92,83.8,0.2377
+FOZ DO IGUAÇU,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,170.0,425301.0,76.5997324677902,90.08,91.31,0.2698
+CAPANEMA,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,0.0,98899.0,42.5599837587841,60.39,76.47,0.2619
+FRANCISCO BELTRÃO,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,2.0,255135.0,47.1415305984736,68.14,72.61,0.1358
+PATO BRANCO,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,0.0,167576.0,42.9319889490946,77.55,78.52,0.1833
+PITANGA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,75156.0,15.2751479644461,47.22,51.47,0.1164
+GUARAPUAVA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,1.0,395230.0,24.397220176823,69.49,72.77,0.1843
+PALMAS,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,95186.0,17.6079351037255,73.76,77.77,0.5587
+PRUDENTÓPOLIS,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,136147.0,22.4105537084778,45.95,61.31,0.0873
+IRATI,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,102586.0,36.1423449703418,66.7,72.89,0.0873
+UNIÃO DA VITÓRIA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,122250.0,22.3596090103234,70.79,70.66,0.1964
+SÃO MATEUS DO SUL,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,66335.0,26.2188547619349,48.9,56.92,0.291
+CERRO AZUL,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,0.0,29885.0,8.65337392123425,26.74,45.25,0.291
+LAPA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,52049.0,22.6436220219918,60.98,70.31,0.0437
+CURITIBA,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,14.0,3294011.0,386.505029782912,94.14,95.55,0.1838
+PARANAGUÁ,Paraná,South,Atlantic Rainforest,CFA,5,2014,173,0.0,283981.0,46.5912303915361,90.52,87.9,0.1621
+RIO NEGRO,Paraná,South,Atlantic Rainforest,CFB,5,2014,173,0.0,95791.0,39.1439012684289,49.6,73.15,0.0873
+SÃO MIGUEL DO OESTE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,0.0,179000.0,41.9972032133332,57.88,68.74,0.25
+CHAPECÓ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,2.0,430084.0,71.4114714022495,73.97,72.83,0.3079
+XANXERÊ,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,0.0,159189.0,32.8353783236385,68.4,59.11,0.2157
+JOAÇABA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,1.0,341594.0,37.8143221792164,80.45,80.11,0.3395
+CONCÓRDIA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,0.0,146019.0,46.425451750084,65.69,72.66,0.2619
+CANOINHAS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,1.0,252359.0,26.8383596345427,66.47,65.85,0.2143
+SÃO BENTO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,0.0,133339.0,69.8443030171441,90.81,90.49,0.0873
+JOINVILLE,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,6.0,925643.0,199.376334121525,93.39,88.8,0.246
+CURITIBANOS,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,0.0,126895.0,19.2677211642045,81.58,79.95,0.2619
+CAMPOS DE LAGES,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,0.0,288227.0,18.3063203103774,82.12,81.62,0.2765
+RIO DO SUL,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,0.0,217647.0,41.1018244984379,68.98,64.61,0.2139
+BLUMENAU,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,1.0,743398.0,157.114326171808,89.97,84.76,0.2794
+ITAJAÍ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,4.0,650754.0,423.746363623645,94.92,90.35,0.2474
+ITUPORANGA,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,0.0,58555.0,38.4947230459024,52.35,46.9,0.1247
+TIJUCAS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,0.0,102749.0,48.2337643488074,74.71,76.06,0.212
+FLORIANÓPOLIS,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,4.0,963534.0,332.558317855025,95.5,91.91,0.2183
+TABULEIRO,Santa Catarina,South,Atlantic Rainforest,CFB,5,2014,173,0.0,24874.0,10.604212896964,35.49,27.05,0.2619
+TUBARÃO,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,1.0,396845.0,85.6996972606344,78.85,73.34,0.2849
+CRICIÚMA,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,1.0,393988.0,186.41324676089,89.91,88.11,0.2881
+ARARANGUÁ,Santa Catarina,South,Atlantic Rainforest,CFA,5,2014,173,1.0,192455.0,64.7701754391913,69.46,49.7,0.2245
+SANTA ROSA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,1.0,161865.0,46.8177172544708,70.33,89.89,0.2283
+TRÊS PASSOS,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,147231.0,38.621710824629,57.6,79.91,0.1004
+FREDERICO WESTPHALEN,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,1.0,178344.0,34.2445326093855,53.36,75.44,0.2199
+ERECHIM,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,218925.0,38.6087907210164,72.93,79.23,0.2408
+SANANDUVA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2014,173,1.0,62343.0,20.2575745189995,57.5,70.79,0.1349
+CERRO LARGO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,67463.0,30.3910645653759,51.83,95.74,0.2143
+SANTO ÂNGELO,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,1.0,201089.0,18.5717777636065,75.96,89.8,0.1255
+IJUÍ,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,191605.0,37.6210608542553,78.94,88.74,0.1979
+CARAZINHO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,165976.0,33.9715577077247,78.26,89.61,0.2183
+PASSO FUNDO,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2014,173,1.0,346534.0,48.9625948275439,82.62,88.06,0.235
+CRUZ ALTA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,154223.0,18.3177374353684,78.32,86.18,0.1871
+NÃO-ME-TOQUE,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,43982.0,29.3465687638362,74.37,89.38,0.1247
+SOLEDADE,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2014,173,0.0,73954.0,20.4898001149856,53.77,64.79,0.1091
+GUAPORÉ,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2014,173,0.0,134776.0,37.1318265243078,66.58,80.72,0.2661
+VACARIA,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2014,173,0.0,163922.0,9.51286847266856,76.0,78.12,0.1871
+CAXIAS DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFB,5,2014,173,0.0,826612.0,166.207105835303,90.61,91.02,0.1649
+SANTIAGO,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,1.0,114550.0,10.2097324853597,76.71,84.38,0.1455
+SANTA MARIA,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,379534.0,32.3469680589716,87.66,85.58,0.1679
+RESTINGA SECA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,64744.0,21.5586443510203,49.22,58.21,0.1746
+SANTA CRUZ DO SUL,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,337294.0,60.6644744402868,63.24,76.07,0.1964
+LAJEADO-ESTRELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,1.0,323731.0,80.0107935670235,74.87,84.54,0.1577
+CACHOEIRA DO SUL,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,1.0,157401.0,20.7461316685464,72.96,79.44,0.2245
+MONTENEGRO,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,0.0,216118.0,104.330790593525,74.71,67.66,0.2744
+GRAMADO-CANELA,Rio Grande Do Sul,South,Atlantic Rainforest,CFA,5,2014,173,2.0,316544.0,121.419002670503,86.96,75.57,0.2561
+SÃO JERÔNIMO,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,151755.0,31.0951488043906,79.35,77.54,0.2813
+PORTO ALEGRE,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,4.0,3810077.0,680.103505808576,98.17,89.95,0.2103
+OSÓRIO,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,1.0,367376.0,41.7842703968088,83.91,68.95,0.1782
+CAMAQUÃ,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,136860.0,23.2625454381479,63.9,64.11,0.1091
+CAMPANHA OCIDENTAL,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,373335.0,12.0128455779662,88.29,87.41,0.1746
+CAMPANHA CENTRAL,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,189297.0,10.9455074777163,88.75,87.49,0.5456
+CAMPANHA MERIDIONAL,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,180372.0,12.662181770003,81.64,91.66,0.1746
+SERRAS DE SUDESTE,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,120644.0,7.3478137525637,62.59,68.32,0.2183
+PELOTAS,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,502736.0,48.6560658449237,81.2,80.73,0.1484
+JAGUARÃO,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,54329.0,8.57325622096971,87.94,87.82,0.0291
+LITORAL LAGUNAR,Rio Grande Do Sul,South,Pampa,CFA,5,2014,173,0.0,271733.0,29.3387318441552,92.51,89.05,0.2401
+BAIXO PANTANAL,Mato Grosso Do Sul,Centre-West,Pantanal,AW,5,2014,173,23.0,145838.0,1.75639974821609,88.31,88.78,0.0
+AQUIDAUANA,Mato Grosso Do Sul,Centre-West,Pantanal,AM,5,2014,173,6.0,109410.0,3.94348247769765,72.36,79.59,0.1528
+ALTO TAQUARI,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2014,173,10.0,123553.0,2.96538692500994,84.51,84.29,0.0437
+CAMPO GRANDE,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2014,173,139.0,941361.0,33.3235127288065,94.71,88.13,0.1855
+CASSILÂNDIA,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2014,173,23.0,67727.0,4.21058311634996,87.29,86.48,0.3201
+PARANAÍBA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2014,173,8.0,79569.0,4.62982151367609,85.58,65.8,0.1921
+TRÊS LAGOAS,Mato Grosso Do Sul,Centre-West,Cerrado,AM,5,2014,173,32.0,168170.0,3.5588596877925,84.16,83.69,0.0524
+NOVA ANDRADINA,Mato Grosso Do Sul,Centre-West,Cerrado,AW,5,2014,173,1.0,95032.0,7.05593603171225,78.5,81.68,0.2444
+BODOQUENA,Mato Grosso Do Sul,Centre-West,Cerrado,AF,5,2014,173,5.0,108378.0,4.8001094541457,78.59,80.51,0.1247
+DOURADOS,Mato Grosso Do Sul,Centre-West,Cerrado,CFA,5,2014,173,55.0,542454.0,14.5070658037396,81.81,77.45,0.2095
+IGUATEMI,Mato Grosso Do Sul,Centre-West,Atlantic Rainforest,CFA,5,2014,173,52.0,238165.0,10.593621604334,73.65,76.66,0.1419
+ARIPUANÃ,Mato Grosso,Centre-West,Amazon,AM,5,2014,173,35.0,152295.0,1.22806816334602,63.6,35.92,0.3601
+ALTA FLORESTA,Mato Grosso,Centre-West,Amazon,AM,5,2014,173,70.0,102328.0,1.99075474430998,68.03,45.73,0.1746
+COLÍDER,Mato Grosso,Centre-West,Amazon,AM,5,2014,173,30.0,148564.0,3.47387910713116,67.15,57.84,0.371
+PARECIS,Mato Grosso,Centre-West,Cerrado,AM,5,2014,173,40.0,99190.0,1.6642733651881,82.48,80.75,0.4889
+ARINOS,Mato Grosso,Centre-West,Amazon,AM,5,2014,173,2.0,78503.0,1.42943719516128,69.82,69.05,0.3783
+ALTO TELES PIRES,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,52.0,223705.0,4.1012947461184,84.07,83.82,0.5044
+SINOP,Mato Grosso,Centre-West,Amazon,AM,5,2014,173,130.0,187978.0,3.75636833885127,78.9,68.73,0.5044
+PARANATINGA,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,5.0,34407.0,0.735757339451677,68.97,70.58,0.1964
+NORTE ARAGUAIA,Mato Grosso,Centre-West,Amazon,AW,5,2014,173,7.0,121056.0,1.42516581252444,58.9,36.2,0.3741
+CANARANA,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,10.0,106676.0,1.7661515611182,65.79,60.92,0.6766
+MÉDIO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,3.0,66734.0,2.0861488227677,87.24,82.03,0.4656
+ALTO GUAPORÉ,Mato Grosso,Centre-West,Amazon,AM,5,2014,173,5.0,70719.0,2.25505201283733,67.35,51.52,0.6984
+TANGARÁ DA SERRA,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,2.0,156519.0,7.01149853985591,87.57,84.24,0.2095
+JAURU,Mato Grosso,Centre-West,Amazon,AW,5,2014,173,39.0,107828.0,5.71152810421727,70.18,63.89,0.4511
+ALTO PARAGUAI,Mato Grosso,Centre-West,Amazon,AW,5,2014,173,3.0,32657.0,4.87320508503266,76.07,67.88,0.3667
+ROSÁRIO OESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,1.0,30560.0,3.30899498693529,53.44,58.09,0.8148
+CUIABÁ,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,140.0,890277.0,32.2447170337597,95.37,88.52,0.3667
+ALTO PANTANAL,Mato Grosso,Centre-West,Pantanal,AW,5,2014,173,4.0,134727.0,2.52668434224488,80.19,69.22,0.502
+PRIMAVERA DO LESTE,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,11.0,93250.0,9.09471532075298,90.03,74.8,0.6548
+TESOURO,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,15.0,54544.0,2.01434721479577,73.18,73.25,0.388
+RONDONÓPOLIS,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,30.0,294225.0,12.0585922132072,90.33,90.86,0.2728
+ALTO ARAGUAIA,Mato Grosso,Centre-West,Cerrado,AW,5,2014,173,2.0,37615.0,3.51095276532339,90.15,87.26,0.6984
+SÃO MIGUEL DO ARAGUAIA,Goiás,Centre-West,Cerrado,AW,5,2014,173,133.0,79749.0,3.27116632016828,75.24,59.48,0.4989
+RIO VERMELHO,Goiás,Centre-West,Cerrado,AW,5,2014,173,245.0,89792.0,4.43473547299703,74.71,69.7,0.3104
+ARAGARÇAS,Goiás,Centre-West,Cerrado,AW,5,2014,173,120.0,57659.0,5.21630108832212,77.85,75.15,0.4116
+PORANGATU,Goiás,Centre-West,Cerrado,AW,5,2014,173,215.0,239814.0,6.82112930675141,80.3,74.3,0.4595
+CHAPADA DOS VEADEIROS,Goiás,Centre-West,Cerrado,AW,5,2014,173,89.0,66803.0,3.136497583544,67.23,69.74,0.4147
+CERES,Goiás,Centre-West,Cerrado,AW,5,2014,173,862.0,244394.0,18.5723309227774,83.3,74.85,0.5635
+ANÁPOLIS,Goiás,Centre-West,Cerrado,AW,5,2014,173,1382.0,581770.0,69.5269275374802,92.79,80.85,0.5806
+IPORÁ,Goiás,Centre-West,Cerrado,AW,5,2014,173,147.0,59662.0,8.43701666758961,79.95,78.6,0.5587
+ANICUNS,Goiás,Centre-West,Cerrado,AW,5,2014,173,193.0,115318.0,21.1194488001128,82.76,83.24,0.5843
+GOIÂNIA,Goiás,Centre-West,Cerrado,AW,5,2014,173,5853.0,2324180.0,344.071688936251,98.14,81.82,0.5752
+VÃO DO PARANÃ,Goiás,Centre-West,Cerrado,AW,5,2014,173,257.0,115712.0,6.65817641744051,65.16,70.35,0.5747
+ENTORNO DE BRASÍLIA,Goiás,Centre-West,Cerrado,AW,5,2014,173,3714.0,1164835.0,30.5277653606726,89.63,75.98,0.4468
+SUDOESTE DE GOIÁS,Goiás,Centre-West,Cerrado,AW,5,2014,173,1275.0,494619.0,8.82344609947261,90.02,82.68,0.4753
+VALE DO RIO DOS BOIS,Goiás,Centre-West,Cerrado,AW,5,2014,173,353.0,121037.0,8.89753922093675,79.51,69.91,0.4969
+MEIA PONTE,Goiás,Centre-West,Cerrado,AW,5,2014,173,850.0,387992.0,18.3699017666347,89.69,79.1,0.4656
+PIRES DO RIO,Goiás,Centre-West,Cerrado,AW,5,2014,173,142.0,98328.0,10.3221385134041,72.8,71.34,0.2444
+CATALÃO,Goiás,Centre-West,Cerrado,AW,5,2014,173,710.0,161563.0,10.6090170519183,89.47,88.74,0.6508
+QUIRINÓPOLIS,Goiás,Centre-West,Cerrado,AW,5,2014,173,50.0,119995.0,7.46451232668575,85.36,77.39,0.4802
+BRASÍLIA,Distrito Federal,Centre-West,Cerrado,AW,5,2014,173,3750.0,2852372.0,493.127178183751,96.77,94.82,0.873
+PORTO VELHO,Rondônia,North,Amazon,AM,6,2014,174,48.0,625834.0,9.539529223394,85.2,33.57,0.2245
+GUAJARÁ-MIRIM,Rondônia,North,Amazon,AM,6,2014,174,4.0,81101.0,1.98990093489153,72.31,27.43,0.0873
+ARIQUEMES,Rondônia,North,Amazon,AM,6,2014,174,8.0,195532.0,8.02709824464268,66.91,27.76,0.1871
+JI-PARANÁ,Rondônia,North,Amazon,AM,6,2014,174,38.0,316402.0,12.6205592516714,68.68,32.23,0.2381
+ALVORADA D'OESTE,Rondônia,North,Amazon,AM,6,2014,174,4.0,75085.0,4.69735063362966,42.82,21.4,0.2837
+CACOAL,Rondônia,North,Amazon,AM,6,2014,174,8.0,247558.0,10.0831292484848,66.43,45.39,0.3104
+VILHENA,Rondônia,North,Amazon,AM,6,2014,174,10.0,152211.0,5.69778094199234,82.83,79.22,0.1601
+COLORADO DO OESTE,Rondônia,North,Amazon,AM,6,2014,174,4.0,54808.0,3.74037526587492,65.39,38.42,0.1397
+CRUZEIRO DO SUL,Acre,North,Amazon,AF,6,2014,174,439.0,141056.0,4.41621296413769,57.45,45.12,0.2444
+TARAUACÁ,Acre,North,Amazon,AF,6,2014,174,0.0,77929.0,1.45665748726476,51.19,27.53,0.3492
+SENA MADUREIRA,Acre,North,Amazon,AF,6,2014,174,2.0,55143.0,1.35982519835078,63.6,40.18,0.3492
+RIO BRANCO,Acre,North,Amazon,AM,6,2014,174,24.0,452251.0,20.31606228876,83.36,48.71,0.5737
+BRASILÉIA,Acre,North,Amazon,AF,6,2014,174,8.0,63722.0,4.01225242161955,66.23,52.86,0.502
+RIO NEGRO,Amazonas,North,Amazon,AF,6,2014,174,9.0,108516.0,0.326565507701272,49.29,38.32,0.3274
+JAPURÁ,Amazonas,North,Amazon,AF,6,2014,174,1.0,23966.0,0.329988871887433,48.36,47.59,0.0
+ALTO SOLIMÕES,Amazonas,North,Amazon,AF,6,2014,174,18.0,242875.0,1.13885430572531,57.91,44.81,0.3589
+JURUÁ,Amazonas,North,Amazon,AF,6,2014,174,2.0,142338.0,1.26379042525399,62.19,41.94,0.5737
+TEFÉ,Amazonas,North,Amazon,AF,6,2014,174,44.0,90982.0,2.28040415552171,73.94,69.17,0.3201
+COARI,Amazonas,North,Amazon,AF,6,2014,174,43.0,169227.0,1.50965496219438,60.76,38.14,0.1892
+MANAUS,Amazonas,North,Amazon,AF,6,2014,174,176.0,2285623.0,55.3465913924911,93.81,72.17,0.6361
+RIO PRETO DA EVA,Amazonas,North,Amazon,AF,6,2014,174,18.0,61674.0,1.97871509796449,47.95,53.52,0.3929
+ITACOATIARA,Amazonas,North,Amazon,AF,6,2014,174,14.0,168711.0,6.62875064509719,61.11,64.18,0.1397
+PARINTINS,Amazonas,North,Amazon,AF,6,2014,174,1.0,266488.0,2.49048990291524,56.95,62.2,0.2744
+BOCA DO ACRE,Amazonas,North,Amazon,AF,6,2014,174,0.0,52413.0,0.824795333223176,58.51,48.78,0.1746
+PURUS,Amazonas,North,Amazon,AF,6,2014,174,1.0,75649.0,0.404714177886673,59.7,34.56,0.2037
+MADEIRA,Amazonas,North,Amazon,AM,6,2014,174,2.0,185281.0,0.838282880053746,54.26,42.58,0.2619
+BOA VISTA,Roraima,North,Amazon,AM,6,2014,174,20.0,353589.0,5.20744560079786,90.28,90.49,0.7639
+NORDESTE DE RORAIMA,Roraima,North,Amazon,AM,6,2014,174,38.0,46668.0,1.51843923556234,22.3,45.84,0.4802
+CARACARAÍ,Roraima,North,Amazon,AM,6,2014,174,21.0,46161.0,0.622529494593647,57.19,64.09,0.6984
+SUDESTE DE RORAIMA,Roraima,North,Amazon,AF,6,2014,174,43.0,50518.0,0.981814817927336,50.72,46.11,0.7857
+ÓBIDOS,Pará,North,Amazon,AF,6,2014,174,10.0,196298.0,1.24588334548986,53.17,56.71,0.0698
+SANTARÉM,Pará,North,Amazon,AM,6,2014,174,1.0,503673.0,5.44715815866417,60.77,50.66,0.0125
+ALMEIRIM,Pará,North,Amazon,AM,6,2014,174,25.0,71135.0,0.787184882668497,51.49,56.99,0.2619
+PORTEL,Pará,North,Amazon,AF,6,2014,174,2.0,142011.0,3.1479650714516,39.45,24.26,0.2183
+FUROS DE BREVES,Pará,North,Amazon,AM,6,2014,174,3.0,217765.0,7.23798710961013,42.47,25.14,0.1048
+ARARI,Pará,North,Amazon,AM,6,2014,174,2.0,165571.0,5.72510849625266,48.68,49.97,0.0249
+BELÉM,Pará,North,Amazon,AF,6,2014,174,54.0,2242436.0,716.171833276434,94.75,63.3,0.2183
+CASTANHAL,Pará,North,Amazon,AM,6,2014,174,7.0,319481.0,84.8663978981499,76.01,51.57,0.1571
+SALGADO,Pará,North,Amazon,AM,6,2014,174,3.0,258222.0,43.4998871993401,53.19,67.02,0.0556
+BRAGANTINA,Pará,North,Amazon,AM,6,2014,174,3.0,401712.0,45.6292696294977,56.28,45.26,0.1007
+CAMETÁ,Pará,North,Amazon,AF,6,2014,174,8.0,466929.0,28.0076993469596,49.57,36.18,0.2619
+TOMÉ-AÇU,Pará,North,Amazon,AF,6,2014,174,4.0,314645.0,13.2744388935124,49.93,34.75,0.227
+GUAMÁ,Pará,North,Amazon,AM,6,2014,174,5.0,455970.0,16.1074872466042,38.31,38.38,0.1813
+ITAITUBA,Pará,North,Amazon,AM,6,2014,174,11.0,244492.0,1.28932394394699,57.17,20.15,0.2619
+ALTAMIRA,Pará,North,Amazon,AM,6,2014,174,50.0,290730.0,1.28553175662767,58.74,16.68,0.0655
+TUCURUÍ,Pará,North,Amazon,AM,6,2014,174,2.0,356928.0,10.8658821694671,68.13,34.63,0.131
+PARAGOMINAS,Pará,North,Amazon,AM,6,2014,174,2.0,322755.0,6.66724491617579,71.21,56.11,0.3056
+SÃO FÉLIX DO XINGU,Pará,North,Amazon,AM,6,2014,174,10.0,193850.0,1.59895670139025,58.31,26.35,0.1048
+PARAUAPEBAS,Pará,North,Amazon,AM,6,2014,174,25.0,292211.0,13.0000045642861,75.9,54.26,0.3143
+MARABÁ,Pará,North,Amazon,AM,6,2014,174,7.0,309469.0,15.4070988992192,75.03,42.18,0.0175
+REDENÇÃO,Pará,North,Amazon,AM,6,2014,174,3.0,188791.0,8.93570134217599,76.08,24.78,0.1621
+CONCEIÇÃO DO ARAGUAIA,Pará,North,Amazon,AW,6,2014,174,2.0,149806.0,4.80149773184162,56.71,19.92,0.1528
+OIAPOQUE,Amapá,North,Amazon,AM,6,2014,174,4.0,33607.0,0.911085019182506,71.78,21.82,0.5238
+AMAPÁ,Amapá,North,Amazon,AM,6,2014,174,0.0,27711.0,1.33468166055141,62.86,24.3,0.4074
+MACAPÁ,Amapá,North,Amazon,AM,6,2014,174,54.0,611615.0,15.8441951679445,93.04,57.07,0.3492
+MAZAGÃO,Amapá,North,Amazon,AM,6,2014,174,112.0,77979.0,1.67314835530906,81.34,68.06,0.3492
+BICO DO PAPAGAIO,Tocantins,North,Cerrado,AW,6,2014,174,18.0,209048.0,13.2531428739327,66.07,79.05,0.2479
+ARAGUAÍNA,Tocantins,North,Amazon,AW,6,2014,174,51.0,302864.0,11.4525868764536,83.54,82.76,0.2465
+MIRACEMA DO TOCANTINS,Tocantins,North,Cerrado,AW,6,2014,174,38.0,148107.0,4.25932626827643,70.0,70.04,0.1601
+RIO FORMOSO,Tocantins,North,Cerrado,AW,6,2014,174,44.0,123649.0,2.40267518536552,79.12,69.19,0.1813
+GURUPI,Tocantins,North,Cerrado,AW,6,2014,174,30.0,146042.0,5.32630989134743,84.94,74.39,0.1933
+PORTO NACIONAL,Tocantins,North,Cerrado,AW,6,2014,174,124.0,366873.0,17.321922344032,91.49,89.23,0.2857
+JALAPÃO,Tocantins,North,Cerrado,AW,6,2014,174,2.0,77087.0,1.4400686983928,56.63,62.3,0.1746
+DIANÓPOLIS,Tocantins,North,Cerrado,AW,6,2014,174,13.0,123210.0,2.61067302218141,71.22,70.5,0.2052
+LITORAL OCIDENTAL MARANHENSE,Maranhão,Northeast,Amazon,AS,6,2014,174,11.0,186768.0,19.7939020111641,47.56,61.81,0.094
+AGLOMERAÇÃO URBANA DE SÃO LUÍS,Maranhão,Northeast,Amazon,AS,6,2014,174,97.0,1381459.0,967.062692463776,83.29,74.2,0.2837
+ROSÁRIO,Maranhão,Northeast,Amazon,AM,6,2014,174,1.0,170773.0,26.5427947436085,42.54,50.31,0.1528
+LENÇÓIS MARANHENSES,Maranhão,Northeast,Cerrado,AS,6,2014,174,1.0,189098.0,17.5364338801036,36.18,29.78,0.0582
+BAIXADA MARANHENSE,Maranhão,Northeast,Amazon,AM,6,2014,174,3.0,585881.0,34.0215623603829,44.19,45.12,0.054
+ITAPECURU MIRIM,Maranhão,Northeast,Cerrado,AW,6,2014,174,3.0,226672.0,32.1454021564983,56.27,52.31,0.0437
+GURUPI,Maranhão,Northeast,Amazon,AM,6,2014,174,12.0,233474.0,10.8221100354883,57.86,37.72,0.0499
+PINDARÉ,Maranhão,Northeast,Amazon,AW,6,2014,174,42.0,648120.0,18.0070857175698,55.43,60.37,0.0357
+IMPERATRIZ,Maranhão,Northeast,Amazon,AW,6,2014,174,16.0,583526.0,19.967772316648,76.04,83.82,0.0815
+MÉDIO MEARIM,Maranhão,Northeast,Cerrado,AW,6,2014,174,3.0,415623.0,37.8361294780649,61.09,67.85,0.1571
+ALTO MEARIM E GRAJAÚ,Maranhão,Northeast,Cerrado,AW,6,2014,174,12.0,323562.0,8.78275365142273,47.04,66.79,0.127
+PRESIDENTE DUTRA,Maranhão,Northeast,Cerrado,AW,6,2014,174,3.0,194658.0,29.7678580535345,57.8,81.8,0.0397
+BAIXO PARNAÍBA MARANHENSE,Maranhão,Northeast,Cerrado,AS,6,2014,174,0.0,141167.0,23.3998565779641,37.32,51.41,0.0727
+CHAPADINHA,Maranhão,Northeast,Cerrado,AW,6,2014,174,1.0,236667.0,21.9325015055438,55.15,43.61,0.0485
+CODÓ,Maranhão,Northeast,Cerrado,AW,6,2014,174,2.0,271051.0,27.2790905704038,65.94,72.34,0.2183
+COELHO NETO,Maranhão,Northeast,Cerrado,AW,6,2014,174,1.0,90879.0,25.2442718756865,69.82,62.91,0.1091
+CAXIAS,Maranhão,Northeast,Cerrado,AW,6,2014,174,15.0,431688.0,28.1380437911445,73.11,77.69,0.5529
+CHAPADAS DO ALTO ITAPECURU,Maranhão,Northeast,Cerrado,AW,6,2014,174,0.0,215316.0,8.61432514728431,60.8,68.76,0.1276
+PORTO FRANCO,Maranhão,Northeast,Cerrado,AW,6,2014,174,4.0,116059.0,8.16045967763654,70.89,76.91,0.3367
+GERAIS DE BALSAS,Maranhão,Northeast,Cerrado,AW,6,2014,174,4.0,138048.0,3.78279741667899,74.01,63.82,0.2794
+CHAPADAS DAS MANGABEIRAS,Maranhão,Northeast,Cerrado,AW,6,2014,174,0.0,70395.0,4.14681875844725,59.3,55.51,0.0485
+BAIXO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2014,174,77.0,336764.0,27.0130290895015,49.35,61.99,0.1261
+LITORAL PIAUIENSE,Piauí,Northeast,Caatinga,AS,6,2014,174,106.0,312365.0,32.1021082559257,70.39,68.27,0.0998
+TERESINA,Piauí,Northeast,Caatinga,AW,6,2014,174,912.0,1029832.0,112.205590758581,87.05,87.07,0.131
+CAMPO MAIOR,Piauí,Northeast,Caatinga,AS,6,2014,174,34.0,223752.0,9.18718548956863,51.92,65.04,0.216
+MÉDIO PARNAÍBA PIAUIENSE,Piauí,Northeast,Caatinga,AW,6,2014,174,15.0,132640.0,15.9598083105168,62.95,73.74,0.1146
+VALENÇA DO PIAUÍ,Piauí,Northeast,Caatinga,AW,6,2014,174,38.0,105085.0,7.82317165599302,59.55,76.29,0.0698
+ALTO PARNAÍBA PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2014,174,17.0,45289.0,1.77813313864121,68.68,68.62,0.1164
+BERTOLÍNIA,Piauí,Northeast,Cerrado,AW,6,2014,174,1.0,41393.0,3.72439939744223,72.84,80.76,0.0873
+FLORIANO,Piauí,Northeast,Caatinga,AW,6,2014,174,4.0,122843.0,6.66203740855088,71.0,74.67,0.0806
+ALTO MÉDIO GURGUÉIA,Piauí,Northeast,Cerrado,AW,6,2014,174,73.0,90798.0,3.28748241960869,56.6,71.3,0.1349
+SÃO RAIMUNDO NONATO,Piauí,Northeast,Caatinga,AW,6,2014,174,91.0,138782.0,5.04346083514563,43.98,44.5,0.0668
+CHAPADAS DO EXTREMO SUL PIAUIENSE,Piauí,Northeast,Cerrado,AW,6,2014,174,8.0,84381.0,4.73071139215261,53.38,51.97,0.0873
+PICOS,Piauí,Northeast,Caatinga,AW,6,2014,174,197.0,203813.0,19.7891958599468,58.12,77.87,0.0919
+PIO IX,Piauí,Northeast,Caatinga,BSH,6,2014,174,5.0,59267.0,13.7427618489403,42.31,52.83,0.1122
+ALTO MÉDIO CANINDÉ,Piauí,Northeast,Caatinga,BSH,6,2014,174,38.0,267714.0,8.4896753577052,39.94,44.46,0.0896
+LITORAL DE CAMOCIM E ACARAÚ,Ceará,Northeast,Caatinga,AS,6,2014,174,137.0,377048.0,43.6244550977149,54.01,60.38,0.8075
+IBIAPABA,Ceará,Northeast,Caatinga,AS,6,2014,174,4.0,309131.0,61.0492437973878,50.27,67.12,0.7421
+COREAÚ,Ceará,Northeast,Caatinga,AS,6,2014,174,2.0,58138.0,28.0636847445978,59.2,63.14,0.8075
+MERUOCA,Ceará,Northeast,Caatinga,AS,6,2014,174,0.0,25776.0,95.4783366516554,44.51,41.49,0.6111
+SOBRAL,Ceará,Northeast,Caatinga,AS,6,2014,174,156.0,400799.0,48.6317627189422,73.78,81.45,0.7784
+IPU,Ceará,Northeast,Caatinga,AS,6,2014,174,20.0,139437.0,33.007827482507,58.22,73.93,0.713
+SANTA QUITÉRIA,Ceará,Northeast,Caatinga,BSH,6,2014,174,94.0,73586.0,12.2605705202806,53.71,59.43,0.9021
+ITAPIPOCA,Ceará,Northeast,Caatinga,AS,6,2014,174,39.0,219283.0,59.0803671599041,49.06,43.54,0.7857
+BAIXO CURU,Ceará,Northeast,Caatinga,AS,6,2014,174,34.0,111666.0,77.903441655694,59.28,48.61,0.6984
+URUBURETAMA,Ceará,Northeast,Caatinga,AS,6,2014,174,20.0,106512.0,101.47935594711,64.17,72.34,0.8512
+MÉDIO CURU,Ceará,Northeast,Caatinga,AS,6,2014,174,31.0,88787.0,29.3881567138877,53.24,71.92,0.9603
+CANINDÉ,Ceará,Northeast,Caatinga,BSH,6,2014,174,110.0,129858.0,24.4495413726655,58.88,65.8,0.8294
+BATURITÉ,Ceará,Northeast,Caatinga,AS,6,2014,174,29.0,193466.0,71.9120909413157,51.58,60.6,0.6825
+CHOROZINHO,Ceará,Northeast,Caatinga,AS,6,2014,174,45.0,64700.0,49.8902896112879,43.52,56.1,0.8148
+CASCAVEL,Ceará,Northeast,Caatinga,AS,6,2014,174,68.0,141358.0,55.600209930122,66.39,33.38,0.873
+FORTALEZA,Ceará,Northeast,Caatinga,AS,6,2014,174,1345.0,3533255.0,1047.31189038051,97.49,89.94,0.8342
+PACAJUS,Ceará,Northeast,Caatinga,AS,6,2014,174,12.0,129680.0,326.606016335998,86.91,60.88,0.4802
+SERTÃO DE CRATÉUS,Ceará,Northeast,Caatinga,BSH,6,2014,174,82.0,245555.0,19.1574640560908,58.29,67.64,0.8245
+SERTÃO DE QUIXERAMOBIM,Ceará,Northeast,Caatinga,BSH,6,2014,174,31.0,278280.0,23.2719222716798,57.66,66.52,0.7732
+SERTÃO DE INHAMUNS,Ceará,Northeast,Caatinga,BSH,6,2014,174,234.0,149190.0,12.7311753076359,49.02,61.64,0.713
+SERTÃO DE SENADOR POMPEU,Ceará,Northeast,Caatinga,BSH,6,2014,174,76.0,222725.0,22.7686841333662,50.93,63.03,0.6111
+LITORAL DE ARACATI,Ceará,Northeast,Caatinga,AS,6,2014,174,95.0,114917.0,53.3694496763331,58.12,71.3,0.8512
+BAIXO JAGUARIBE,Ceará,Northeast,Caatinga,AS,6,2014,174,345.0,324771.0,32.7081064153889,58.73,76.34,0.4802
+MÉDIO JAGUARIBE,Ceará,Northeast,Caatinga,BSH,6,2014,174,81.0,63638.0,14.83138539883,62.29,76.28,0.9312
+SERRA DO PEREIRO,Ceará,Northeast,Caatinga,AS,6,2014,174,26.0,43503.0,21.1993319287925,50.39,68.81,0.7202
+IGUATU,Ceará,Northeast,Caatinga,BSH,6,2014,174,85.0,229208.0,48.2090768773727,63.3,79.23,0.9952
+VÁRZEA ALEGRE,Ceará,Northeast,Caatinga,AS,6,2014,174,2.0,99214.0,27.9994120421074,55.81,64.64,0.7683
+LAVRAS DA MANGABEIRA,Ceará,Northeast,Caatinga,AS,6,2014,174,2.0,57534.0,35.5737934757597,57.29,61.02,0.7202
+CHAPADA DO ARARIPE,Ceará,Northeast,Caatinga,BSH,6,2014,174,39.0,98157.0,22.0890221388817,58.39,53.56,0.8556
+CARIRIAÇU,Ceará,Northeast,Caatinga,AS,6,2014,174,22.0,57579.0,44.6961753107774,51.38,67.62,0.7421
+BARRO,Ceará,Northeast,Caatinga,AS,6,2014,174,46.0,92732.0,34.8381299965249,53.37,60.17,0.6111
+CARIRI,Ceará,Northeast,Caatinga,AS,6,2014,174,189.0,559490.0,122.810158314484,80.1,81.98,0.6875
+BREJO SANTO,Ceará,Northeast,Caatinga,AS,6,2014,174,44.0,103818.0,53.5232955569235,57.04,67.94,0.5893
+MOSSORÓ,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,29.0,363615.0,87.0428715592092,85.93,89.06,0.1601
+CHAPADA DO APODI,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,4.0,76856.0,18.7826418968002,57.81,64.36,0.0
+MÉDIO OESTE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,2.0,39759.0,13.9013318503442,62.66,67.3,0.0
+VALE DO AÇU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,15.0,150642.0,31.4720194086537,66.72,83.1,0.1358
+SERRA DE SÃO MIGUEL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2014,174,28.0,66280.0,66.8420445930176,56.68,84.42,0.0776
+PAU DOS FERROS,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2014,174,42.0,118721.0,44.6621631923266,71.11,81.48,0.0668
+UMARIZAL,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2014,174,3.0,67467.0,41.3523756479744,69.84,73.64,0.0159
+MACAU,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,1.0,57338.0,30.0936741759115,65.82,82.42,0.0524
+ANGICOS,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,9.0,53139.0,13.0304778553774,67.02,73.78,0.0
+SERRA DE SANTANA,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,2.0,63859.0,21.2104232571565,51.37,74.9,0.0
+SERIDÓ OCIDENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,41.0,103723.0,33.8308833371146,85.66,87.19,0.0249
+SERIDÓ ORIENTAL,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,241.0,124256.0,32.9411389931165,83.52,84.09,0.0873
+BAIXA VERDE,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,17.0,66742.0,34.9136527172991,62.34,79.29,0.0
+BORBOREMA POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,BSH,6,2014,174,37.0,141752.0,36.0809520142795,67.03,69.15,0.0546
+AGRESTE POTIGUAR,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2014,174,30.0,245725.0,70.1626286665824,56.33,76.37,0.0159
+LITORAL NORDESTE,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2014,174,16.0,89882.0,35.2555219626963,33.12,77.04,0.0
+MACAÍBA,Rio Grande Do Norte,Northeast,Caatinga,AS,6,2014,174,23.0,314915.0,151.780197448887,62.43,78.98,0.0
+NATAL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2014,174,726.0,1125134.0,2570.75726785021,99.14,97.63,0.0
+LITORAL SUL,Rio Grande Do Norte,Northeast,Atlantic Rainforest,AS,6,2014,174,54.0,138705.0,99.9537826766286,66.28,85.96,0.0349
+CATOLÉ DO ROCHA,Paraíba,Northeast,Caatinga,AS,6,2014,174,24.0,121116.0,39.7296691901271,70.13,72.79,0.0556
+CAJAZEIRAS,Paraíba,Northeast,Caatinga,AS,6,2014,174,61.0,174671.0,51.4996916786321,61.01,67.68,0.0698
+SOUSA,Paraíba,Northeast,Caatinga,AS,6,2014,174,35.0,187634.0,39.0524070071827,66.72,74.02,0.0616
+PATOS,Paraíba,Northeast,Caatinga,BSH,6,2014,174,11.0,132146.0,51.8492161294252,85.59,84.99,0.0097
+PIANCÓ,Paraíba,Northeast,Caatinga,AS,6,2014,174,0.0,71388.0,21.6762467846046,64.13,67.61,0.0485
+ITAPORANGA,Paraíba,Northeast,Caatinga,AS,6,2014,174,9.0,85726.0,28.1368382909189,61.81,61.74,0.0556
+SERRA DO TEIXEIRA,Paraíba,Northeast,Caatinga,AS,6,2014,174,20.0,120427.0,46.3587208445471,52.92,56.45,0.0
+SERIDÓ OCIDENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2014,174,18.0,40618.0,23.2069983871282,75.14,74.29,0.0437
+SERIDÓ ORIENTAL PARAIBANO,Paraíba,Northeast,Caatinga,BSH,6,2014,174,29.0,77582.0,29.7205168907857,58.04,51.25,0.0388
+CARIRI OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2014,174,37.0,126540.0,18.1306657341385,62.53,58.87,0.036
+CARIRI ORIENTAL,Paraíba,Northeast,Caatinga,BSH,6,2014,174,11.0,66005.0,15.6735854829223,46.25,49.3,0.0146
+CURIMATAÚ OCIDENTAL,Paraíba,Northeast,Caatinga,BSH,6,2014,174,24.0,125728.0,32.1768312966693,65.13,60.27,0.0873
+CURIMATAÚ ORIENTAL,Paraíba,Northeast,Caatinga,AS,6,2014,174,3.0,96005.0,72.6159143779252,55.96,61.67,0.0
+ESPERANÇA,Paraíba,Northeast,Caatinga,AS,6,2014,174,20.0,56419.0,210.641598724935,63.47,60.82,0.0218
+BREJO PARAIBANO,Paraíba,Northeast,Caatinga,AS,6,2014,174,15.0,116437.0,98.688668650546,53.03,55.11,0.1419
+GUARABIRA,Paraíba,Northeast,Caatinga,AS,6,2014,174,13.0,169750.0,131.587573387166,72.1,77.48,0.0062
+CAMPINA GRANDE,Paraíba,Northeast,Caatinga,AS,6,2014,174,28.0,525030.0,249.216754637981,83.7,88.17,0.0873
+ITABAIANA,Paraíba,Northeast,Caatinga,AS,6,2014,174,5.0,110989.0,65.7719030756962,60.42,58.87,0.0262
+UMBUZEIRO,Paraíba,Northeast,Caatinga,AS,6,2014,174,1.0,54604.0,46.1643618237079,36.84,24.28,0.0349
+LITORAL NORTE,Paraíba,Northeast,Atlantic Rainforest,AS,6,2014,174,3.0,149210.0,75.0727270457688,61.56,64.95,0.0476
+SAPÉ,Paraíba,Northeast,Atlantic Rainforest,AS,6,2014,174,4.0,137929.0,123.188925367485,66.17,59.0,0.0218
+JOÃO PESSOA,Paraíba,Northeast,Atlantic Rainforest,AS,6,2014,174,357.0,1110891.0,890.003816253648,97.2,93.71,0.1164
+LITORAL SUL,Paraíba,Northeast,Atlantic Rainforest,AM,6,2014,174,13.0,87040.0,100.524951635322,67.34,66.86,0.0218
+ARARIPINA,Pernambuco,Northeast,Caatinga,BSH,6,2014,174,1.0,324218.0,28.0947766959906,53.6,50.59,0.0397
+SALGUEIRO,Pernambuco,Northeast,Caatinga,BSH,6,2014,174,335.0,168956.0,19.285243052063,57.09,66.07,0.2183
+PAJEÚ,Pernambuco,Northeast,Caatinga,BSH,6,2014,174,37.0,326876.0,37.0339768602847,63.45,64.1,0.1181
+SERTÃO DO MOXOTÓ,Pernambuco,Northeast,Caatinga,BSH,6,2014,174,6.0,226038.0,25.6943502743291,62.64,61.03,0.0582
+PETROLINA,Pernambuco,Northeast,Caatinga,BSH,6,2014,174,169.0,485792.0,32.4521141185628,64.29,84.03,0.0873
+ITAPARICA,Pernambuco,Northeast,Caatinga,BSH,6,2014,174,11.0,143029.0,15.0303428257047,57.49,63.61,0.0998
+VALE DO IPANEMA,Pernambuco,Northeast,Caatinga,AS,6,2014,174,6.0,190105.0,35.0049461889129,47.93,47.69,0.1455
+VALE DO IPOJUCA,Pernambuco,Northeast,Caatinga,AS,6,2014,174,191.0,906609.0,115.305760488469,77.98,74.59,0.131
+ALTO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2014,174,15.0,300460.0,167.373542147788,74.8,64.63,0.1843
+MÉDIO CAPIBARIBE,Pernambuco,Northeast,Caatinga,AS,6,2014,174,65.0,259022.0,147.994054816685,56.64,56.37,0.1222
+GARANHUNS,Pernambuco,Northeast,Caatinga,AS,6,2014,174,93.0,461152.0,90.0723020000553,62.86,61.19,0.0919
+BREJO PERNAMBUCANO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2014,174,10.0,222853.0,87.0504672527879,68.72,68.88,0.1508
+MATA SETENTRIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2014,174,36.0,557917.0,189.900911011815,77.66,73.96,0.1181
+VITÓRIA DE SANTO ANTÃO,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2014,174,2.0,226008.0,240.793502704008,77.92,69.61,0.2095
+MATA MERIDIONAL PERNAMBUCANA,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2014,174,34.0,588547.0,130.046481357898,70.57,66.98,0.0915
+ITAMARACÁ,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2014,174,9.0,180423.0,335.016522603131,89.59,77.69,0.371
+RECIFE,Pernambuco,Northeast,Atlantic Rainforest,AS,6,2014,174,393.0,3418795.0,2732.70359547861,98.71,85.88,0.0873
+SUAPE,Pernambuco,Northeast,Atlantic Rainforest,AM,6,2014,174,34.0,288043.0,298.251193287206,85.63,77.95,0.0873
+FERNANDO DE NORONHA,Pernambuco,Northeast,Atlantic Rainforest,AW,6,2014,174,6.0,2884.0,221.944520934108,100.0,95.74,0.1746
+SERRANA DO SERTÃO ALAGOANO,Alagoas,Northeast,Caatinga,AS,6,2014,174,2.0,93456.0,35.584655023023,28.81,40.01,0.7275
+ALAGOANA DO SERTÃO DO SÃO FRANCISCO,Alagoas,Northeast,Caatinga,BSH,6,2014,174,8.0,85317.0,62.478764210451,65.61,81.6,0.9603
+SANTANA DO IPANEMA,Alagoas,Northeast,Caatinga,AS,6,2014,174,42.0,179392.0,58.536835355151,46.97,51.38,0.6111
+BATALHA,Alagoas,Northeast,Caatinga,BSH,6,2014,174,10.0,96699.0,53.5545415764616,51.96,60.98,0.7093
+PALMEIRA DOS ÍNDIOS,Alagoas,Northeast,Caatinga,AS,6,2014,174,31.0,181915.0,76.063412595563,55.07,55.74,1.0
+ARAPIRACA,Alagoas,Northeast,Caatinga,AS,6,2014,174,356.0,437452.0,180.342596780398,59.11,60.62,0.9691
+TRAIPU,Alagoas,Northeast,Caatinga,AS,6,2014,174,1.0,39837.0,42.5727706061729,33.28,44.16,0.6984
+SERRANA DOS QUILOMBOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2014,174,14.0,153191.0,83.1354460314318,70.02,71.82,0.8855
+MATA ALAGOANA,Alagoas,Northeast,Atlantic Rainforest,AS,6,2014,174,41.0,318124.0,80.6622908569907,71.41,60.56,0.8621
+LITORAL NORTE ALAGOANO,Alagoas,Northeast,Atlantic Rainforest,AM,6,2014,174,14.0,71486.0,71.021769331193,54.44,51.52,0.8556
+MACEIÓ,Alagoas,Northeast,Atlantic Rainforest,AM,6,2014,174,1184.0,1229071.0,686.305396290842,97.92,75.58,0.9254
+SÃO MIGUEL DOS CAMPOS,Alagoas,Northeast,Atlantic Rainforest,AS,6,2014,174,21.0,304664.0,102.551747268574,69.71,75.03,0.8536
+PENEDO,Alagoas,Northeast,Atlantic Rainforest,AS,6,2014,174,314.0,131126.0,76.6186186757523,56.44,80.93,0.9778
+SERGIPANA DO SERTÃO DO SÃO FRANCISCO,Sergipe,Northeast,Caatinga,BSH,6,2014,174,1.0,167528.0,30.7632371064288,47.56,80.02,0.1067
+CARIRA,Sergipe,Northeast,Caatinga,AS,6,2014,174,2.0,72766.0,38.9653656279017,57.36,76.87,0.1455
+NOSSA SENHORA DAS DORES,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,2.0,66315.0,53.4434288801962,57.78,81.23,0.0727
+AGRESTE DE ITABAIANA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,5.0,170038.0,150.296111397271,63.95,80.72,0.0
+TOBIAS BARRETO,Sergipe,Northeast,Caatinga,AS,6,2014,174,5.0,114584.0,56.8828219099752,59.75,69.16,0.1746
+AGRESTE DE LAGARTO,Sergipe,Northeast,Caatinga,AS,6,2014,174,0.0,121262.0,80.4259605016061,46.98,68.59,0.0
+PROPRIÁ,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,5.0,94719.0,89.7986803082668,67.65,85.06,0.0611
+COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,2.0,50315.0,65.7164732280944,58.27,82.7,0.2837
+JAPARATUBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,1.0,58127.0,40.6266413145466,40.83,69.15,0.0349
+BAIXO COTINGUIBA,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,14.0,96485.0,130.247192829513,76.67,83.31,0.0499
+ARACAJU,Sergipe,Northeast,Atlantic Rainforest,AM,6,2014,174,202.0,912647.0,1046.12360092635,97.46,96.44,0.0349
+BOQUIM,Sergipe,Northeast,Atlantic Rainforest,AS,6,2014,174,95.0,163026.0,88.6765359732957,51.54,50.82,0.0
+ESTÂNCIA,Sergipe,Northeast,Atlantic Rainforest,AM,6,2014,174,14.0,131762.0,65.0976877135633,60.76,71.16,0.0291
+BARREIRAS,Bahia,Northeast,Cerrado,AW,6,2014,174,6.0,326787.0,6.18274968936838,75.64,81.61,0.6361
+COTEGIPE,Bahia,Northeast,Cerrado,AW,6,2014,174,2.0,122358.0,5.40881394739614,41.55,60.4,0.5456
+SANTA MARIA DA VITÓRIA,Bahia,Northeast,Cerrado,AW,6,2014,174,43.0,189796.0,4.5201504595642,48.98,73.62,0.5917
+JUAZEIRO,Bahia,Northeast,Caatinga,BSH,6,2014,174,164.0,494867.0,9.04451387127559,65.24,72.59,0.6002
+PAULO AFONSO,Bahia,Northeast,Caatinga,BSH,6,2014,174,3.0,182289.0,14.6305533056246,70.18,80.2,0.6402
+BARRA,Bahia,Northeast,Caatinga,AW,6,2014,174,4.0,185881.0,5.708634063159,53.48,70.8,0.3741
+BOM JESUS DA LAPA,Bahia,Northeast,Cerrado,AS,6,2014,174,6.0,183427.0,12.7050366106517,48.37,71.02,0.5862
+SENHOR DO BONFIM,Bahia,Northeast,Caatinga,BSH,6,2014,174,19.0,308568.0,18.5610622965584,51.74,71.13,0.5335
+IRECÊ,Bahia,Northeast,Caatinga,BSH,6,2014,174,5.0,402131.0,22.0517150750318,58.66,85.93,0.5881
+JACOBINA,Bahia,Northeast,Caatinga,BSH,6,2014,174,26.0,348317.0,18.5114519949094,60.81,77.69,0.6657
+ITABERABA,Bahia,Northeast,Caatinga,BSH,6,2014,174,10.0,264253.0,16.0480042168473,64.22,72.35,0.7639
+FEIRA DE SANTANA,Bahia,Northeast,Caatinga,AS,6,2014,174,47.0,1075697.0,84.4008343524228,72.58,74.34,0.5856
+JEREMOABO,Bahia,Northeast,Caatinga,BSH,6,2014,174,4.0,103472.0,12.907880841444,38.43,52.43,0.4714
+EUCLIDES DA CUNHA,Bahia,Northeast,Caatinga,BSH,6,2014,174,35.0,317665.0,16.9959613103447,37.32,59.27,0.6499
+RIBEIRA DO POMBAL,Bahia,Northeast,Caatinga,AS,6,2014,174,6.0,332500.0,38.4301854256371,44.3,74.19,0.4739
+SERRINHA,Bahia,Northeast,Caatinga,BSH,6,2014,174,11.0,447707.0,42.0444761224087,51.38,70.84,0.4705
+ALAGOINHAS,Bahia,Northeast,Caatinga,AS,6,2014,174,49.0,334674.0,58.2319958597269,67.44,82.79,0.6111
+ENTRE RIOS,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,0.0,125840.0,28.7540522932658,56.97,73.18,0.6111
+CATU,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,14.0,230951.0,84.027549115157,79.25,80.96,0.6111
+SANTO ANTÔNIO DE JESUS,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,35.0,582505.0,102.174781852748,65.84,69.19,0.7067
+SALVADOR,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,387.0,3792317.0,1312.01315783345,98.75,97.79,0.5151
+BOQUIRA,Bahia,Northeast,Caatinga,AS,6,2014,174,14.0,198620.0,12.3515608099359,34.27,68.61,0.5079
+SEABRA,Bahia,Northeast,Caatinga,AW,6,2014,174,89.0,270898.0,13.0579312244425,51.62,76.27,0.5287
+JEQUIÉ,Bahia,Northeast,Atlantic Rainforest,BSH,6,2014,174,36.0,536988.0,31.2168854662666,68.75,72.88,0.6178
+LIVRAMENTO DO BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2014,174,1.0,103581.0,20.1367106784614,40.82,67.85,0.5762
+GUANAMBI,Bahia,Northeast,Caatinga,AS,6,2014,174,9.0,403473.0,17.2119918510122,52.98,68.1,0.582
+BRUMADO,Bahia,Northeast,Caatinga,BSH,6,2014,174,7.0,244234.0,15.9206263089112,44.37,54.41,0.5675
+VITÓRIA DA CONQUISTA,Bahia,Northeast,Atlantic Rainforest,BSH,6,2014,174,31.0,666427.0,35.4200812330891,70.89,70.63,0.606
+ITAPETINGA,Bahia,Northeast,Atlantic Rainforest,AW,6,2014,174,0.0,207490.0,18.402392485938,79.07,84.82,0.5626
+VALENÇA,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,9.0,286795.0,49.8493520661152,53.35,60.25,0.5325
+ILHÉUS-ITABUNA,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,218.0,1057086.0,49.731542589021,78.77,78.87,0.5728
+PORTO SEGURO,Bahia,Northeast,Atlantic Rainforest,AF,6,2014,174,46.0,798777.0,28.8218005268733,78.88,72.56,0.6111
+UNAÍ,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,75.0,156877.0,5.7241322341751,74.56,75.15,0.388
+PARACATU,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,164.0,230798.0,6.59247561554705,81.23,81.68,0.4365
+JANUÁRIA,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,39.0,287864.0,8.66751636642748,56.24,67.32,0.3608
+JANAÚBA,Minas Gerais,Southeast,Cerrado,AS,6,2014,174,5.0,258038.0,17.1593283519335,63.25,82.02,0.4499
+SALINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2014,174,1.0,220704.0,12.3748316822476,57.1,68.85,0.4262
+PIRAPORA,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,4.0,173146.0,7.52113356751028,84.35,85.99,0.3579
+MONTES CLAROS,Minas Gerais,Southeast,Cerrado,AS,6,2014,174,19.0,640028.0,28.6494134239979,79.48,85.25,0.4405
+GRÃO MOGOL,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,1.0,44606.0,4.92263752303527,44.1,52.84,0.2765
+BOCAIÚVA,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,18.0,72452.0,9.15425315409963,73.48,77.34,0.454
+DIAMANTINA,Minas Gerais,Southeast,Cerrado,CWB,6,2014,174,0.0,85536.0,11.577462347131,76.36,82.59,0.4147
+CAPELINHA,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,4.0,206785.0,17.2110394578759,54.04,61.76,0.3056
+ARAÇUAÍ,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2014,174,6.0,162675.0,15.8401459876795,48.93,54.0,0.4802
+PEDRA AZUL,Minas Gerais,Southeast,Atlantic Rainforest,AS,6,2014,174,0.0,85033.0,16.8385359466099,72.01,72.17,0.454
+ALMENARA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,6.0,187400.0,12.1240017764275,71.36,73.75,0.3929
+TEÓFILO OTONI,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,38.0,276681.0,23.8145394281883,63.7,66.99,0.5171
+NANUQUE,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,10.0,122104.0,14.3953718575714,76.72,79.28,0.4365
+ITUIUTABA,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,49.0,150977.0,17.291866824192,91.52,90.01,0.2474
+UBERLÂNDIA,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,364.0,882384.0,46.9660739653761,94.9,95.13,0.2444
+PATROCÍNIO,Minas Gerais,Southeast,Cerrado,CWB,6,2014,174,131.0,208163.0,17.4042652614602,84.08,82.2,0.4524
+PATOS DE MINAS,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,294.0,267542.0,24.9477401671504,87.19,86.56,0.3841
+FRUTAL,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,296.0,192936.0,11.4259916289826,83.99,80.0,0.5093
+UBERABA,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,22.0,373951.0,40.0743180644698,96.15,94.65,0.7109
+ARAXÁ,Minas Gerais,Southeast,Cerrado,CWB,6,2014,174,82.0,220293.0,15.6575667574341,89.18,88.03,0.6373
+TRÊS MARIAS,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,18.0,102388.0,9.67496402611994,87.9,86.43,0.2245
+CURVELO,Minas Gerais,Southeast,Cerrado,AW,6,2014,174,46.0,157538.0,11.4944570174594,82.57,83.24,0.4444
+BOM DESPACHO,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,152.0,175416.0,23.4248734527768,91.34,91.04,0.3783
+SETE LAGOAS,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,19.0,420806.0,49.2572357918242,88.33,90.29,0.4583
+CONCEIÇÃO DO MATO DENTRO,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2014,174,0.0,86060.0,12.6226236448655,55.25,56.62,0.3694
+PARÁ DE MINAS,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2014,174,32.0,132284.0,74.7212173465252,90.74,88.52,0.3841
+BELO HORIZONTE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,510.0,5079662.0,871.550478191054,98.7,97.88,0.3237
+ITABIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2014,174,13.0,399170.0,49.5615381851486,85.06,85.12,0.5238
+ITAGUARA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,3.0,64345.0,26.6162667598861,56.98,59.67,0.3104
+OURO PRETO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,2.0,185065.0,58.7163633426657,88.28,88.55,0.3929
+CONSELHEIRO LAFAIETE,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,1.0,263295.0,88.8436006468983,88.61,88.75,0.5311
+GUANHÃES,Minas Gerais,Southeast,Atlantic Rainforest,CWA,6,2014,174,0.0,135878.0,23.5895736340909,60.94,62.68,0.5413
+PEÇANHA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,3.0,83120.0,18.1390757919081,47.89,47.21,0.3492
+GOVERNADOR VALADARES,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,75.0,434348.0,38.3795209882565,86.54,86.47,0.5378
+MANTENA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,0.0,65577.0,35.4516068105661,71.16,72.28,0.449
+IPATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,45.0,559505.0,128.584505929552,94.34,84.85,0.5104
+CARATINGA,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,3.0,265282.0,47.8963268422242,71.15,64.89,0.4016
+AIMORÉS,Minas Gerais,Southeast,Atlantic Rainforest,AW,6,2014,174,0.0,154384.0,18.5242456614015,67.2,67.38,0.3559
+PIUÍ,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,36.0,85531.0,11.1162882431298,81.29,82.45,0.4268
+DIVINÓPOLIS,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,288.0,526918.0,103.771889580882,92.48,92.86,0.4127
+FORMIGA,Minas Gerais,Southeast,Cerrado,CWB,6,2014,174,63.0,159114.0,34.8444280805203,86.35,87.55,0.251
+CAMPO BELO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,33.0,117153.0,43.4962529317812,86.11,88.01,0.5862
+OLIVEIRA,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,9.0,131912.0,32.8884803290873,80.58,83.72,0.291
+PASSOS,Minas Gerais,Southeast,Cerrado,CWA,6,2014,174,180.0,238443.0,33.6171857240697,86.97,86.88,0.4365
+SÃO SEBASTIÃO DO PARAÍSO,Minas Gerais,Southeast,Atlantic Rainforest,CWB,6,2014,174,18.0,277879.0,53.7243859064552,80.69,80.38,0.5176
+ALFENAS,Minas Gerais,Southeast,Atlantic Rainforest,